strongdm 2.1.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.git/ORIG_HEAD +1 -1
- data/.git/index +0 -0
- data/.git/logs/HEAD +3 -3
- data/.git/logs/refs/heads/master +2 -2
- data/.git/logs/refs/remotes/origin/HEAD +1 -1
- data/.git/objects/pack/{pack-a86846bb97666919e629e876c52e6b012d588625.idx → pack-886c8b7b48ee02690285f26795cb132efb2f15f6.idx} +0 -0
- data/.git/objects/pack/{pack-a86846bb97666919e629e876c52e6b012d588625.pack → pack-886c8b7b48ee02690285f26795cb132efb2f15f6.pack} +0 -0
- data/.git/packed-refs +5 -2
- data/.git/refs/heads/master +1 -1
- data/lib/grpc/account_attachments_services_pb.rb +5 -5
- data/lib/grpc/account_grants_services_pb.rb +5 -5
- data/lib/grpc/accounts_services_pb.rb +6 -6
- data/lib/grpc/control_panel_services_pb.rb +3 -3
- data/lib/grpc/drivers_pb.rb +88 -0
- data/lib/grpc/nodes_services_pb.rb +6 -6
- data/lib/grpc/plumbing.rb +442 -0
- data/lib/grpc/remote_identities_pb.rb +90 -0
- data/lib/grpc/remote_identities_services_pb.rb +45 -0
- data/lib/grpc/remote_identity_groups_pb.rb +55 -0
- data/lib/grpc/remote_identity_groups_services_pb.rb +58 -0
- data/lib/grpc/resources_services_pb.rb +7 -7
- data/lib/grpc/role_attachments_services_pb.rb +5 -5
- data/lib/grpc/role_grants_services_pb.rb +5 -5
- data/lib/grpc/roles_services_pb.rb +6 -6
- data/lib/grpc/secret_stores_services_pb.rb +6 -6
- data/lib/models/porcelain.rb +577 -2
- data/lib/strongdm.rb +26 -2
- data/lib/svc.rb +266 -0
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +8 -4
data/lib/grpc/plumbing.rb
CHANGED
@@ -27,6 +27,8 @@ require_relative "./accounts_pb"
|
|
27
27
|
require_relative "./control_panel_pb"
|
28
28
|
require_relative "./drivers_pb"
|
29
29
|
require_relative "./nodes_pb"
|
30
|
+
require_relative "./remote_identities_pb"
|
31
|
+
require_relative "./remote_identity_groups_pb"
|
30
32
|
require_relative "./resources_pb"
|
31
33
|
require_relative "./role_attachments_pb"
|
32
34
|
require_relative "./role_grants_pb"
|
@@ -115,6 +117,7 @@ module SDM
|
|
115
117
|
return nil
|
116
118
|
end
|
117
119
|
porcelain = AKS.new()
|
120
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
118
121
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
119
122
|
porcelain.client_certificate = (plumbing.client_certificate)
|
120
123
|
porcelain.client_key = (plumbing.client_key)
|
@@ -125,6 +128,8 @@ module SDM
|
|
125
128
|
porcelain.id = (plumbing.id)
|
126
129
|
porcelain.name = (plumbing.name)
|
127
130
|
porcelain.port = (plumbing.port)
|
131
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
132
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
128
133
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
129
134
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
130
135
|
porcelain
|
@@ -135,6 +140,7 @@ module SDM
|
|
135
140
|
return nil
|
136
141
|
end
|
137
142
|
plumbing = V1::AKS.new()
|
143
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
138
144
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
139
145
|
plumbing.client_certificate = (porcelain.client_certificate)
|
140
146
|
plumbing.client_key = (porcelain.client_key)
|
@@ -145,6 +151,8 @@ module SDM
|
|
145
151
|
plumbing.id = (porcelain.id)
|
146
152
|
plumbing.name = (porcelain.name)
|
147
153
|
plumbing.port = (porcelain.port)
|
154
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
155
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
148
156
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
149
157
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
150
158
|
plumbing
|
@@ -171,6 +179,7 @@ module SDM
|
|
171
179
|
return nil
|
172
180
|
end
|
173
181
|
porcelain = AKSBasicAuth.new()
|
182
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
174
183
|
porcelain.egress_filter = (plumbing.egress_filter)
|
175
184
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
176
185
|
porcelain.healthy = (plumbing.healthy)
|
@@ -190,6 +199,7 @@ module SDM
|
|
190
199
|
return nil
|
191
200
|
end
|
192
201
|
plumbing = V1::AKSBasicAuth.new()
|
202
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
193
203
|
plumbing.egress_filter = (porcelain.egress_filter)
|
194
204
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
195
205
|
plumbing.healthy = (porcelain.healthy)
|
@@ -225,6 +235,7 @@ module SDM
|
|
225
235
|
return nil
|
226
236
|
end
|
227
237
|
porcelain = AKSServiceAccount.new()
|
238
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
228
239
|
porcelain.egress_filter = (plumbing.egress_filter)
|
229
240
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
230
241
|
porcelain.healthy = (plumbing.healthy)
|
@@ -232,6 +243,8 @@ module SDM
|
|
232
243
|
porcelain.id = (plumbing.id)
|
233
244
|
porcelain.name = (plumbing.name)
|
234
245
|
porcelain.port = (plumbing.port)
|
246
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
247
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
235
248
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
236
249
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
237
250
|
porcelain.token = (plumbing.token)
|
@@ -243,6 +256,7 @@ module SDM
|
|
243
256
|
return nil
|
244
257
|
end
|
245
258
|
plumbing = V1::AKSServiceAccount.new()
|
259
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
246
260
|
plumbing.egress_filter = (porcelain.egress_filter)
|
247
261
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
248
262
|
plumbing.healthy = (porcelain.healthy)
|
@@ -250,6 +264,8 @@ module SDM
|
|
250
264
|
plumbing.id = (porcelain.id)
|
251
265
|
plumbing.name = (porcelain.name)
|
252
266
|
plumbing.port = (porcelain.port)
|
267
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
268
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
253
269
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
254
270
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
255
271
|
plumbing.token = (porcelain.token)
|
@@ -277,6 +293,7 @@ module SDM
|
|
277
293
|
return nil
|
278
294
|
end
|
279
295
|
porcelain = AKSServiceAccountUserImpersonation.new()
|
296
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
280
297
|
porcelain.egress_filter = (plumbing.egress_filter)
|
281
298
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
282
299
|
porcelain.healthy = (plumbing.healthy)
|
@@ -295,6 +312,7 @@ module SDM
|
|
295
312
|
return nil
|
296
313
|
end
|
297
314
|
plumbing = V1::AKSServiceAccountUserImpersonation.new()
|
315
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
298
316
|
plumbing.egress_filter = (porcelain.egress_filter)
|
299
317
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
300
318
|
plumbing.healthy = (porcelain.healthy)
|
@@ -329,6 +347,7 @@ module SDM
|
|
329
347
|
return nil
|
330
348
|
end
|
331
349
|
porcelain = AKSUserImpersonation.new()
|
350
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
332
351
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
333
352
|
porcelain.client_certificate = (plumbing.client_certificate)
|
334
353
|
porcelain.client_key = (plumbing.client_key)
|
@@ -349,6 +368,7 @@ module SDM
|
|
349
368
|
return nil
|
350
369
|
end
|
351
370
|
plumbing = V1::AKSUserImpersonation.new()
|
371
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
352
372
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
353
373
|
plumbing.client_certificate = (porcelain.client_certificate)
|
354
374
|
plumbing.client_key = (porcelain.client_key)
|
@@ -386,6 +406,7 @@ module SDM
|
|
386
406
|
end
|
387
407
|
porcelain = AWS.new()
|
388
408
|
porcelain.access_key = (plumbing.access_key)
|
409
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
389
410
|
porcelain.egress_filter = (plumbing.egress_filter)
|
390
411
|
porcelain.healthcheck_region = (plumbing.healthcheck_region)
|
391
412
|
porcelain.healthy = (plumbing.healthy)
|
@@ -405,6 +426,7 @@ module SDM
|
|
405
426
|
end
|
406
427
|
plumbing = V1::AWS.new()
|
407
428
|
plumbing.access_key = (porcelain.access_key)
|
429
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
408
430
|
plumbing.egress_filter = (porcelain.egress_filter)
|
409
431
|
plumbing.healthcheck_region = (porcelain.healthcheck_region)
|
410
432
|
plumbing.healthy = (porcelain.healthy)
|
@@ -978,6 +1000,7 @@ module SDM
|
|
978
1000
|
end
|
979
1001
|
porcelain = AmazonEKS.new()
|
980
1002
|
porcelain.access_key = (plumbing.access_key)
|
1003
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
981
1004
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
982
1005
|
porcelain.cluster_name = (plumbing.cluster_name)
|
983
1006
|
porcelain.egress_filter = (plumbing.egress_filter)
|
@@ -987,6 +1010,8 @@ module SDM
|
|
987
1010
|
porcelain.id = (plumbing.id)
|
988
1011
|
porcelain.name = (plumbing.name)
|
989
1012
|
porcelain.region = (plumbing.region)
|
1013
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
1014
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
990
1015
|
porcelain.role_arn = (plumbing.role_arn)
|
991
1016
|
porcelain.role_external_id = (plumbing.role_external_id)
|
992
1017
|
porcelain.secret_access_key = (plumbing.secret_access_key)
|
@@ -1001,6 +1026,7 @@ module SDM
|
|
1001
1026
|
end
|
1002
1027
|
plumbing = V1::AmazonEKS.new()
|
1003
1028
|
plumbing.access_key = (porcelain.access_key)
|
1029
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1004
1030
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
1005
1031
|
plumbing.cluster_name = (porcelain.cluster_name)
|
1006
1032
|
plumbing.egress_filter = (porcelain.egress_filter)
|
@@ -1010,6 +1036,8 @@ module SDM
|
|
1010
1036
|
plumbing.id = (porcelain.id)
|
1011
1037
|
plumbing.name = (porcelain.name)
|
1012
1038
|
plumbing.region = (porcelain.region)
|
1039
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
1040
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
1013
1041
|
plumbing.role_arn = (porcelain.role_arn)
|
1014
1042
|
plumbing.role_external_id = (porcelain.role_external_id)
|
1015
1043
|
plumbing.secret_access_key = (porcelain.secret_access_key)
|
@@ -1040,6 +1068,7 @@ module SDM
|
|
1040
1068
|
end
|
1041
1069
|
porcelain = AmazonEKSUserImpersonation.new()
|
1042
1070
|
porcelain.access_key = (plumbing.access_key)
|
1071
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1043
1072
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
1044
1073
|
porcelain.cluster_name = (plumbing.cluster_name)
|
1045
1074
|
porcelain.egress_filter = (plumbing.egress_filter)
|
@@ -1063,6 +1092,7 @@ module SDM
|
|
1063
1092
|
end
|
1064
1093
|
plumbing = V1::AmazonEKSUserImpersonation.new()
|
1065
1094
|
plumbing.access_key = (porcelain.access_key)
|
1095
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1066
1096
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
1067
1097
|
plumbing.cluster_name = (porcelain.cluster_name)
|
1068
1098
|
plumbing.egress_filter = (porcelain.egress_filter)
|
@@ -1102,6 +1132,7 @@ module SDM
|
|
1102
1132
|
end
|
1103
1133
|
porcelain = AmazonES.new()
|
1104
1134
|
porcelain.access_key = (plumbing.access_key)
|
1135
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1105
1136
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1106
1137
|
porcelain.endpoint = (plumbing.endpoint)
|
1107
1138
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1123,6 +1154,7 @@ module SDM
|
|
1123
1154
|
end
|
1124
1155
|
plumbing = V1::AmazonES.new()
|
1125
1156
|
plumbing.access_key = (porcelain.access_key)
|
1157
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1126
1158
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1127
1159
|
plumbing.endpoint = (porcelain.endpoint)
|
1128
1160
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1159,6 +1191,7 @@ module SDM
|
|
1159
1191
|
return nil
|
1160
1192
|
end
|
1161
1193
|
porcelain = AmazonMQAMQP091.new()
|
1194
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1162
1195
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1163
1196
|
porcelain.healthy = (plumbing.healthy)
|
1164
1197
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1179,6 +1212,7 @@ module SDM
|
|
1179
1212
|
return nil
|
1180
1213
|
end
|
1181
1214
|
plumbing = V1::AmazonMQAMQP091.new()
|
1215
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1182
1216
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1183
1217
|
plumbing.healthy = (porcelain.healthy)
|
1184
1218
|
plumbing.hostname = (porcelain.hostname)
|
@@ -1216,6 +1250,7 @@ module SDM
|
|
1216
1250
|
end
|
1217
1251
|
porcelain = Athena.new()
|
1218
1252
|
porcelain.access_key = (plumbing.access_key)
|
1253
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1219
1254
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1220
1255
|
porcelain.healthy = (plumbing.healthy)
|
1221
1256
|
porcelain.id = (plumbing.id)
|
@@ -1237,6 +1272,7 @@ module SDM
|
|
1237
1272
|
end
|
1238
1273
|
plumbing = V1::Athena.new()
|
1239
1274
|
plumbing.access_key = (porcelain.access_key)
|
1275
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1240
1276
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1241
1277
|
plumbing.healthy = (porcelain.healthy)
|
1242
1278
|
plumbing.id = (porcelain.id)
|
@@ -1273,6 +1309,7 @@ module SDM
|
|
1273
1309
|
return nil
|
1274
1310
|
end
|
1275
1311
|
porcelain = AuroraMysql.new()
|
1312
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1276
1313
|
porcelain.database = (plumbing.database)
|
1277
1314
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1278
1315
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1293,6 +1330,7 @@ module SDM
|
|
1293
1330
|
return nil
|
1294
1331
|
end
|
1295
1332
|
plumbing = V1::AuroraMysql.new()
|
1333
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1296
1334
|
plumbing.database = (porcelain.database)
|
1297
1335
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1298
1336
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1329,6 +1367,7 @@ module SDM
|
|
1329
1367
|
return nil
|
1330
1368
|
end
|
1331
1369
|
porcelain = AuroraPostgres.new()
|
1370
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1332
1371
|
porcelain.database = (plumbing.database)
|
1333
1372
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1334
1373
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1350,6 +1389,7 @@ module SDM
|
|
1350
1389
|
return nil
|
1351
1390
|
end
|
1352
1391
|
plumbing = V1::AuroraPostgres.new()
|
1392
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1353
1393
|
plumbing.database = (porcelain.database)
|
1354
1394
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1355
1395
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1388,6 +1428,7 @@ module SDM
|
|
1388
1428
|
end
|
1389
1429
|
porcelain = Azure.new()
|
1390
1430
|
porcelain.app_id = (plumbing.app_id)
|
1431
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1391
1432
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1392
1433
|
porcelain.healthy = (plumbing.healthy)
|
1393
1434
|
porcelain.id = (plumbing.id)
|
@@ -1405,6 +1446,7 @@ module SDM
|
|
1405
1446
|
end
|
1406
1447
|
plumbing = V1::Azure.new()
|
1407
1448
|
plumbing.app_id = (porcelain.app_id)
|
1449
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1408
1450
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1409
1451
|
plumbing.healthy = (porcelain.healthy)
|
1410
1452
|
plumbing.id = (porcelain.id)
|
@@ -1438,6 +1480,7 @@ module SDM
|
|
1438
1480
|
end
|
1439
1481
|
porcelain = AzureCertificate.new()
|
1440
1482
|
porcelain.app_id = (plumbing.app_id)
|
1483
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1441
1484
|
porcelain.client_certificate = (plumbing.client_certificate)
|
1442
1485
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1443
1486
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1455,6 +1498,7 @@ module SDM
|
|
1455
1498
|
end
|
1456
1499
|
plumbing = V1::AzureCertificate.new()
|
1457
1500
|
plumbing.app_id = (porcelain.app_id)
|
1501
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1458
1502
|
plumbing.client_certificate = (porcelain.client_certificate)
|
1459
1503
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1460
1504
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1487,6 +1531,7 @@ module SDM
|
|
1487
1531
|
return nil
|
1488
1532
|
end
|
1489
1533
|
porcelain = AzurePostgres.new()
|
1534
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1490
1535
|
porcelain.database = (plumbing.database)
|
1491
1536
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1492
1537
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1508,6 +1553,7 @@ module SDM
|
|
1508
1553
|
return nil
|
1509
1554
|
end
|
1510
1555
|
plumbing = V1::AzurePostgres.new()
|
1556
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1511
1557
|
plumbing.database = (porcelain.database)
|
1512
1558
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1513
1559
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1585,6 +1631,7 @@ module SDM
|
|
1585
1631
|
return nil
|
1586
1632
|
end
|
1587
1633
|
porcelain = BigQuery.new()
|
1634
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1588
1635
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1589
1636
|
porcelain.endpoint = (plumbing.endpoint)
|
1590
1637
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1604,6 +1651,7 @@ module SDM
|
|
1604
1651
|
return nil
|
1605
1652
|
end
|
1606
1653
|
plumbing = V1::BigQuery.new()
|
1654
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1607
1655
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1608
1656
|
plumbing.endpoint = (porcelain.endpoint)
|
1609
1657
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1639,6 +1687,7 @@ module SDM
|
|
1639
1687
|
return nil
|
1640
1688
|
end
|
1641
1689
|
porcelain = Cassandra.new()
|
1690
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1642
1691
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1643
1692
|
porcelain.healthy = (plumbing.healthy)
|
1644
1693
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1659,6 +1708,7 @@ module SDM
|
|
1659
1708
|
return nil
|
1660
1709
|
end
|
1661
1710
|
plumbing = V1::Cassandra.new()
|
1711
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1662
1712
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1663
1713
|
plumbing.healthy = (porcelain.healthy)
|
1664
1714
|
plumbing.hostname = (porcelain.hostname)
|
@@ -1695,6 +1745,7 @@ module SDM
|
|
1695
1745
|
return nil
|
1696
1746
|
end
|
1697
1747
|
porcelain = Citus.new()
|
1748
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1698
1749
|
porcelain.database = (plumbing.database)
|
1699
1750
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1700
1751
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1716,6 +1767,7 @@ module SDM
|
|
1716
1767
|
return nil
|
1717
1768
|
end
|
1718
1769
|
plumbing = V1::Citus.new()
|
1770
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1719
1771
|
plumbing.database = (porcelain.database)
|
1720
1772
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1721
1773
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1753,6 +1805,7 @@ module SDM
|
|
1753
1805
|
return nil
|
1754
1806
|
end
|
1755
1807
|
porcelain = Clustrix.new()
|
1808
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1756
1809
|
porcelain.database = (plumbing.database)
|
1757
1810
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1758
1811
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1773,6 +1826,7 @@ module SDM
|
|
1773
1826
|
return nil
|
1774
1827
|
end
|
1775
1828
|
plumbing = V1::Clustrix.new()
|
1829
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1776
1830
|
plumbing.database = (porcelain.database)
|
1777
1831
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1778
1832
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1809,6 +1863,7 @@ module SDM
|
|
1809
1863
|
return nil
|
1810
1864
|
end
|
1811
1865
|
porcelain = Cockroach.new()
|
1866
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1812
1867
|
porcelain.database = (plumbing.database)
|
1813
1868
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1814
1869
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1830,6 +1885,7 @@ module SDM
|
|
1830
1885
|
return nil
|
1831
1886
|
end
|
1832
1887
|
plumbing = V1::Cockroach.new()
|
1888
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1833
1889
|
plumbing.database = (porcelain.database)
|
1834
1890
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1835
1891
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1975,6 +2031,7 @@ module SDM
|
|
1975
2031
|
return nil
|
1976
2032
|
end
|
1977
2033
|
porcelain = DB2I.new()
|
2034
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1978
2035
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1979
2036
|
porcelain.healthy = (plumbing.healthy)
|
1980
2037
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1995,6 +2052,7 @@ module SDM
|
|
1995
2052
|
return nil
|
1996
2053
|
end
|
1997
2054
|
plumbing = V1::DB2I.new()
|
2055
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1998
2056
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1999
2057
|
plumbing.healthy = (porcelain.healthy)
|
2000
2058
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2031,6 +2089,7 @@ module SDM
|
|
2031
2089
|
return nil
|
2032
2090
|
end
|
2033
2091
|
porcelain = DB2LUW.new()
|
2092
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2034
2093
|
porcelain.database = (plumbing.database)
|
2035
2094
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2036
2095
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2051,6 +2110,7 @@ module SDM
|
|
2051
2110
|
return nil
|
2052
2111
|
end
|
2053
2112
|
plumbing = V1::DB2LUW.new()
|
2113
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2054
2114
|
plumbing.database = (porcelain.database)
|
2055
2115
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2056
2116
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2120,6 +2180,7 @@ module SDM
|
|
2120
2180
|
end
|
2121
2181
|
porcelain = DocumentDBHost.new()
|
2122
2182
|
porcelain.auth_database = (plumbing.auth_database)
|
2183
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2123
2184
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2124
2185
|
porcelain.healthy = (plumbing.healthy)
|
2125
2186
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2140,6 +2201,7 @@ module SDM
|
|
2140
2201
|
end
|
2141
2202
|
plumbing = V1::DocumentDBHost.new()
|
2142
2203
|
plumbing.auth_database = (porcelain.auth_database)
|
2204
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2143
2205
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2144
2206
|
plumbing.healthy = (porcelain.healthy)
|
2145
2207
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2176,6 +2238,7 @@ module SDM
|
|
2176
2238
|
end
|
2177
2239
|
porcelain = DocumentDBReplicaSet.new()
|
2178
2240
|
porcelain.auth_database = (plumbing.auth_database)
|
2241
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2179
2242
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
2180
2243
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2181
2244
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2197,6 +2260,7 @@ module SDM
|
|
2197
2260
|
end
|
2198
2261
|
plumbing = V1::DocumentDBReplicaSet.new()
|
2199
2262
|
plumbing.auth_database = (porcelain.auth_database)
|
2263
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2200
2264
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
2201
2265
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2202
2266
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2233,6 +2297,7 @@ module SDM
|
|
2233
2297
|
return nil
|
2234
2298
|
end
|
2235
2299
|
porcelain = Druid.new()
|
2300
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2236
2301
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2237
2302
|
porcelain.healthy = (plumbing.healthy)
|
2238
2303
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2252,6 +2317,7 @@ module SDM
|
|
2252
2317
|
return nil
|
2253
2318
|
end
|
2254
2319
|
plumbing = V1::Druid.new()
|
2320
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2255
2321
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2256
2322
|
plumbing.healthy = (porcelain.healthy)
|
2257
2323
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2288,6 +2354,7 @@ module SDM
|
|
2288
2354
|
end
|
2289
2355
|
porcelain = DynamoDB.new()
|
2290
2356
|
porcelain.access_key = (plumbing.access_key)
|
2357
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2291
2358
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2292
2359
|
porcelain.endpoint = (plumbing.endpoint)
|
2293
2360
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2309,6 +2376,7 @@ module SDM
|
|
2309
2376
|
end
|
2310
2377
|
plumbing = V1::DynamoDB.new()
|
2311
2378
|
plumbing.access_key = (porcelain.access_key)
|
2379
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2312
2380
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2313
2381
|
plumbing.endpoint = (porcelain.endpoint)
|
2314
2382
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2345,6 +2413,7 @@ module SDM
|
|
2345
2413
|
return nil
|
2346
2414
|
end
|
2347
2415
|
porcelain = Elastic.new()
|
2416
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2348
2417
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2349
2418
|
porcelain.healthy = (plumbing.healthy)
|
2350
2419
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2365,6 +2434,7 @@ module SDM
|
|
2365
2434
|
return nil
|
2366
2435
|
end
|
2367
2436
|
plumbing = V1::Elastic.new()
|
2437
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2368
2438
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2369
2439
|
plumbing.healthy = (porcelain.healthy)
|
2370
2440
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2401,6 +2471,7 @@ module SDM
|
|
2401
2471
|
return nil
|
2402
2472
|
end
|
2403
2473
|
porcelain = ElasticacheRedis.new()
|
2474
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2404
2475
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2405
2476
|
porcelain.healthy = (plumbing.healthy)
|
2406
2477
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2420,6 +2491,7 @@ module SDM
|
|
2420
2491
|
return nil
|
2421
2492
|
end
|
2422
2493
|
plumbing = V1::ElasticacheRedis.new()
|
2494
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2423
2495
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2424
2496
|
plumbing.healthy = (porcelain.healthy)
|
2425
2497
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2455,6 +2527,7 @@ module SDM
|
|
2455
2527
|
return nil
|
2456
2528
|
end
|
2457
2529
|
porcelain = GCP.new()
|
2530
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2458
2531
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2459
2532
|
porcelain.healthy = (plumbing.healthy)
|
2460
2533
|
porcelain.id = (plumbing.id)
|
@@ -2471,6 +2544,7 @@ module SDM
|
|
2471
2544
|
return nil
|
2472
2545
|
end
|
2473
2546
|
plumbing = V1::GCP.new()
|
2547
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2474
2548
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2475
2549
|
plumbing.healthy = (porcelain.healthy)
|
2476
2550
|
plumbing.id = (porcelain.id)
|
@@ -2621,6 +2695,7 @@ module SDM
|
|
2621
2695
|
return nil
|
2622
2696
|
end
|
2623
2697
|
porcelain = GoogleGKE.new()
|
2698
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2624
2699
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2625
2700
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2626
2701
|
porcelain.endpoint = (plumbing.endpoint)
|
@@ -2628,6 +2703,8 @@ module SDM
|
|
2628
2703
|
porcelain.healthy = (plumbing.healthy)
|
2629
2704
|
porcelain.id = (plumbing.id)
|
2630
2705
|
porcelain.name = (plumbing.name)
|
2706
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
2707
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
2631
2708
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
2632
2709
|
porcelain.service_account_key = (plumbing.service_account_key)
|
2633
2710
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
@@ -2639,6 +2716,7 @@ module SDM
|
|
2639
2716
|
return nil
|
2640
2717
|
end
|
2641
2718
|
plumbing = V1::GoogleGKE.new()
|
2719
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2642
2720
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2643
2721
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2644
2722
|
plumbing.endpoint = (porcelain.endpoint)
|
@@ -2646,6 +2724,8 @@ module SDM
|
|
2646
2724
|
plumbing.healthy = (porcelain.healthy)
|
2647
2725
|
plumbing.id = (porcelain.id)
|
2648
2726
|
plumbing.name = (porcelain.name)
|
2727
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
2728
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
2649
2729
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
2650
2730
|
plumbing.service_account_key = (porcelain.service_account_key)
|
2651
2731
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
@@ -2673,6 +2753,7 @@ module SDM
|
|
2673
2753
|
return nil
|
2674
2754
|
end
|
2675
2755
|
porcelain = GoogleGKEUserImpersonation.new()
|
2756
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2676
2757
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2677
2758
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2678
2759
|
porcelain.endpoint = (plumbing.endpoint)
|
@@ -2691,6 +2772,7 @@ module SDM
|
|
2691
2772
|
return nil
|
2692
2773
|
end
|
2693
2774
|
plumbing = V1::GoogleGKEUserImpersonation.new()
|
2775
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2694
2776
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2695
2777
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2696
2778
|
plumbing.endpoint = (porcelain.endpoint)
|
@@ -2725,6 +2807,7 @@ module SDM
|
|
2725
2807
|
return nil
|
2726
2808
|
end
|
2727
2809
|
porcelain = Greenplum.new()
|
2810
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2728
2811
|
porcelain.database = (plumbing.database)
|
2729
2812
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2730
2813
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2746,6 +2829,7 @@ module SDM
|
|
2746
2829
|
return nil
|
2747
2830
|
end
|
2748
2831
|
plumbing = V1::Greenplum.new()
|
2832
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2749
2833
|
plumbing.database = (porcelain.database)
|
2750
2834
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2751
2835
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2784,6 +2868,7 @@ module SDM
|
|
2784
2868
|
end
|
2785
2869
|
porcelain = HTTPAuth.new()
|
2786
2870
|
porcelain.auth_header = (plumbing.auth_header)
|
2871
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2787
2872
|
porcelain.default_path = (plumbing.default_path)
|
2788
2873
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2789
2874
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2804,6 +2889,7 @@ module SDM
|
|
2804
2889
|
end
|
2805
2890
|
plumbing = V1::HTTPAuth.new()
|
2806
2891
|
plumbing.auth_header = (porcelain.auth_header)
|
2892
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2807
2893
|
plumbing.default_path = (porcelain.default_path)
|
2808
2894
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2809
2895
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2839,6 +2925,7 @@ module SDM
|
|
2839
2925
|
return nil
|
2840
2926
|
end
|
2841
2927
|
porcelain = HTTPBasicAuth.new()
|
2928
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2842
2929
|
porcelain.default_path = (plumbing.default_path)
|
2843
2930
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2844
2931
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2860,6 +2947,7 @@ module SDM
|
|
2860
2947
|
return nil
|
2861
2948
|
end
|
2862
2949
|
plumbing = V1::HTTPBasicAuth.new()
|
2950
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2863
2951
|
plumbing.default_path = (porcelain.default_path)
|
2864
2952
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2865
2953
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2897,6 +2985,7 @@ module SDM
|
|
2897
2985
|
return nil
|
2898
2986
|
end
|
2899
2987
|
porcelain = HTTPNoAuth.new()
|
2988
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2900
2989
|
porcelain.default_path = (plumbing.default_path)
|
2901
2990
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2902
2991
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2916,6 +3005,7 @@ module SDM
|
|
2916
3005
|
return nil
|
2917
3006
|
end
|
2918
3007
|
plumbing = V1::HTTPNoAuth.new()
|
3008
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2919
3009
|
plumbing.default_path = (porcelain.default_path)
|
2920
3010
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2921
3011
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2951,6 +3041,7 @@ module SDM
|
|
2951
3041
|
return nil
|
2952
3042
|
end
|
2953
3043
|
porcelain = Kubernetes.new()
|
3044
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2954
3045
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2955
3046
|
porcelain.client_certificate = (plumbing.client_certificate)
|
2956
3047
|
porcelain.client_key = (plumbing.client_key)
|
@@ -2961,6 +3052,8 @@ module SDM
|
|
2961
3052
|
porcelain.id = (plumbing.id)
|
2962
3053
|
porcelain.name = (plumbing.name)
|
2963
3054
|
porcelain.port = (plumbing.port)
|
3055
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
3056
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
2964
3057
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
2965
3058
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
2966
3059
|
porcelain
|
@@ -2971,6 +3064,7 @@ module SDM
|
|
2971
3064
|
return nil
|
2972
3065
|
end
|
2973
3066
|
plumbing = V1::Kubernetes.new()
|
3067
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2974
3068
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2975
3069
|
plumbing.client_certificate = (porcelain.client_certificate)
|
2976
3070
|
plumbing.client_key = (porcelain.client_key)
|
@@ -2981,6 +3075,8 @@ module SDM
|
|
2981
3075
|
plumbing.id = (porcelain.id)
|
2982
3076
|
plumbing.name = (porcelain.name)
|
2983
3077
|
plumbing.port = (porcelain.port)
|
3078
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
3079
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
2984
3080
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
2985
3081
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
2986
3082
|
plumbing
|
@@ -3007,6 +3103,7 @@ module SDM
|
|
3007
3103
|
return nil
|
3008
3104
|
end
|
3009
3105
|
porcelain = KubernetesBasicAuth.new()
|
3106
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3010
3107
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3011
3108
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3012
3109
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3026,6 +3123,7 @@ module SDM
|
|
3026
3123
|
return nil
|
3027
3124
|
end
|
3028
3125
|
plumbing = V1::KubernetesBasicAuth.new()
|
3126
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3029
3127
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3030
3128
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3031
3129
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3061,6 +3159,7 @@ module SDM
|
|
3061
3159
|
return nil
|
3062
3160
|
end
|
3063
3161
|
porcelain = KubernetesServiceAccount.new()
|
3162
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3064
3163
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3065
3164
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3066
3165
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3068,6 +3167,8 @@ module SDM
|
|
3068
3167
|
porcelain.id = (plumbing.id)
|
3069
3168
|
porcelain.name = (plumbing.name)
|
3070
3169
|
porcelain.port = (plumbing.port)
|
3170
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
3171
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
3071
3172
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
3072
3173
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
3073
3174
|
porcelain.token = (plumbing.token)
|
@@ -3079,6 +3180,7 @@ module SDM
|
|
3079
3180
|
return nil
|
3080
3181
|
end
|
3081
3182
|
plumbing = V1::KubernetesServiceAccount.new()
|
3183
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3082
3184
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3083
3185
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3084
3186
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3086,6 +3188,8 @@ module SDM
|
|
3086
3188
|
plumbing.id = (porcelain.id)
|
3087
3189
|
plumbing.name = (porcelain.name)
|
3088
3190
|
plumbing.port = (porcelain.port)
|
3191
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
3192
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
3089
3193
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
3090
3194
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
3091
3195
|
plumbing.token = (porcelain.token)
|
@@ -3113,6 +3217,7 @@ module SDM
|
|
3113
3217
|
return nil
|
3114
3218
|
end
|
3115
3219
|
porcelain = KubernetesServiceAccountUserImpersonation.new()
|
3220
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3116
3221
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3117
3222
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3118
3223
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3131,6 +3236,7 @@ module SDM
|
|
3131
3236
|
return nil
|
3132
3237
|
end
|
3133
3238
|
plumbing = V1::KubernetesServiceAccountUserImpersonation.new()
|
3239
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3134
3240
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3135
3241
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3136
3242
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3165,6 +3271,7 @@ module SDM
|
|
3165
3271
|
return nil
|
3166
3272
|
end
|
3167
3273
|
porcelain = KubernetesUserImpersonation.new()
|
3274
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3168
3275
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3169
3276
|
porcelain.client_certificate = (plumbing.client_certificate)
|
3170
3277
|
porcelain.client_key = (plumbing.client_key)
|
@@ -3185,6 +3292,7 @@ module SDM
|
|
3185
3292
|
return nil
|
3186
3293
|
end
|
3187
3294
|
plumbing = V1::KubernetesUserImpersonation.new()
|
3295
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3188
3296
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3189
3297
|
plumbing.client_certificate = (porcelain.client_certificate)
|
3190
3298
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3221,6 +3329,7 @@ module SDM
|
|
3221
3329
|
return nil
|
3222
3330
|
end
|
3223
3331
|
porcelain = MTLSMysql.new()
|
3332
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3224
3333
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3225
3334
|
porcelain.client_certificate = (plumbing.client_certificate)
|
3226
3335
|
porcelain.client_key = (plumbing.client_key)
|
@@ -3245,6 +3354,7 @@ module SDM
|
|
3245
3354
|
return nil
|
3246
3355
|
end
|
3247
3356
|
plumbing = V1::MTLSMysql.new()
|
3357
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3248
3358
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3249
3359
|
plumbing.client_certificate = (porcelain.client_certificate)
|
3250
3360
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3285,6 +3395,7 @@ module SDM
|
|
3285
3395
|
return nil
|
3286
3396
|
end
|
3287
3397
|
porcelain = MTLSPostgres.new()
|
3398
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3288
3399
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3289
3400
|
porcelain.client_certificate = (plumbing.client_certificate)
|
3290
3401
|
porcelain.client_key = (plumbing.client_key)
|
@@ -3310,6 +3421,7 @@ module SDM
|
|
3310
3421
|
return nil
|
3311
3422
|
end
|
3312
3423
|
plumbing = V1::MTLSPostgres.new()
|
3424
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3313
3425
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3314
3426
|
plumbing.client_certificate = (porcelain.client_certificate)
|
3315
3427
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3351,6 +3463,7 @@ module SDM
|
|
3351
3463
|
return nil
|
3352
3464
|
end
|
3353
3465
|
porcelain = Maria.new()
|
3466
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3354
3467
|
porcelain.database = (plumbing.database)
|
3355
3468
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3356
3469
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3371,6 +3484,7 @@ module SDM
|
|
3371
3484
|
return nil
|
3372
3485
|
end
|
3373
3486
|
plumbing = V1::Maria.new()
|
3487
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3374
3488
|
plumbing.database = (porcelain.database)
|
3375
3489
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3376
3490
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3407,6 +3521,7 @@ module SDM
|
|
3407
3521
|
return nil
|
3408
3522
|
end
|
3409
3523
|
porcelain = Memcached.new()
|
3524
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3410
3525
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3411
3526
|
porcelain.healthy = (plumbing.healthy)
|
3412
3527
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3424,6 +3539,7 @@ module SDM
|
|
3424
3539
|
return nil
|
3425
3540
|
end
|
3426
3541
|
plumbing = V1::Memcached.new()
|
3542
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3427
3543
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3428
3544
|
plumbing.healthy = (porcelain.healthy)
|
3429
3545
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3457,6 +3573,7 @@ module SDM
|
|
3457
3573
|
return nil
|
3458
3574
|
end
|
3459
3575
|
porcelain = Memsql.new()
|
3576
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3460
3577
|
porcelain.database = (plumbing.database)
|
3461
3578
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3462
3579
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3477,6 +3594,7 @@ module SDM
|
|
3477
3594
|
return nil
|
3478
3595
|
end
|
3479
3596
|
plumbing = V1::Memsql.new()
|
3597
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3480
3598
|
plumbing.database = (porcelain.database)
|
3481
3599
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3482
3600
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3514,6 +3632,7 @@ module SDM
|
|
3514
3632
|
end
|
3515
3633
|
porcelain = MongoHost.new()
|
3516
3634
|
porcelain.auth_database = (plumbing.auth_database)
|
3635
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3517
3636
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3518
3637
|
porcelain.healthy = (plumbing.healthy)
|
3519
3638
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3535,6 +3654,7 @@ module SDM
|
|
3535
3654
|
end
|
3536
3655
|
plumbing = V1::MongoHost.new()
|
3537
3656
|
plumbing.auth_database = (porcelain.auth_database)
|
3657
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3538
3658
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3539
3659
|
plumbing.healthy = (porcelain.healthy)
|
3540
3660
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3572,6 +3692,7 @@ module SDM
|
|
3572
3692
|
end
|
3573
3693
|
porcelain = MongoLegacyHost.new()
|
3574
3694
|
porcelain.auth_database = (plumbing.auth_database)
|
3695
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3575
3696
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3576
3697
|
porcelain.healthy = (plumbing.healthy)
|
3577
3698
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3594,6 +3715,7 @@ module SDM
|
|
3594
3715
|
end
|
3595
3716
|
plumbing = V1::MongoLegacyHost.new()
|
3596
3717
|
plumbing.auth_database = (porcelain.auth_database)
|
3718
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3597
3719
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3598
3720
|
plumbing.healthy = (porcelain.healthy)
|
3599
3721
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3632,6 +3754,7 @@ module SDM
|
|
3632
3754
|
end
|
3633
3755
|
porcelain = MongoLegacyReplicaset.new()
|
3634
3756
|
porcelain.auth_database = (plumbing.auth_database)
|
3757
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3635
3758
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
3636
3759
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3637
3760
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3655,6 +3778,7 @@ module SDM
|
|
3655
3778
|
end
|
3656
3779
|
plumbing = V1::MongoLegacyReplicaset.new()
|
3657
3780
|
plumbing.auth_database = (porcelain.auth_database)
|
3781
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3658
3782
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
3659
3783
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3660
3784
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3694,6 +3818,7 @@ module SDM
|
|
3694
3818
|
end
|
3695
3819
|
porcelain = MongoReplicaSet.new()
|
3696
3820
|
porcelain.auth_database = (plumbing.auth_database)
|
3821
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3697
3822
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
3698
3823
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3699
3824
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3717,6 +3842,7 @@ module SDM
|
|
3717
3842
|
end
|
3718
3843
|
plumbing = V1::MongoReplicaSet.new()
|
3719
3844
|
plumbing.auth_database = (porcelain.auth_database)
|
3845
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3720
3846
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
3721
3847
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3722
3848
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3756,6 +3882,7 @@ module SDM
|
|
3756
3882
|
end
|
3757
3883
|
porcelain = MongoShardedCluster.new()
|
3758
3884
|
porcelain.auth_database = (plumbing.auth_database)
|
3885
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3759
3886
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3760
3887
|
porcelain.healthy = (plumbing.healthy)
|
3761
3888
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3776,6 +3903,7 @@ module SDM
|
|
3776
3903
|
end
|
3777
3904
|
plumbing = V1::MongoShardedCluster.new()
|
3778
3905
|
plumbing.auth_database = (porcelain.auth_database)
|
3906
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3779
3907
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3780
3908
|
plumbing.healthy = (porcelain.healthy)
|
3781
3909
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3811,6 +3939,7 @@ module SDM
|
|
3811
3939
|
return nil
|
3812
3940
|
end
|
3813
3941
|
porcelain = Mysql.new()
|
3942
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3814
3943
|
porcelain.database = (plumbing.database)
|
3815
3944
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3816
3945
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3831,6 +3960,7 @@ module SDM
|
|
3831
3960
|
return nil
|
3832
3961
|
end
|
3833
3962
|
plumbing = V1::Mysql.new()
|
3963
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3834
3964
|
plumbing.database = (porcelain.database)
|
3835
3965
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3836
3966
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3867,6 +3997,7 @@ module SDM
|
|
3867
3997
|
return nil
|
3868
3998
|
end
|
3869
3999
|
porcelain = Neptune.new()
|
4000
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3870
4001
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3871
4002
|
porcelain.endpoint = (plumbing.endpoint)
|
3872
4003
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3884,6 +4015,7 @@ module SDM
|
|
3884
4015
|
return nil
|
3885
4016
|
end
|
3886
4017
|
plumbing = V1::Neptune.new()
|
4018
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3887
4019
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3888
4020
|
plumbing.endpoint = (porcelain.endpoint)
|
3889
4021
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3918,6 +4050,7 @@ module SDM
|
|
3918
4050
|
end
|
3919
4051
|
porcelain = NeptuneIAM.new()
|
3920
4052
|
porcelain.access_key = (plumbing.access_key)
|
4053
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3921
4054
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3922
4055
|
porcelain.endpoint = (plumbing.endpoint)
|
3923
4056
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3940,6 +4073,7 @@ module SDM
|
|
3940
4073
|
end
|
3941
4074
|
plumbing = V1::NeptuneIAM.new()
|
3942
4075
|
plumbing.access_key = (porcelain.access_key)
|
4076
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3943
4077
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3944
4078
|
plumbing.endpoint = (porcelain.endpoint)
|
3945
4079
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4171,6 +4305,7 @@ module SDM
|
|
4171
4305
|
return nil
|
4172
4306
|
end
|
4173
4307
|
porcelain = Oracle.new()
|
4308
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4174
4309
|
porcelain.database = (plumbing.database)
|
4175
4310
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4176
4311
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4192,6 +4327,7 @@ module SDM
|
|
4192
4327
|
return nil
|
4193
4328
|
end
|
4194
4329
|
plumbing = V1::Oracle.new()
|
4330
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4195
4331
|
plumbing.database = (porcelain.database)
|
4196
4332
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4197
4333
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4229,6 +4365,7 @@ module SDM
|
|
4229
4365
|
return nil
|
4230
4366
|
end
|
4231
4367
|
porcelain = Postgres.new()
|
4368
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4232
4369
|
porcelain.database = (plumbing.database)
|
4233
4370
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4234
4371
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4250,6 +4387,7 @@ module SDM
|
|
4250
4387
|
return nil
|
4251
4388
|
end
|
4252
4389
|
plumbing = V1::Postgres.new()
|
4390
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4253
4391
|
plumbing.database = (porcelain.database)
|
4254
4392
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4255
4393
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4287,6 +4425,7 @@ module SDM
|
|
4287
4425
|
return nil
|
4288
4426
|
end
|
4289
4427
|
porcelain = Presto.new()
|
4428
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4290
4429
|
porcelain.database = (plumbing.database)
|
4291
4430
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4292
4431
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4308,6 +4447,7 @@ module SDM
|
|
4308
4447
|
return nil
|
4309
4448
|
end
|
4310
4449
|
plumbing = V1::Presto.new()
|
4450
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4311
4451
|
plumbing.database = (porcelain.database)
|
4312
4452
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4313
4453
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4345,6 +4485,7 @@ module SDM
|
|
4345
4485
|
return nil
|
4346
4486
|
end
|
4347
4487
|
porcelain = RDP.new()
|
4488
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4348
4489
|
porcelain.downgrade_nla_connections = (plumbing.downgrade_nla_connections)
|
4349
4490
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4350
4491
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4365,6 +4506,7 @@ module SDM
|
|
4365
4506
|
return nil
|
4366
4507
|
end
|
4367
4508
|
plumbing = V1::RDP.new()
|
4509
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4368
4510
|
plumbing.downgrade_nla_connections = (porcelain.downgrade_nla_connections)
|
4369
4511
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4370
4512
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4401,6 +4543,7 @@ module SDM
|
|
4401
4543
|
return nil
|
4402
4544
|
end
|
4403
4545
|
porcelain = RabbitMQAMQP091.new()
|
4546
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4404
4547
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4405
4548
|
porcelain.healthy = (plumbing.healthy)
|
4406
4549
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4421,6 +4564,7 @@ module SDM
|
|
4421
4564
|
return nil
|
4422
4565
|
end
|
4423
4566
|
plumbing = V1::RabbitMQAMQP091.new()
|
4567
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4424
4568
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4425
4569
|
plumbing.healthy = (porcelain.healthy)
|
4426
4570
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4497,6 +4641,7 @@ module SDM
|
|
4497
4641
|
return nil
|
4498
4642
|
end
|
4499
4643
|
porcelain = RawTCP.new()
|
4644
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4500
4645
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4501
4646
|
porcelain.healthy = (plumbing.healthy)
|
4502
4647
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4514,6 +4659,7 @@ module SDM
|
|
4514
4659
|
return nil
|
4515
4660
|
end
|
4516
4661
|
plumbing = V1::RawTCP.new()
|
4662
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4517
4663
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4518
4664
|
plumbing.healthy = (porcelain.healthy)
|
4519
4665
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4547,6 +4693,7 @@ module SDM
|
|
4547
4693
|
return nil
|
4548
4694
|
end
|
4549
4695
|
porcelain = Redis.new()
|
4696
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4550
4697
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4551
4698
|
porcelain.healthy = (plumbing.healthy)
|
4552
4699
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4565,6 +4712,7 @@ module SDM
|
|
4565
4712
|
return nil
|
4566
4713
|
end
|
4567
4714
|
plumbing = V1::Redis.new()
|
4715
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4568
4716
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4569
4717
|
plumbing.healthy = (porcelain.healthy)
|
4570
4718
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4599,6 +4747,7 @@ module SDM
|
|
4599
4747
|
return nil
|
4600
4748
|
end
|
4601
4749
|
porcelain = Redshift.new()
|
4750
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4602
4751
|
porcelain.database = (plumbing.database)
|
4603
4752
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4604
4753
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4620,6 +4769,7 @@ module SDM
|
|
4620
4769
|
return nil
|
4621
4770
|
end
|
4622
4771
|
plumbing = V1::Redshift.new()
|
4772
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4623
4773
|
plumbing.database = (porcelain.database)
|
4624
4774
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4625
4775
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4694,6 +4844,270 @@ module SDM
|
|
4694
4844
|
end
|
4695
4845
|
items
|
4696
4846
|
end
|
4847
|
+
def self.convert_remote_identity_to_porcelain(plumbing)
|
4848
|
+
if plumbing == nil
|
4849
|
+
return nil
|
4850
|
+
end
|
4851
|
+
porcelain = RemoteIdentity.new()
|
4852
|
+
porcelain.account_id = (plumbing.account_id)
|
4853
|
+
porcelain.id = (plumbing.id)
|
4854
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
4855
|
+
porcelain.username = (plumbing.username)
|
4856
|
+
porcelain
|
4857
|
+
end
|
4858
|
+
|
4859
|
+
def self.convert_remote_identity_to_plumbing(porcelain)
|
4860
|
+
if porcelain == nil
|
4861
|
+
return nil
|
4862
|
+
end
|
4863
|
+
plumbing = V1::RemoteIdentity.new()
|
4864
|
+
plumbing.account_id = (porcelain.account_id)
|
4865
|
+
plumbing.id = (porcelain.id)
|
4866
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
4867
|
+
plumbing.username = (porcelain.username)
|
4868
|
+
plumbing
|
4869
|
+
end
|
4870
|
+
def self.convert_repeated_remote_identity_to_plumbing(porcelains)
|
4871
|
+
items = Array.new
|
4872
|
+
porcelains.each do |porcelain|
|
4873
|
+
plumbing = convert_remote_identity_to_plumbing(porcelain)
|
4874
|
+
items.append(plumbing)
|
4875
|
+
end
|
4876
|
+
items
|
4877
|
+
end
|
4878
|
+
|
4879
|
+
def self.convert_repeated_remote_identity_to_porcelain(plumbings)
|
4880
|
+
items = Array.new
|
4881
|
+
plumbings.each do |plumbing|
|
4882
|
+
porcelain = convert_remote_identity_to_porcelain(plumbing)
|
4883
|
+
items.append(porcelain)
|
4884
|
+
end
|
4885
|
+
items
|
4886
|
+
end
|
4887
|
+
def self.convert_remote_identity_create_response_to_porcelain(plumbing)
|
4888
|
+
if plumbing == nil
|
4889
|
+
return nil
|
4890
|
+
end
|
4891
|
+
porcelain = RemoteIdentityCreateResponse.new()
|
4892
|
+
porcelain.meta = convert_create_response_metadata_to_porcelain(plumbing.meta)
|
4893
|
+
porcelain.rate_limit = convert_rate_limit_metadata_to_porcelain(plumbing.rate_limit)
|
4894
|
+
porcelain.remote_identity = convert_remote_identity_to_porcelain(plumbing.remote_identity)
|
4895
|
+
porcelain
|
4896
|
+
end
|
4897
|
+
|
4898
|
+
def self.convert_remote_identity_create_response_to_plumbing(porcelain)
|
4899
|
+
if porcelain == nil
|
4900
|
+
return nil
|
4901
|
+
end
|
4902
|
+
plumbing = V1::RemoteIdentityCreateResponse.new()
|
4903
|
+
plumbing.meta = convert_create_response_metadata_to_plumbing(porcelain.meta)
|
4904
|
+
plumbing.rate_limit = convert_rate_limit_metadata_to_plumbing(porcelain.rate_limit)
|
4905
|
+
plumbing.remote_identity = convert_remote_identity_to_plumbing(porcelain.remote_identity)
|
4906
|
+
plumbing
|
4907
|
+
end
|
4908
|
+
def self.convert_repeated_remote_identity_create_response_to_plumbing(porcelains)
|
4909
|
+
items = Array.new
|
4910
|
+
porcelains.each do |porcelain|
|
4911
|
+
plumbing = convert_remote_identity_create_response_to_plumbing(porcelain)
|
4912
|
+
items.append(plumbing)
|
4913
|
+
end
|
4914
|
+
items
|
4915
|
+
end
|
4916
|
+
|
4917
|
+
def self.convert_repeated_remote_identity_create_response_to_porcelain(plumbings)
|
4918
|
+
items = Array.new
|
4919
|
+
plumbings.each do |plumbing|
|
4920
|
+
porcelain = convert_remote_identity_create_response_to_porcelain(plumbing)
|
4921
|
+
items.append(porcelain)
|
4922
|
+
end
|
4923
|
+
items
|
4924
|
+
end
|
4925
|
+
def self.convert_remote_identity_delete_response_to_porcelain(plumbing)
|
4926
|
+
if plumbing == nil
|
4927
|
+
return nil
|
4928
|
+
end
|
4929
|
+
porcelain = RemoteIdentityDeleteResponse.new()
|
4930
|
+
porcelain.meta = convert_delete_response_metadata_to_porcelain(plumbing.meta)
|
4931
|
+
porcelain.rate_limit = convert_rate_limit_metadata_to_porcelain(plumbing.rate_limit)
|
4932
|
+
porcelain
|
4933
|
+
end
|
4934
|
+
|
4935
|
+
def self.convert_remote_identity_delete_response_to_plumbing(porcelain)
|
4936
|
+
if porcelain == nil
|
4937
|
+
return nil
|
4938
|
+
end
|
4939
|
+
plumbing = V1::RemoteIdentityDeleteResponse.new()
|
4940
|
+
plumbing.meta = convert_delete_response_metadata_to_plumbing(porcelain.meta)
|
4941
|
+
plumbing.rate_limit = convert_rate_limit_metadata_to_plumbing(porcelain.rate_limit)
|
4942
|
+
plumbing
|
4943
|
+
end
|
4944
|
+
def self.convert_repeated_remote_identity_delete_response_to_plumbing(porcelains)
|
4945
|
+
items = Array.new
|
4946
|
+
porcelains.each do |porcelain|
|
4947
|
+
plumbing = convert_remote_identity_delete_response_to_plumbing(porcelain)
|
4948
|
+
items.append(plumbing)
|
4949
|
+
end
|
4950
|
+
items
|
4951
|
+
end
|
4952
|
+
|
4953
|
+
def self.convert_repeated_remote_identity_delete_response_to_porcelain(plumbings)
|
4954
|
+
items = Array.new
|
4955
|
+
plumbings.each do |plumbing|
|
4956
|
+
porcelain = convert_remote_identity_delete_response_to_porcelain(plumbing)
|
4957
|
+
items.append(porcelain)
|
4958
|
+
end
|
4959
|
+
items
|
4960
|
+
end
|
4961
|
+
def self.convert_remote_identity_get_response_to_porcelain(plumbing)
|
4962
|
+
if plumbing == nil
|
4963
|
+
return nil
|
4964
|
+
end
|
4965
|
+
porcelain = RemoteIdentityGetResponse.new()
|
4966
|
+
porcelain.meta = convert_get_response_metadata_to_porcelain(plumbing.meta)
|
4967
|
+
porcelain.rate_limit = convert_rate_limit_metadata_to_porcelain(plumbing.rate_limit)
|
4968
|
+
porcelain.remote_identity = convert_remote_identity_to_porcelain(plumbing.remote_identity)
|
4969
|
+
porcelain
|
4970
|
+
end
|
4971
|
+
|
4972
|
+
def self.convert_remote_identity_get_response_to_plumbing(porcelain)
|
4973
|
+
if porcelain == nil
|
4974
|
+
return nil
|
4975
|
+
end
|
4976
|
+
plumbing = V1::RemoteIdentityGetResponse.new()
|
4977
|
+
plumbing.meta = convert_get_response_metadata_to_plumbing(porcelain.meta)
|
4978
|
+
plumbing.rate_limit = convert_rate_limit_metadata_to_plumbing(porcelain.rate_limit)
|
4979
|
+
plumbing.remote_identity = convert_remote_identity_to_plumbing(porcelain.remote_identity)
|
4980
|
+
plumbing
|
4981
|
+
end
|
4982
|
+
def self.convert_repeated_remote_identity_get_response_to_plumbing(porcelains)
|
4983
|
+
items = Array.new
|
4984
|
+
porcelains.each do |porcelain|
|
4985
|
+
plumbing = convert_remote_identity_get_response_to_plumbing(porcelain)
|
4986
|
+
items.append(plumbing)
|
4987
|
+
end
|
4988
|
+
items
|
4989
|
+
end
|
4990
|
+
|
4991
|
+
def self.convert_repeated_remote_identity_get_response_to_porcelain(plumbings)
|
4992
|
+
items = Array.new
|
4993
|
+
plumbings.each do |plumbing|
|
4994
|
+
porcelain = convert_remote_identity_get_response_to_porcelain(plumbing)
|
4995
|
+
items.append(porcelain)
|
4996
|
+
end
|
4997
|
+
items
|
4998
|
+
end
|
4999
|
+
def self.convert_remote_identity_group_to_porcelain(plumbing)
|
5000
|
+
if plumbing == nil
|
5001
|
+
return nil
|
5002
|
+
end
|
5003
|
+
porcelain = RemoteIdentityGroup.new()
|
5004
|
+
porcelain.id = (plumbing.id)
|
5005
|
+
porcelain.name = (plumbing.name)
|
5006
|
+
porcelain
|
5007
|
+
end
|
5008
|
+
|
5009
|
+
def self.convert_remote_identity_group_to_plumbing(porcelain)
|
5010
|
+
if porcelain == nil
|
5011
|
+
return nil
|
5012
|
+
end
|
5013
|
+
plumbing = V1::RemoteIdentityGroup.new()
|
5014
|
+
plumbing.id = (porcelain.id)
|
5015
|
+
plumbing.name = (porcelain.name)
|
5016
|
+
plumbing
|
5017
|
+
end
|
5018
|
+
def self.convert_repeated_remote_identity_group_to_plumbing(porcelains)
|
5019
|
+
items = Array.new
|
5020
|
+
porcelains.each do |porcelain|
|
5021
|
+
plumbing = convert_remote_identity_group_to_plumbing(porcelain)
|
5022
|
+
items.append(plumbing)
|
5023
|
+
end
|
5024
|
+
items
|
5025
|
+
end
|
5026
|
+
|
5027
|
+
def self.convert_repeated_remote_identity_group_to_porcelain(plumbings)
|
5028
|
+
items = Array.new
|
5029
|
+
plumbings.each do |plumbing|
|
5030
|
+
porcelain = convert_remote_identity_group_to_porcelain(plumbing)
|
5031
|
+
items.append(porcelain)
|
5032
|
+
end
|
5033
|
+
items
|
5034
|
+
end
|
5035
|
+
def self.convert_remote_identity_group_get_response_to_porcelain(plumbing)
|
5036
|
+
if plumbing == nil
|
5037
|
+
return nil
|
5038
|
+
end
|
5039
|
+
porcelain = RemoteIdentityGroupGetResponse.new()
|
5040
|
+
porcelain.meta = convert_get_response_metadata_to_porcelain(plumbing.meta)
|
5041
|
+
porcelain.rate_limit = convert_rate_limit_metadata_to_porcelain(plumbing.rate_limit)
|
5042
|
+
porcelain.remote_identity_group = convert_remote_identity_group_to_porcelain(plumbing.remote_identity_group)
|
5043
|
+
porcelain
|
5044
|
+
end
|
5045
|
+
|
5046
|
+
def self.convert_remote_identity_group_get_response_to_plumbing(porcelain)
|
5047
|
+
if porcelain == nil
|
5048
|
+
return nil
|
5049
|
+
end
|
5050
|
+
plumbing = V1::RemoteIdentityGroupGetResponse.new()
|
5051
|
+
plumbing.meta = convert_get_response_metadata_to_plumbing(porcelain.meta)
|
5052
|
+
plumbing.rate_limit = convert_rate_limit_metadata_to_plumbing(porcelain.rate_limit)
|
5053
|
+
plumbing.remote_identity_group = convert_remote_identity_group_to_plumbing(porcelain.remote_identity_group)
|
5054
|
+
plumbing
|
5055
|
+
end
|
5056
|
+
def self.convert_repeated_remote_identity_group_get_response_to_plumbing(porcelains)
|
5057
|
+
items = Array.new
|
5058
|
+
porcelains.each do |porcelain|
|
5059
|
+
plumbing = convert_remote_identity_group_get_response_to_plumbing(porcelain)
|
5060
|
+
items.append(plumbing)
|
5061
|
+
end
|
5062
|
+
items
|
5063
|
+
end
|
5064
|
+
|
5065
|
+
def self.convert_repeated_remote_identity_group_get_response_to_porcelain(plumbings)
|
5066
|
+
items = Array.new
|
5067
|
+
plumbings.each do |plumbing|
|
5068
|
+
porcelain = convert_remote_identity_group_get_response_to_porcelain(plumbing)
|
5069
|
+
items.append(porcelain)
|
5070
|
+
end
|
5071
|
+
items
|
5072
|
+
end
|
5073
|
+
def self.convert_remote_identity_update_response_to_porcelain(plumbing)
|
5074
|
+
if plumbing == nil
|
5075
|
+
return nil
|
5076
|
+
end
|
5077
|
+
porcelain = RemoteIdentityUpdateResponse.new()
|
5078
|
+
porcelain.meta = convert_update_response_metadata_to_porcelain(plumbing.meta)
|
5079
|
+
porcelain.rate_limit = convert_rate_limit_metadata_to_porcelain(plumbing.rate_limit)
|
5080
|
+
porcelain.remote_identity = convert_remote_identity_to_porcelain(plumbing.remote_identity)
|
5081
|
+
porcelain
|
5082
|
+
end
|
5083
|
+
|
5084
|
+
def self.convert_remote_identity_update_response_to_plumbing(porcelain)
|
5085
|
+
if porcelain == nil
|
5086
|
+
return nil
|
5087
|
+
end
|
5088
|
+
plumbing = V1::RemoteIdentityUpdateResponse.new()
|
5089
|
+
plumbing.meta = convert_update_response_metadata_to_plumbing(porcelain.meta)
|
5090
|
+
plumbing.rate_limit = convert_rate_limit_metadata_to_plumbing(porcelain.rate_limit)
|
5091
|
+
plumbing.remote_identity = convert_remote_identity_to_plumbing(porcelain.remote_identity)
|
5092
|
+
plumbing
|
5093
|
+
end
|
5094
|
+
def self.convert_repeated_remote_identity_update_response_to_plumbing(porcelains)
|
5095
|
+
items = Array.new
|
5096
|
+
porcelains.each do |porcelain|
|
5097
|
+
plumbing = convert_remote_identity_update_response_to_plumbing(porcelain)
|
5098
|
+
items.append(plumbing)
|
5099
|
+
end
|
5100
|
+
items
|
5101
|
+
end
|
5102
|
+
|
5103
|
+
def self.convert_repeated_remote_identity_update_response_to_porcelain(plumbings)
|
5104
|
+
items = Array.new
|
5105
|
+
plumbings.each do |plumbing|
|
5106
|
+
porcelain = convert_remote_identity_update_response_to_porcelain(plumbing)
|
5107
|
+
items.append(porcelain)
|
5108
|
+
end
|
5109
|
+
items
|
5110
|
+
end
|
4697
5111
|
def self.convert_resource_to_plumbing(porcelain)
|
4698
5112
|
if porcelain == nil
|
4699
5113
|
return nil
|
@@ -5797,6 +6211,7 @@ module SDM
|
|
5797
6211
|
return nil
|
5798
6212
|
end
|
5799
6213
|
porcelain = SQLServer.new()
|
6214
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5800
6215
|
porcelain.database = (plumbing.database)
|
5801
6216
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5802
6217
|
porcelain.healthy = (plumbing.healthy)
|
@@ -5819,6 +6234,7 @@ module SDM
|
|
5819
6234
|
return nil
|
5820
6235
|
end
|
5821
6236
|
plumbing = V1::SQLServer.new()
|
6237
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5822
6238
|
plumbing.database = (porcelain.database)
|
5823
6239
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5824
6240
|
plumbing.healthy = (porcelain.healthy)
|
@@ -5858,6 +6274,7 @@ module SDM
|
|
5858
6274
|
end
|
5859
6275
|
porcelain = SSH.new()
|
5860
6276
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
6277
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5861
6278
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5862
6279
|
porcelain.healthy = (plumbing.healthy)
|
5863
6280
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5865,6 +6282,7 @@ module SDM
|
|
5865
6282
|
porcelain.name = (plumbing.name)
|
5866
6283
|
porcelain.port = (plumbing.port)
|
5867
6284
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
6285
|
+
porcelain.port_override = (plumbing.port_override)
|
5868
6286
|
porcelain.public_key = (plumbing.public_key)
|
5869
6287
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5870
6288
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
@@ -5878,6 +6296,7 @@ module SDM
|
|
5878
6296
|
end
|
5879
6297
|
plumbing = V1::SSH.new()
|
5880
6298
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6299
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5881
6300
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5882
6301
|
plumbing.healthy = (porcelain.healthy)
|
5883
6302
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5885,6 +6304,7 @@ module SDM
|
|
5885
6304
|
plumbing.name = (porcelain.name)
|
5886
6305
|
plumbing.port = (porcelain.port)
|
5887
6306
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6307
|
+
plumbing.port_override = (porcelain.port_override)
|
5888
6308
|
plumbing.public_key = (porcelain.public_key)
|
5889
6309
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
5890
6310
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
@@ -5914,6 +6334,7 @@ module SDM
|
|
5914
6334
|
end
|
5915
6335
|
porcelain = SSHCert.new()
|
5916
6336
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
6337
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5917
6338
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5918
6339
|
porcelain.healthy = (plumbing.healthy)
|
5919
6340
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5921,6 +6342,9 @@ module SDM
|
|
5921
6342
|
porcelain.name = (plumbing.name)
|
5922
6343
|
porcelain.port = (plumbing.port)
|
5923
6344
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
6345
|
+
porcelain.port_override = (plumbing.port_override)
|
6346
|
+
porcelain.remote_identity_group_id = (plumbing.remote_identity_group_id)
|
6347
|
+
porcelain.remote_identity_healthcheck_username = (plumbing.remote_identity_healthcheck_username)
|
5924
6348
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5925
6349
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
5926
6350
|
porcelain.username = (plumbing.username)
|
@@ -5933,6 +6357,7 @@ module SDM
|
|
5933
6357
|
end
|
5934
6358
|
plumbing = V1::SSHCert.new()
|
5935
6359
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6360
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5936
6361
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5937
6362
|
plumbing.healthy = (porcelain.healthy)
|
5938
6363
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5940,6 +6365,9 @@ module SDM
|
|
5940
6365
|
plumbing.name = (porcelain.name)
|
5941
6366
|
plumbing.port = (porcelain.port)
|
5942
6367
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6368
|
+
plumbing.port_override = (porcelain.port_override)
|
6369
|
+
plumbing.remote_identity_group_id = (porcelain.remote_identity_group_id)
|
6370
|
+
plumbing.remote_identity_healthcheck_username = (porcelain.remote_identity_healthcheck_username)
|
5943
6371
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
5944
6372
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
5945
6373
|
plumbing.username = (porcelain.username)
|
@@ -5968,6 +6396,7 @@ module SDM
|
|
5968
6396
|
end
|
5969
6397
|
porcelain = SSHCustomerKey.new()
|
5970
6398
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
6399
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5971
6400
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5972
6401
|
porcelain.healthy = (plumbing.healthy)
|
5973
6402
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5975,6 +6404,7 @@ module SDM
|
|
5975
6404
|
porcelain.name = (plumbing.name)
|
5976
6405
|
porcelain.port = (plumbing.port)
|
5977
6406
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
6407
|
+
porcelain.port_override = (plumbing.port_override)
|
5978
6408
|
porcelain.private_key = (plumbing.private_key)
|
5979
6409
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5980
6410
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
@@ -5988,6 +6418,7 @@ module SDM
|
|
5988
6418
|
end
|
5989
6419
|
plumbing = V1::SSHCustomerKey.new()
|
5990
6420
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6421
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5991
6422
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5992
6423
|
plumbing.healthy = (porcelain.healthy)
|
5993
6424
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5995,6 +6426,7 @@ module SDM
|
|
5995
6426
|
plumbing.name = (porcelain.name)
|
5996
6427
|
plumbing.port = (porcelain.port)
|
5997
6428
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6429
|
+
plumbing.port_override = (porcelain.port_override)
|
5998
6430
|
plumbing.private_key = (porcelain.private_key)
|
5999
6431
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
6000
6432
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
@@ -6279,6 +6711,7 @@ module SDM
|
|
6279
6711
|
return nil
|
6280
6712
|
end
|
6281
6713
|
porcelain = SingleStore.new()
|
6714
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6282
6715
|
porcelain.database = (plumbing.database)
|
6283
6716
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6284
6717
|
porcelain.healthy = (plumbing.healthy)
|
@@ -6299,6 +6732,7 @@ module SDM
|
|
6299
6732
|
return nil
|
6300
6733
|
end
|
6301
6734
|
plumbing = V1::SingleStore.new()
|
6735
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6302
6736
|
plumbing.database = (porcelain.database)
|
6303
6737
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6304
6738
|
plumbing.healthy = (porcelain.healthy)
|
@@ -6335,6 +6769,7 @@ module SDM
|
|
6335
6769
|
return nil
|
6336
6770
|
end
|
6337
6771
|
porcelain = Snowflake.new()
|
6772
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6338
6773
|
porcelain.database = (plumbing.database)
|
6339
6774
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6340
6775
|
porcelain.healthy = (plumbing.healthy)
|
@@ -6355,6 +6790,7 @@ module SDM
|
|
6355
6790
|
return nil
|
6356
6791
|
end
|
6357
6792
|
plumbing = V1::Snowflake.new()
|
6793
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6358
6794
|
plumbing.database = (porcelain.database)
|
6359
6795
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6360
6796
|
plumbing.healthy = (porcelain.healthy)
|
@@ -6391,6 +6827,7 @@ module SDM
|
|
6391
6827
|
return nil
|
6392
6828
|
end
|
6393
6829
|
porcelain = Sybase.new()
|
6830
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6394
6831
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6395
6832
|
porcelain.healthy = (plumbing.healthy)
|
6396
6833
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6410,6 +6847,7 @@ module SDM
|
|
6410
6847
|
return nil
|
6411
6848
|
end
|
6412
6849
|
plumbing = V1::Sybase.new()
|
6850
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6413
6851
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6414
6852
|
plumbing.healthy = (porcelain.healthy)
|
6415
6853
|
plumbing.hostname = (porcelain.hostname)
|
@@ -6445,6 +6883,7 @@ module SDM
|
|
6445
6883
|
return nil
|
6446
6884
|
end
|
6447
6885
|
porcelain = SybaseIQ.new()
|
6886
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6448
6887
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6449
6888
|
porcelain.healthy = (plumbing.healthy)
|
6450
6889
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6464,6 +6903,7 @@ module SDM
|
|
6464
6903
|
return nil
|
6465
6904
|
end
|
6466
6905
|
plumbing = V1::SybaseIQ.new()
|
6906
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6467
6907
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6468
6908
|
plumbing.healthy = (porcelain.healthy)
|
6469
6909
|
plumbing.hostname = (porcelain.hostname)
|
@@ -6535,6 +6975,7 @@ module SDM
|
|
6535
6975
|
return nil
|
6536
6976
|
end
|
6537
6977
|
porcelain = Teradata.new()
|
6978
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6538
6979
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6539
6980
|
porcelain.healthy = (plumbing.healthy)
|
6540
6981
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6554,6 +6995,7 @@ module SDM
|
|
6554
6995
|
return nil
|
6555
6996
|
end
|
6556
6997
|
plumbing = V1::Teradata.new()
|
6998
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6557
6999
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6558
7000
|
plumbing.healthy = (porcelain.healthy)
|
6559
7001
|
plumbing.hostname = (porcelain.hostname)
|