strongdm 2.0.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- 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-799dc839a811c2fbe50b5281a9266fcc3a8f5154.idx → pack-c180677ba60e518124a696667c7cc0c268db3b1a.idx} +0 -0
- data/.git/objects/pack/{pack-799dc839a811c2fbe50b5281a9266fcc3a8f5154.pack → pack-c180677ba60e518124a696667c7cc0c268db3b1a.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 +94 -0
- data/lib/grpc/nodes_services_pb.rb +6 -6
- data/lib/grpc/plumbing.rb +218 -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 +403 -0
- data/lib/strongdm.rb +15 -2
- data/lib/svc.rb +1 -0
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +4 -4
data/lib/grpc/plumbing.rb
CHANGED
@@ -115,6 +115,7 @@ module SDM
|
|
115
115
|
return nil
|
116
116
|
end
|
117
117
|
porcelain = AKS.new()
|
118
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
118
119
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
119
120
|
porcelain.client_certificate = (plumbing.client_certificate)
|
120
121
|
porcelain.client_key = (plumbing.client_key)
|
@@ -135,6 +136,7 @@ module SDM
|
|
135
136
|
return nil
|
136
137
|
end
|
137
138
|
plumbing = V1::AKS.new()
|
139
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
138
140
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
139
141
|
plumbing.client_certificate = (porcelain.client_certificate)
|
140
142
|
plumbing.client_key = (porcelain.client_key)
|
@@ -171,6 +173,7 @@ module SDM
|
|
171
173
|
return nil
|
172
174
|
end
|
173
175
|
porcelain = AKSBasicAuth.new()
|
176
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
174
177
|
porcelain.egress_filter = (plumbing.egress_filter)
|
175
178
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
176
179
|
porcelain.healthy = (plumbing.healthy)
|
@@ -190,6 +193,7 @@ module SDM
|
|
190
193
|
return nil
|
191
194
|
end
|
192
195
|
plumbing = V1::AKSBasicAuth.new()
|
196
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
193
197
|
plumbing.egress_filter = (porcelain.egress_filter)
|
194
198
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
195
199
|
plumbing.healthy = (porcelain.healthy)
|
@@ -225,6 +229,7 @@ module SDM
|
|
225
229
|
return nil
|
226
230
|
end
|
227
231
|
porcelain = AKSServiceAccount.new()
|
232
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
228
233
|
porcelain.egress_filter = (plumbing.egress_filter)
|
229
234
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
230
235
|
porcelain.healthy = (plumbing.healthy)
|
@@ -243,6 +248,7 @@ module SDM
|
|
243
248
|
return nil
|
244
249
|
end
|
245
250
|
plumbing = V1::AKSServiceAccount.new()
|
251
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
246
252
|
plumbing.egress_filter = (porcelain.egress_filter)
|
247
253
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
248
254
|
plumbing.healthy = (porcelain.healthy)
|
@@ -277,6 +283,7 @@ module SDM
|
|
277
283
|
return nil
|
278
284
|
end
|
279
285
|
porcelain = AKSServiceAccountUserImpersonation.new()
|
286
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
280
287
|
porcelain.egress_filter = (plumbing.egress_filter)
|
281
288
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
282
289
|
porcelain.healthy = (plumbing.healthy)
|
@@ -295,6 +302,7 @@ module SDM
|
|
295
302
|
return nil
|
296
303
|
end
|
297
304
|
plumbing = V1::AKSServiceAccountUserImpersonation.new()
|
305
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
298
306
|
plumbing.egress_filter = (porcelain.egress_filter)
|
299
307
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
300
308
|
plumbing.healthy = (porcelain.healthy)
|
@@ -329,6 +337,7 @@ module SDM
|
|
329
337
|
return nil
|
330
338
|
end
|
331
339
|
porcelain = AKSUserImpersonation.new()
|
340
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
332
341
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
333
342
|
porcelain.client_certificate = (plumbing.client_certificate)
|
334
343
|
porcelain.client_key = (plumbing.client_key)
|
@@ -349,6 +358,7 @@ module SDM
|
|
349
358
|
return nil
|
350
359
|
end
|
351
360
|
plumbing = V1::AKSUserImpersonation.new()
|
361
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
352
362
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
353
363
|
plumbing.client_certificate = (porcelain.client_certificate)
|
354
364
|
plumbing.client_key = (porcelain.client_key)
|
@@ -386,6 +396,7 @@ module SDM
|
|
386
396
|
end
|
387
397
|
porcelain = AWS.new()
|
388
398
|
porcelain.access_key = (plumbing.access_key)
|
399
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
389
400
|
porcelain.egress_filter = (plumbing.egress_filter)
|
390
401
|
porcelain.healthcheck_region = (plumbing.healthcheck_region)
|
391
402
|
porcelain.healthy = (plumbing.healthy)
|
@@ -405,6 +416,7 @@ module SDM
|
|
405
416
|
end
|
406
417
|
plumbing = V1::AWS.new()
|
407
418
|
plumbing.access_key = (porcelain.access_key)
|
419
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
408
420
|
plumbing.egress_filter = (porcelain.egress_filter)
|
409
421
|
plumbing.healthcheck_region = (porcelain.healthcheck_region)
|
410
422
|
plumbing.healthy = (porcelain.healthy)
|
@@ -978,6 +990,7 @@ module SDM
|
|
978
990
|
end
|
979
991
|
porcelain = AmazonEKS.new()
|
980
992
|
porcelain.access_key = (plumbing.access_key)
|
993
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
981
994
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
982
995
|
porcelain.cluster_name = (plumbing.cluster_name)
|
983
996
|
porcelain.egress_filter = (plumbing.egress_filter)
|
@@ -1001,6 +1014,7 @@ module SDM
|
|
1001
1014
|
end
|
1002
1015
|
plumbing = V1::AmazonEKS.new()
|
1003
1016
|
plumbing.access_key = (porcelain.access_key)
|
1017
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1004
1018
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
1005
1019
|
plumbing.cluster_name = (porcelain.cluster_name)
|
1006
1020
|
plumbing.egress_filter = (porcelain.egress_filter)
|
@@ -1040,6 +1054,7 @@ module SDM
|
|
1040
1054
|
end
|
1041
1055
|
porcelain = AmazonEKSUserImpersonation.new()
|
1042
1056
|
porcelain.access_key = (plumbing.access_key)
|
1057
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1043
1058
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
1044
1059
|
porcelain.cluster_name = (plumbing.cluster_name)
|
1045
1060
|
porcelain.egress_filter = (plumbing.egress_filter)
|
@@ -1063,6 +1078,7 @@ module SDM
|
|
1063
1078
|
end
|
1064
1079
|
plumbing = V1::AmazonEKSUserImpersonation.new()
|
1065
1080
|
plumbing.access_key = (porcelain.access_key)
|
1081
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1066
1082
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
1067
1083
|
plumbing.cluster_name = (porcelain.cluster_name)
|
1068
1084
|
plumbing.egress_filter = (porcelain.egress_filter)
|
@@ -1102,6 +1118,7 @@ module SDM
|
|
1102
1118
|
end
|
1103
1119
|
porcelain = AmazonES.new()
|
1104
1120
|
porcelain.access_key = (plumbing.access_key)
|
1121
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1105
1122
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1106
1123
|
porcelain.endpoint = (plumbing.endpoint)
|
1107
1124
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1123,6 +1140,7 @@ module SDM
|
|
1123
1140
|
end
|
1124
1141
|
plumbing = V1::AmazonES.new()
|
1125
1142
|
plumbing.access_key = (porcelain.access_key)
|
1143
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1126
1144
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1127
1145
|
plumbing.endpoint = (porcelain.endpoint)
|
1128
1146
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1159,6 +1177,7 @@ module SDM
|
|
1159
1177
|
return nil
|
1160
1178
|
end
|
1161
1179
|
porcelain = AmazonMQAMQP091.new()
|
1180
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1162
1181
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1163
1182
|
porcelain.healthy = (plumbing.healthy)
|
1164
1183
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1179,6 +1198,7 @@ module SDM
|
|
1179
1198
|
return nil
|
1180
1199
|
end
|
1181
1200
|
plumbing = V1::AmazonMQAMQP091.new()
|
1201
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1182
1202
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1183
1203
|
plumbing.healthy = (porcelain.healthy)
|
1184
1204
|
plumbing.hostname = (porcelain.hostname)
|
@@ -1216,6 +1236,7 @@ module SDM
|
|
1216
1236
|
end
|
1217
1237
|
porcelain = Athena.new()
|
1218
1238
|
porcelain.access_key = (plumbing.access_key)
|
1239
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1219
1240
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1220
1241
|
porcelain.healthy = (plumbing.healthy)
|
1221
1242
|
porcelain.id = (plumbing.id)
|
@@ -1237,6 +1258,7 @@ module SDM
|
|
1237
1258
|
end
|
1238
1259
|
plumbing = V1::Athena.new()
|
1239
1260
|
plumbing.access_key = (porcelain.access_key)
|
1261
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1240
1262
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1241
1263
|
plumbing.healthy = (porcelain.healthy)
|
1242
1264
|
plumbing.id = (porcelain.id)
|
@@ -1273,6 +1295,7 @@ module SDM
|
|
1273
1295
|
return nil
|
1274
1296
|
end
|
1275
1297
|
porcelain = AuroraMysql.new()
|
1298
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1276
1299
|
porcelain.database = (plumbing.database)
|
1277
1300
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1278
1301
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1293,6 +1316,7 @@ module SDM
|
|
1293
1316
|
return nil
|
1294
1317
|
end
|
1295
1318
|
plumbing = V1::AuroraMysql.new()
|
1319
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1296
1320
|
plumbing.database = (porcelain.database)
|
1297
1321
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1298
1322
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1329,6 +1353,7 @@ module SDM
|
|
1329
1353
|
return nil
|
1330
1354
|
end
|
1331
1355
|
porcelain = AuroraPostgres.new()
|
1356
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1332
1357
|
porcelain.database = (plumbing.database)
|
1333
1358
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1334
1359
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1350,6 +1375,7 @@ module SDM
|
|
1350
1375
|
return nil
|
1351
1376
|
end
|
1352
1377
|
plumbing = V1::AuroraPostgres.new()
|
1378
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1353
1379
|
plumbing.database = (porcelain.database)
|
1354
1380
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1355
1381
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1388,6 +1414,7 @@ module SDM
|
|
1388
1414
|
end
|
1389
1415
|
porcelain = Azure.new()
|
1390
1416
|
porcelain.app_id = (plumbing.app_id)
|
1417
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1391
1418
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1392
1419
|
porcelain.healthy = (plumbing.healthy)
|
1393
1420
|
porcelain.id = (plumbing.id)
|
@@ -1405,6 +1432,7 @@ module SDM
|
|
1405
1432
|
end
|
1406
1433
|
plumbing = V1::Azure.new()
|
1407
1434
|
plumbing.app_id = (porcelain.app_id)
|
1435
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1408
1436
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1409
1437
|
plumbing.healthy = (porcelain.healthy)
|
1410
1438
|
plumbing.id = (porcelain.id)
|
@@ -1438,6 +1466,7 @@ module SDM
|
|
1438
1466
|
end
|
1439
1467
|
porcelain = AzureCertificate.new()
|
1440
1468
|
porcelain.app_id = (plumbing.app_id)
|
1469
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1441
1470
|
porcelain.client_certificate = (plumbing.client_certificate)
|
1442
1471
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1443
1472
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1455,6 +1484,7 @@ module SDM
|
|
1455
1484
|
end
|
1456
1485
|
plumbing = V1::AzureCertificate.new()
|
1457
1486
|
plumbing.app_id = (porcelain.app_id)
|
1487
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1458
1488
|
plumbing.client_certificate = (porcelain.client_certificate)
|
1459
1489
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1460
1490
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1487,6 +1517,7 @@ module SDM
|
|
1487
1517
|
return nil
|
1488
1518
|
end
|
1489
1519
|
porcelain = AzurePostgres.new()
|
1520
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1490
1521
|
porcelain.database = (plumbing.database)
|
1491
1522
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1492
1523
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1508,6 +1539,7 @@ module SDM
|
|
1508
1539
|
return nil
|
1509
1540
|
end
|
1510
1541
|
plumbing = V1::AzurePostgres.new()
|
1542
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1511
1543
|
plumbing.database = (porcelain.database)
|
1512
1544
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1513
1545
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1585,6 +1617,7 @@ module SDM
|
|
1585
1617
|
return nil
|
1586
1618
|
end
|
1587
1619
|
porcelain = BigQuery.new()
|
1620
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1588
1621
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1589
1622
|
porcelain.endpoint = (plumbing.endpoint)
|
1590
1623
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1604,6 +1637,7 @@ module SDM
|
|
1604
1637
|
return nil
|
1605
1638
|
end
|
1606
1639
|
plumbing = V1::BigQuery.new()
|
1640
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1607
1641
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1608
1642
|
plumbing.endpoint = (porcelain.endpoint)
|
1609
1643
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1639,6 +1673,7 @@ module SDM
|
|
1639
1673
|
return nil
|
1640
1674
|
end
|
1641
1675
|
porcelain = Cassandra.new()
|
1676
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1642
1677
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1643
1678
|
porcelain.healthy = (plumbing.healthy)
|
1644
1679
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1659,6 +1694,7 @@ module SDM
|
|
1659
1694
|
return nil
|
1660
1695
|
end
|
1661
1696
|
plumbing = V1::Cassandra.new()
|
1697
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1662
1698
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1663
1699
|
plumbing.healthy = (porcelain.healthy)
|
1664
1700
|
plumbing.hostname = (porcelain.hostname)
|
@@ -1695,6 +1731,7 @@ module SDM
|
|
1695
1731
|
return nil
|
1696
1732
|
end
|
1697
1733
|
porcelain = Citus.new()
|
1734
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1698
1735
|
porcelain.database = (plumbing.database)
|
1699
1736
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1700
1737
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1716,6 +1753,7 @@ module SDM
|
|
1716
1753
|
return nil
|
1717
1754
|
end
|
1718
1755
|
plumbing = V1::Citus.new()
|
1756
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1719
1757
|
plumbing.database = (porcelain.database)
|
1720
1758
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1721
1759
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1753,6 +1791,7 @@ module SDM
|
|
1753
1791
|
return nil
|
1754
1792
|
end
|
1755
1793
|
porcelain = Clustrix.new()
|
1794
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1756
1795
|
porcelain.database = (plumbing.database)
|
1757
1796
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1758
1797
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1773,6 +1812,7 @@ module SDM
|
|
1773
1812
|
return nil
|
1774
1813
|
end
|
1775
1814
|
plumbing = V1::Clustrix.new()
|
1815
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1776
1816
|
plumbing.database = (porcelain.database)
|
1777
1817
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1778
1818
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1809,6 +1849,7 @@ module SDM
|
|
1809
1849
|
return nil
|
1810
1850
|
end
|
1811
1851
|
porcelain = Cockroach.new()
|
1852
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1812
1853
|
porcelain.database = (plumbing.database)
|
1813
1854
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1814
1855
|
porcelain.healthy = (plumbing.healthy)
|
@@ -1830,6 +1871,7 @@ module SDM
|
|
1830
1871
|
return nil
|
1831
1872
|
end
|
1832
1873
|
plumbing = V1::Cockroach.new()
|
1874
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1833
1875
|
plumbing.database = (porcelain.database)
|
1834
1876
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1835
1877
|
plumbing.healthy = (porcelain.healthy)
|
@@ -1975,6 +2017,7 @@ module SDM
|
|
1975
2017
|
return nil
|
1976
2018
|
end
|
1977
2019
|
porcelain = DB2I.new()
|
2020
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
1978
2021
|
porcelain.egress_filter = (plumbing.egress_filter)
|
1979
2022
|
porcelain.healthy = (plumbing.healthy)
|
1980
2023
|
porcelain.hostname = (plumbing.hostname)
|
@@ -1995,6 +2038,7 @@ module SDM
|
|
1995
2038
|
return nil
|
1996
2039
|
end
|
1997
2040
|
plumbing = V1::DB2I.new()
|
2041
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
1998
2042
|
plumbing.egress_filter = (porcelain.egress_filter)
|
1999
2043
|
plumbing.healthy = (porcelain.healthy)
|
2000
2044
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2031,6 +2075,7 @@ module SDM
|
|
2031
2075
|
return nil
|
2032
2076
|
end
|
2033
2077
|
porcelain = DB2LUW.new()
|
2078
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2034
2079
|
porcelain.database = (plumbing.database)
|
2035
2080
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2036
2081
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2051,6 +2096,7 @@ module SDM
|
|
2051
2096
|
return nil
|
2052
2097
|
end
|
2053
2098
|
plumbing = V1::DB2LUW.new()
|
2099
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2054
2100
|
plumbing.database = (porcelain.database)
|
2055
2101
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2056
2102
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2120,6 +2166,7 @@ module SDM
|
|
2120
2166
|
end
|
2121
2167
|
porcelain = DocumentDBHost.new()
|
2122
2168
|
porcelain.auth_database = (plumbing.auth_database)
|
2169
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2123
2170
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2124
2171
|
porcelain.healthy = (plumbing.healthy)
|
2125
2172
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2140,6 +2187,7 @@ module SDM
|
|
2140
2187
|
end
|
2141
2188
|
plumbing = V1::DocumentDBHost.new()
|
2142
2189
|
plumbing.auth_database = (porcelain.auth_database)
|
2190
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2143
2191
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2144
2192
|
plumbing.healthy = (porcelain.healthy)
|
2145
2193
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2176,6 +2224,7 @@ module SDM
|
|
2176
2224
|
end
|
2177
2225
|
porcelain = DocumentDBReplicaSet.new()
|
2178
2226
|
porcelain.auth_database = (plumbing.auth_database)
|
2227
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2179
2228
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
2180
2229
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2181
2230
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2197,6 +2246,7 @@ module SDM
|
|
2197
2246
|
end
|
2198
2247
|
plumbing = V1::DocumentDBReplicaSet.new()
|
2199
2248
|
plumbing.auth_database = (porcelain.auth_database)
|
2249
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2200
2250
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
2201
2251
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2202
2252
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2233,6 +2283,7 @@ module SDM
|
|
2233
2283
|
return nil
|
2234
2284
|
end
|
2235
2285
|
porcelain = Druid.new()
|
2286
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2236
2287
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2237
2288
|
porcelain.healthy = (plumbing.healthy)
|
2238
2289
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2252,6 +2303,7 @@ module SDM
|
|
2252
2303
|
return nil
|
2253
2304
|
end
|
2254
2305
|
plumbing = V1::Druid.new()
|
2306
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2255
2307
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2256
2308
|
plumbing.healthy = (porcelain.healthy)
|
2257
2309
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2288,6 +2340,7 @@ module SDM
|
|
2288
2340
|
end
|
2289
2341
|
porcelain = DynamoDB.new()
|
2290
2342
|
porcelain.access_key = (plumbing.access_key)
|
2343
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2291
2344
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2292
2345
|
porcelain.endpoint = (plumbing.endpoint)
|
2293
2346
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2309,6 +2362,7 @@ module SDM
|
|
2309
2362
|
end
|
2310
2363
|
plumbing = V1::DynamoDB.new()
|
2311
2364
|
plumbing.access_key = (porcelain.access_key)
|
2365
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2312
2366
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2313
2367
|
plumbing.endpoint = (porcelain.endpoint)
|
2314
2368
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2345,6 +2399,7 @@ module SDM
|
|
2345
2399
|
return nil
|
2346
2400
|
end
|
2347
2401
|
porcelain = Elastic.new()
|
2402
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2348
2403
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2349
2404
|
porcelain.healthy = (plumbing.healthy)
|
2350
2405
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2365,6 +2420,7 @@ module SDM
|
|
2365
2420
|
return nil
|
2366
2421
|
end
|
2367
2422
|
plumbing = V1::Elastic.new()
|
2423
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2368
2424
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2369
2425
|
plumbing.healthy = (porcelain.healthy)
|
2370
2426
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2401,6 +2457,7 @@ module SDM
|
|
2401
2457
|
return nil
|
2402
2458
|
end
|
2403
2459
|
porcelain = ElasticacheRedis.new()
|
2460
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2404
2461
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2405
2462
|
porcelain.healthy = (plumbing.healthy)
|
2406
2463
|
porcelain.hostname = (plumbing.hostname)
|
@@ -2420,6 +2477,7 @@ module SDM
|
|
2420
2477
|
return nil
|
2421
2478
|
end
|
2422
2479
|
plumbing = V1::ElasticacheRedis.new()
|
2480
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2423
2481
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2424
2482
|
plumbing.healthy = (porcelain.healthy)
|
2425
2483
|
plumbing.hostname = (porcelain.hostname)
|
@@ -2455,6 +2513,7 @@ module SDM
|
|
2455
2513
|
return nil
|
2456
2514
|
end
|
2457
2515
|
porcelain = GCP.new()
|
2516
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2458
2517
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2459
2518
|
porcelain.healthy = (plumbing.healthy)
|
2460
2519
|
porcelain.id = (plumbing.id)
|
@@ -2471,6 +2530,7 @@ module SDM
|
|
2471
2530
|
return nil
|
2472
2531
|
end
|
2473
2532
|
plumbing = V1::GCP.new()
|
2533
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2474
2534
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2475
2535
|
plumbing.healthy = (porcelain.healthy)
|
2476
2536
|
plumbing.id = (porcelain.id)
|
@@ -2621,6 +2681,7 @@ module SDM
|
|
2621
2681
|
return nil
|
2622
2682
|
end
|
2623
2683
|
porcelain = GoogleGKE.new()
|
2684
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2624
2685
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2625
2686
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2626
2687
|
porcelain.endpoint = (plumbing.endpoint)
|
@@ -2639,6 +2700,7 @@ module SDM
|
|
2639
2700
|
return nil
|
2640
2701
|
end
|
2641
2702
|
plumbing = V1::GoogleGKE.new()
|
2703
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2642
2704
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2643
2705
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2644
2706
|
plumbing.endpoint = (porcelain.endpoint)
|
@@ -2673,6 +2735,7 @@ module SDM
|
|
2673
2735
|
return nil
|
2674
2736
|
end
|
2675
2737
|
porcelain = GoogleGKEUserImpersonation.new()
|
2738
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2676
2739
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2677
2740
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2678
2741
|
porcelain.endpoint = (plumbing.endpoint)
|
@@ -2691,6 +2754,7 @@ module SDM
|
|
2691
2754
|
return nil
|
2692
2755
|
end
|
2693
2756
|
plumbing = V1::GoogleGKEUserImpersonation.new()
|
2757
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2694
2758
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2695
2759
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2696
2760
|
plumbing.endpoint = (porcelain.endpoint)
|
@@ -2725,6 +2789,7 @@ module SDM
|
|
2725
2789
|
return nil
|
2726
2790
|
end
|
2727
2791
|
porcelain = Greenplum.new()
|
2792
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2728
2793
|
porcelain.database = (plumbing.database)
|
2729
2794
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2730
2795
|
porcelain.healthy = (plumbing.healthy)
|
@@ -2746,6 +2811,7 @@ module SDM
|
|
2746
2811
|
return nil
|
2747
2812
|
end
|
2748
2813
|
plumbing = V1::Greenplum.new()
|
2814
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2749
2815
|
plumbing.database = (porcelain.database)
|
2750
2816
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2751
2817
|
plumbing.healthy = (porcelain.healthy)
|
@@ -2784,6 +2850,7 @@ module SDM
|
|
2784
2850
|
end
|
2785
2851
|
porcelain = HTTPAuth.new()
|
2786
2852
|
porcelain.auth_header = (plumbing.auth_header)
|
2853
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2787
2854
|
porcelain.default_path = (plumbing.default_path)
|
2788
2855
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2789
2856
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2804,6 +2871,7 @@ module SDM
|
|
2804
2871
|
end
|
2805
2872
|
plumbing = V1::HTTPAuth.new()
|
2806
2873
|
plumbing.auth_header = (porcelain.auth_header)
|
2874
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2807
2875
|
plumbing.default_path = (porcelain.default_path)
|
2808
2876
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2809
2877
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2839,6 +2907,7 @@ module SDM
|
|
2839
2907
|
return nil
|
2840
2908
|
end
|
2841
2909
|
porcelain = HTTPBasicAuth.new()
|
2910
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2842
2911
|
porcelain.default_path = (plumbing.default_path)
|
2843
2912
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2844
2913
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2860,6 +2929,7 @@ module SDM
|
|
2860
2929
|
return nil
|
2861
2930
|
end
|
2862
2931
|
plumbing = V1::HTTPBasicAuth.new()
|
2932
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2863
2933
|
plumbing.default_path = (porcelain.default_path)
|
2864
2934
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2865
2935
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2897,6 +2967,7 @@ module SDM
|
|
2897
2967
|
return nil
|
2898
2968
|
end
|
2899
2969
|
porcelain = HTTPNoAuth.new()
|
2970
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2900
2971
|
porcelain.default_path = (plumbing.default_path)
|
2901
2972
|
porcelain.egress_filter = (plumbing.egress_filter)
|
2902
2973
|
porcelain.headers_blacklist = (plumbing.headers_blacklist)
|
@@ -2916,6 +2987,7 @@ module SDM
|
|
2916
2987
|
return nil
|
2917
2988
|
end
|
2918
2989
|
plumbing = V1::HTTPNoAuth.new()
|
2990
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2919
2991
|
plumbing.default_path = (porcelain.default_path)
|
2920
2992
|
plumbing.egress_filter = (porcelain.egress_filter)
|
2921
2993
|
plumbing.headers_blacklist = (porcelain.headers_blacklist)
|
@@ -2951,6 +3023,7 @@ module SDM
|
|
2951
3023
|
return nil
|
2952
3024
|
end
|
2953
3025
|
porcelain = Kubernetes.new()
|
3026
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
2954
3027
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
2955
3028
|
porcelain.client_certificate = (plumbing.client_certificate)
|
2956
3029
|
porcelain.client_key = (plumbing.client_key)
|
@@ -2971,6 +3044,7 @@ module SDM
|
|
2971
3044
|
return nil
|
2972
3045
|
end
|
2973
3046
|
plumbing = V1::Kubernetes.new()
|
3047
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
2974
3048
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
2975
3049
|
plumbing.client_certificate = (porcelain.client_certificate)
|
2976
3050
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3007,6 +3081,7 @@ module SDM
|
|
3007
3081
|
return nil
|
3008
3082
|
end
|
3009
3083
|
porcelain = KubernetesBasicAuth.new()
|
3084
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3010
3085
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3011
3086
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3012
3087
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3026,6 +3101,7 @@ module SDM
|
|
3026
3101
|
return nil
|
3027
3102
|
end
|
3028
3103
|
plumbing = V1::KubernetesBasicAuth.new()
|
3104
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3029
3105
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3030
3106
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3031
3107
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3061,6 +3137,7 @@ module SDM
|
|
3061
3137
|
return nil
|
3062
3138
|
end
|
3063
3139
|
porcelain = KubernetesServiceAccount.new()
|
3140
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3064
3141
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3065
3142
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3066
3143
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3079,6 +3156,7 @@ module SDM
|
|
3079
3156
|
return nil
|
3080
3157
|
end
|
3081
3158
|
plumbing = V1::KubernetesServiceAccount.new()
|
3159
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3082
3160
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3083
3161
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3084
3162
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3113,6 +3191,7 @@ module SDM
|
|
3113
3191
|
return nil
|
3114
3192
|
end
|
3115
3193
|
porcelain = KubernetesServiceAccountUserImpersonation.new()
|
3194
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3116
3195
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3117
3196
|
porcelain.healthcheck_namespace = (plumbing.healthcheck_namespace)
|
3118
3197
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3131,6 +3210,7 @@ module SDM
|
|
3131
3210
|
return nil
|
3132
3211
|
end
|
3133
3212
|
plumbing = V1::KubernetesServiceAccountUserImpersonation.new()
|
3213
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3134
3214
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3135
3215
|
plumbing.healthcheck_namespace = (porcelain.healthcheck_namespace)
|
3136
3216
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3165,6 +3245,7 @@ module SDM
|
|
3165
3245
|
return nil
|
3166
3246
|
end
|
3167
3247
|
porcelain = KubernetesUserImpersonation.new()
|
3248
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3168
3249
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3169
3250
|
porcelain.client_certificate = (plumbing.client_certificate)
|
3170
3251
|
porcelain.client_key = (plumbing.client_key)
|
@@ -3185,6 +3266,7 @@ module SDM
|
|
3185
3266
|
return nil
|
3186
3267
|
end
|
3187
3268
|
plumbing = V1::KubernetesUserImpersonation.new()
|
3269
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3188
3270
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3189
3271
|
plumbing.client_certificate = (porcelain.client_certificate)
|
3190
3272
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3216,11 +3298,78 @@ module SDM
|
|
3216
3298
|
end
|
3217
3299
|
items
|
3218
3300
|
end
|
3301
|
+
def self.convert_mtls_mysql_to_porcelain(plumbing)
|
3302
|
+
if plumbing == nil
|
3303
|
+
return nil
|
3304
|
+
end
|
3305
|
+
porcelain = MTLSMysql.new()
|
3306
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3307
|
+
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3308
|
+
porcelain.client_certificate = (plumbing.client_certificate)
|
3309
|
+
porcelain.client_key = (plumbing.client_key)
|
3310
|
+
porcelain.database = (plumbing.database)
|
3311
|
+
porcelain.egress_filter = (plumbing.egress_filter)
|
3312
|
+
porcelain.healthy = (plumbing.healthy)
|
3313
|
+
porcelain.hostname = (plumbing.hostname)
|
3314
|
+
porcelain.id = (plumbing.id)
|
3315
|
+
porcelain.name = (plumbing.name)
|
3316
|
+
porcelain.password = (plumbing.password)
|
3317
|
+
porcelain.port = (plumbing.port)
|
3318
|
+
porcelain.port_override = (plumbing.port_override)
|
3319
|
+
porcelain.secret_store_id = (plumbing.secret_store_id)
|
3320
|
+
porcelain.server_name = (plumbing.server_name)
|
3321
|
+
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
3322
|
+
porcelain.username = (plumbing.username)
|
3323
|
+
porcelain
|
3324
|
+
end
|
3325
|
+
|
3326
|
+
def self.convert_mtls_mysql_to_plumbing(porcelain)
|
3327
|
+
if porcelain == nil
|
3328
|
+
return nil
|
3329
|
+
end
|
3330
|
+
plumbing = V1::MTLSMysql.new()
|
3331
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3332
|
+
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3333
|
+
plumbing.client_certificate = (porcelain.client_certificate)
|
3334
|
+
plumbing.client_key = (porcelain.client_key)
|
3335
|
+
plumbing.database = (porcelain.database)
|
3336
|
+
plumbing.egress_filter = (porcelain.egress_filter)
|
3337
|
+
plumbing.healthy = (porcelain.healthy)
|
3338
|
+
plumbing.hostname = (porcelain.hostname)
|
3339
|
+
plumbing.id = (porcelain.id)
|
3340
|
+
plumbing.name = (porcelain.name)
|
3341
|
+
plumbing.password = (porcelain.password)
|
3342
|
+
plumbing.port = (porcelain.port)
|
3343
|
+
plumbing.port_override = (porcelain.port_override)
|
3344
|
+
plumbing.secret_store_id = (porcelain.secret_store_id)
|
3345
|
+
plumbing.server_name = (porcelain.server_name)
|
3346
|
+
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
3347
|
+
plumbing.username = (porcelain.username)
|
3348
|
+
plumbing
|
3349
|
+
end
|
3350
|
+
def self.convert_repeated_mtls_mysql_to_plumbing(porcelains)
|
3351
|
+
items = Array.new
|
3352
|
+
porcelains.each do |porcelain|
|
3353
|
+
plumbing = convert_mtls_mysql_to_plumbing(porcelain)
|
3354
|
+
items.append(plumbing)
|
3355
|
+
end
|
3356
|
+
items
|
3357
|
+
end
|
3358
|
+
|
3359
|
+
def self.convert_repeated_mtls_mysql_to_porcelain(plumbings)
|
3360
|
+
items = Array.new
|
3361
|
+
plumbings.each do |plumbing|
|
3362
|
+
porcelain = convert_mtls_mysql_to_porcelain(plumbing)
|
3363
|
+
items.append(porcelain)
|
3364
|
+
end
|
3365
|
+
items
|
3366
|
+
end
|
3219
3367
|
def self.convert_mtls_postgres_to_porcelain(plumbing)
|
3220
3368
|
if plumbing == nil
|
3221
3369
|
return nil
|
3222
3370
|
end
|
3223
3371
|
porcelain = MTLSPostgres.new()
|
3372
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3224
3373
|
porcelain.certificate_authority = (plumbing.certificate_authority)
|
3225
3374
|
porcelain.client_certificate = (plumbing.client_certificate)
|
3226
3375
|
porcelain.client_key = (plumbing.client_key)
|
@@ -3246,6 +3395,7 @@ module SDM
|
|
3246
3395
|
return nil
|
3247
3396
|
end
|
3248
3397
|
plumbing = V1::MTLSPostgres.new()
|
3398
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3249
3399
|
plumbing.certificate_authority = (porcelain.certificate_authority)
|
3250
3400
|
plumbing.client_certificate = (porcelain.client_certificate)
|
3251
3401
|
plumbing.client_key = (porcelain.client_key)
|
@@ -3287,6 +3437,7 @@ module SDM
|
|
3287
3437
|
return nil
|
3288
3438
|
end
|
3289
3439
|
porcelain = Maria.new()
|
3440
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3290
3441
|
porcelain.database = (plumbing.database)
|
3291
3442
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3292
3443
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3307,6 +3458,7 @@ module SDM
|
|
3307
3458
|
return nil
|
3308
3459
|
end
|
3309
3460
|
plumbing = V1::Maria.new()
|
3461
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3310
3462
|
plumbing.database = (porcelain.database)
|
3311
3463
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3312
3464
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3343,6 +3495,7 @@ module SDM
|
|
3343
3495
|
return nil
|
3344
3496
|
end
|
3345
3497
|
porcelain = Memcached.new()
|
3498
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3346
3499
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3347
3500
|
porcelain.healthy = (plumbing.healthy)
|
3348
3501
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3360,6 +3513,7 @@ module SDM
|
|
3360
3513
|
return nil
|
3361
3514
|
end
|
3362
3515
|
plumbing = V1::Memcached.new()
|
3516
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3363
3517
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3364
3518
|
plumbing.healthy = (porcelain.healthy)
|
3365
3519
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3393,6 +3547,7 @@ module SDM
|
|
3393
3547
|
return nil
|
3394
3548
|
end
|
3395
3549
|
porcelain = Memsql.new()
|
3550
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3396
3551
|
porcelain.database = (plumbing.database)
|
3397
3552
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3398
3553
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3413,6 +3568,7 @@ module SDM
|
|
3413
3568
|
return nil
|
3414
3569
|
end
|
3415
3570
|
plumbing = V1::Memsql.new()
|
3571
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3416
3572
|
plumbing.database = (porcelain.database)
|
3417
3573
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3418
3574
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3450,6 +3606,7 @@ module SDM
|
|
3450
3606
|
end
|
3451
3607
|
porcelain = MongoHost.new()
|
3452
3608
|
porcelain.auth_database = (plumbing.auth_database)
|
3609
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3453
3610
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3454
3611
|
porcelain.healthy = (plumbing.healthy)
|
3455
3612
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3471,6 +3628,7 @@ module SDM
|
|
3471
3628
|
end
|
3472
3629
|
plumbing = V1::MongoHost.new()
|
3473
3630
|
plumbing.auth_database = (porcelain.auth_database)
|
3631
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3474
3632
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3475
3633
|
plumbing.healthy = (porcelain.healthy)
|
3476
3634
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3508,6 +3666,7 @@ module SDM
|
|
3508
3666
|
end
|
3509
3667
|
porcelain = MongoLegacyHost.new()
|
3510
3668
|
porcelain.auth_database = (plumbing.auth_database)
|
3669
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3511
3670
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3512
3671
|
porcelain.healthy = (plumbing.healthy)
|
3513
3672
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3530,6 +3689,7 @@ module SDM
|
|
3530
3689
|
end
|
3531
3690
|
plumbing = V1::MongoLegacyHost.new()
|
3532
3691
|
plumbing.auth_database = (porcelain.auth_database)
|
3692
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3533
3693
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3534
3694
|
plumbing.healthy = (porcelain.healthy)
|
3535
3695
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3568,6 +3728,7 @@ module SDM
|
|
3568
3728
|
end
|
3569
3729
|
porcelain = MongoLegacyReplicaset.new()
|
3570
3730
|
porcelain.auth_database = (plumbing.auth_database)
|
3731
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3571
3732
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
3572
3733
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3573
3734
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3591,6 +3752,7 @@ module SDM
|
|
3591
3752
|
end
|
3592
3753
|
plumbing = V1::MongoLegacyReplicaset.new()
|
3593
3754
|
plumbing.auth_database = (porcelain.auth_database)
|
3755
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3594
3756
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
3595
3757
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3596
3758
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3630,6 +3792,7 @@ module SDM
|
|
3630
3792
|
end
|
3631
3793
|
porcelain = MongoReplicaSet.new()
|
3632
3794
|
porcelain.auth_database = (plumbing.auth_database)
|
3795
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3633
3796
|
porcelain.connect_to_replica = (plumbing.connect_to_replica)
|
3634
3797
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3635
3798
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3653,6 +3816,7 @@ module SDM
|
|
3653
3816
|
end
|
3654
3817
|
plumbing = V1::MongoReplicaSet.new()
|
3655
3818
|
plumbing.auth_database = (porcelain.auth_database)
|
3819
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3656
3820
|
plumbing.connect_to_replica = (porcelain.connect_to_replica)
|
3657
3821
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3658
3822
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3692,6 +3856,7 @@ module SDM
|
|
3692
3856
|
end
|
3693
3857
|
porcelain = MongoShardedCluster.new()
|
3694
3858
|
porcelain.auth_database = (plumbing.auth_database)
|
3859
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3695
3860
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3696
3861
|
porcelain.healthy = (plumbing.healthy)
|
3697
3862
|
porcelain.hostname = (plumbing.hostname)
|
@@ -3712,6 +3877,7 @@ module SDM
|
|
3712
3877
|
end
|
3713
3878
|
plumbing = V1::MongoShardedCluster.new()
|
3714
3879
|
plumbing.auth_database = (porcelain.auth_database)
|
3880
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3715
3881
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3716
3882
|
plumbing.healthy = (porcelain.healthy)
|
3717
3883
|
plumbing.hostname = (porcelain.hostname)
|
@@ -3747,6 +3913,7 @@ module SDM
|
|
3747
3913
|
return nil
|
3748
3914
|
end
|
3749
3915
|
porcelain = Mysql.new()
|
3916
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3750
3917
|
porcelain.database = (plumbing.database)
|
3751
3918
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3752
3919
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3767,6 +3934,7 @@ module SDM
|
|
3767
3934
|
return nil
|
3768
3935
|
end
|
3769
3936
|
plumbing = V1::Mysql.new()
|
3937
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3770
3938
|
plumbing.database = (porcelain.database)
|
3771
3939
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3772
3940
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3803,6 +3971,7 @@ module SDM
|
|
3803
3971
|
return nil
|
3804
3972
|
end
|
3805
3973
|
porcelain = Neptune.new()
|
3974
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3806
3975
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3807
3976
|
porcelain.endpoint = (plumbing.endpoint)
|
3808
3977
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3820,6 +3989,7 @@ module SDM
|
|
3820
3989
|
return nil
|
3821
3990
|
end
|
3822
3991
|
plumbing = V1::Neptune.new()
|
3992
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3823
3993
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3824
3994
|
plumbing.endpoint = (porcelain.endpoint)
|
3825
3995
|
plumbing.healthy = (porcelain.healthy)
|
@@ -3854,6 +4024,7 @@ module SDM
|
|
3854
4024
|
end
|
3855
4025
|
porcelain = NeptuneIAM.new()
|
3856
4026
|
porcelain.access_key = (plumbing.access_key)
|
4027
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
3857
4028
|
porcelain.egress_filter = (plumbing.egress_filter)
|
3858
4029
|
porcelain.endpoint = (plumbing.endpoint)
|
3859
4030
|
porcelain.healthy = (plumbing.healthy)
|
@@ -3876,6 +4047,7 @@ module SDM
|
|
3876
4047
|
end
|
3877
4048
|
plumbing = V1::NeptuneIAM.new()
|
3878
4049
|
plumbing.access_key = (porcelain.access_key)
|
4050
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
3879
4051
|
plumbing.egress_filter = (porcelain.egress_filter)
|
3880
4052
|
plumbing.endpoint = (porcelain.endpoint)
|
3881
4053
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4107,6 +4279,7 @@ module SDM
|
|
4107
4279
|
return nil
|
4108
4280
|
end
|
4109
4281
|
porcelain = Oracle.new()
|
4282
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4110
4283
|
porcelain.database = (plumbing.database)
|
4111
4284
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4112
4285
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4128,6 +4301,7 @@ module SDM
|
|
4128
4301
|
return nil
|
4129
4302
|
end
|
4130
4303
|
plumbing = V1::Oracle.new()
|
4304
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4131
4305
|
plumbing.database = (porcelain.database)
|
4132
4306
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4133
4307
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4165,6 +4339,7 @@ module SDM
|
|
4165
4339
|
return nil
|
4166
4340
|
end
|
4167
4341
|
porcelain = Postgres.new()
|
4342
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4168
4343
|
porcelain.database = (plumbing.database)
|
4169
4344
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4170
4345
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4186,6 +4361,7 @@ module SDM
|
|
4186
4361
|
return nil
|
4187
4362
|
end
|
4188
4363
|
plumbing = V1::Postgres.new()
|
4364
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4189
4365
|
plumbing.database = (porcelain.database)
|
4190
4366
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4191
4367
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4223,6 +4399,7 @@ module SDM
|
|
4223
4399
|
return nil
|
4224
4400
|
end
|
4225
4401
|
porcelain = Presto.new()
|
4402
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4226
4403
|
porcelain.database = (plumbing.database)
|
4227
4404
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4228
4405
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4244,6 +4421,7 @@ module SDM
|
|
4244
4421
|
return nil
|
4245
4422
|
end
|
4246
4423
|
plumbing = V1::Presto.new()
|
4424
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4247
4425
|
plumbing.database = (porcelain.database)
|
4248
4426
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4249
4427
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4281,6 +4459,7 @@ module SDM
|
|
4281
4459
|
return nil
|
4282
4460
|
end
|
4283
4461
|
porcelain = RDP.new()
|
4462
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4284
4463
|
porcelain.downgrade_nla_connections = (plumbing.downgrade_nla_connections)
|
4285
4464
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4286
4465
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4301,6 +4480,7 @@ module SDM
|
|
4301
4480
|
return nil
|
4302
4481
|
end
|
4303
4482
|
plumbing = V1::RDP.new()
|
4483
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4304
4484
|
plumbing.downgrade_nla_connections = (porcelain.downgrade_nla_connections)
|
4305
4485
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4306
4486
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4337,6 +4517,7 @@ module SDM
|
|
4337
4517
|
return nil
|
4338
4518
|
end
|
4339
4519
|
porcelain = RabbitMQAMQP091.new()
|
4520
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4340
4521
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4341
4522
|
porcelain.healthy = (plumbing.healthy)
|
4342
4523
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4357,6 +4538,7 @@ module SDM
|
|
4357
4538
|
return nil
|
4358
4539
|
end
|
4359
4540
|
plumbing = V1::RabbitMQAMQP091.new()
|
4541
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4360
4542
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4361
4543
|
plumbing.healthy = (porcelain.healthy)
|
4362
4544
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4433,6 +4615,7 @@ module SDM
|
|
4433
4615
|
return nil
|
4434
4616
|
end
|
4435
4617
|
porcelain = RawTCP.new()
|
4618
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4436
4619
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4437
4620
|
porcelain.healthy = (plumbing.healthy)
|
4438
4621
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4450,6 +4633,7 @@ module SDM
|
|
4450
4633
|
return nil
|
4451
4634
|
end
|
4452
4635
|
plumbing = V1::RawTCP.new()
|
4636
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4453
4637
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4454
4638
|
plumbing.healthy = (porcelain.healthy)
|
4455
4639
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4483,6 +4667,7 @@ module SDM
|
|
4483
4667
|
return nil
|
4484
4668
|
end
|
4485
4669
|
porcelain = Redis.new()
|
4670
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4486
4671
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4487
4672
|
porcelain.healthy = (plumbing.healthy)
|
4488
4673
|
porcelain.hostname = (plumbing.hostname)
|
@@ -4501,6 +4686,7 @@ module SDM
|
|
4501
4686
|
return nil
|
4502
4687
|
end
|
4503
4688
|
plumbing = V1::Redis.new()
|
4689
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4504
4690
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4505
4691
|
plumbing.healthy = (porcelain.healthy)
|
4506
4692
|
plumbing.hostname = (porcelain.hostname)
|
@@ -4535,6 +4721,7 @@ module SDM
|
|
4535
4721
|
return nil
|
4536
4722
|
end
|
4537
4723
|
porcelain = Redshift.new()
|
4724
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
4538
4725
|
porcelain.database = (plumbing.database)
|
4539
4726
|
porcelain.egress_filter = (plumbing.egress_filter)
|
4540
4727
|
porcelain.healthy = (plumbing.healthy)
|
@@ -4556,6 +4743,7 @@ module SDM
|
|
4556
4743
|
return nil
|
4557
4744
|
end
|
4558
4745
|
plumbing = V1::Redshift.new()
|
4746
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
4559
4747
|
plumbing.database = (porcelain.database)
|
4560
4748
|
plumbing.egress_filter = (porcelain.egress_filter)
|
4561
4749
|
plumbing.healthy = (porcelain.healthy)
|
@@ -4782,6 +4970,9 @@ module SDM
|
|
4782
4970
|
if porcelain.instance_of? MongoShardedCluster
|
4783
4971
|
plumbing.mongo_sharded_cluster = convert_mongo_sharded_cluster_to_plumbing(porcelain)
|
4784
4972
|
end
|
4973
|
+
if porcelain.instance_of? MTLSMysql
|
4974
|
+
plumbing.mtls_mysql = convert_mtls_mysql_to_plumbing(porcelain)
|
4975
|
+
end
|
4785
4976
|
if porcelain.instance_of? MTLSPostgres
|
4786
4977
|
plumbing.mtls_postgres = convert_mtls_postgres_to_plumbing(porcelain)
|
4787
4978
|
end
|
@@ -4999,6 +5190,9 @@ module SDM
|
|
4999
5190
|
if plumbing.mongo_sharded_cluster != nil
|
5000
5191
|
return convert_mongo_sharded_cluster_to_porcelain(plumbing.mongo_sharded_cluster)
|
5001
5192
|
end
|
5193
|
+
if plumbing.mtls_mysql != nil
|
5194
|
+
return convert_mtls_mysql_to_porcelain(plumbing.mtls_mysql)
|
5195
|
+
end
|
5002
5196
|
if plumbing.mtls_postgres != nil
|
5003
5197
|
return convert_mtls_postgres_to_porcelain(plumbing.mtls_postgres)
|
5004
5198
|
end
|
@@ -5727,6 +5921,7 @@ module SDM
|
|
5727
5921
|
return nil
|
5728
5922
|
end
|
5729
5923
|
porcelain = SQLServer.new()
|
5924
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5730
5925
|
porcelain.database = (plumbing.database)
|
5731
5926
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5732
5927
|
porcelain.healthy = (plumbing.healthy)
|
@@ -5749,6 +5944,7 @@ module SDM
|
|
5749
5944
|
return nil
|
5750
5945
|
end
|
5751
5946
|
plumbing = V1::SQLServer.new()
|
5947
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5752
5948
|
plumbing.database = (porcelain.database)
|
5753
5949
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5754
5950
|
plumbing.healthy = (porcelain.healthy)
|
@@ -5788,6 +5984,7 @@ module SDM
|
|
5788
5984
|
end
|
5789
5985
|
porcelain = SSH.new()
|
5790
5986
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
5987
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5791
5988
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5792
5989
|
porcelain.healthy = (plumbing.healthy)
|
5793
5990
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5795,6 +5992,7 @@ module SDM
|
|
5795
5992
|
porcelain.name = (plumbing.name)
|
5796
5993
|
porcelain.port = (plumbing.port)
|
5797
5994
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
5995
|
+
porcelain.port_override = (plumbing.port_override)
|
5798
5996
|
porcelain.public_key = (plumbing.public_key)
|
5799
5997
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5800
5998
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
@@ -5808,6 +6006,7 @@ module SDM
|
|
5808
6006
|
end
|
5809
6007
|
plumbing = V1::SSH.new()
|
5810
6008
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6009
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5811
6010
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5812
6011
|
plumbing.healthy = (porcelain.healthy)
|
5813
6012
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5815,6 +6014,7 @@ module SDM
|
|
5815
6014
|
plumbing.name = (porcelain.name)
|
5816
6015
|
plumbing.port = (porcelain.port)
|
5817
6016
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6017
|
+
plumbing.port_override = (porcelain.port_override)
|
5818
6018
|
plumbing.public_key = (porcelain.public_key)
|
5819
6019
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
5820
6020
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
@@ -5844,6 +6044,7 @@ module SDM
|
|
5844
6044
|
end
|
5845
6045
|
porcelain = SSHCert.new()
|
5846
6046
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
6047
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5847
6048
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5848
6049
|
porcelain.healthy = (plumbing.healthy)
|
5849
6050
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5851,6 +6052,7 @@ module SDM
|
|
5851
6052
|
porcelain.name = (plumbing.name)
|
5852
6053
|
porcelain.port = (plumbing.port)
|
5853
6054
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
6055
|
+
porcelain.port_override = (plumbing.port_override)
|
5854
6056
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5855
6057
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
5856
6058
|
porcelain.username = (plumbing.username)
|
@@ -5863,6 +6065,7 @@ module SDM
|
|
5863
6065
|
end
|
5864
6066
|
plumbing = V1::SSHCert.new()
|
5865
6067
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6068
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5866
6069
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5867
6070
|
plumbing.healthy = (porcelain.healthy)
|
5868
6071
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5870,6 +6073,7 @@ module SDM
|
|
5870
6073
|
plumbing.name = (porcelain.name)
|
5871
6074
|
plumbing.port = (porcelain.port)
|
5872
6075
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6076
|
+
plumbing.port_override = (porcelain.port_override)
|
5873
6077
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
5874
6078
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
5875
6079
|
plumbing.username = (porcelain.username)
|
@@ -5898,6 +6102,7 @@ module SDM
|
|
5898
6102
|
end
|
5899
6103
|
porcelain = SSHCustomerKey.new()
|
5900
6104
|
porcelain.allow_deprecated_key_exchanges = (plumbing.allow_deprecated_key_exchanges)
|
6105
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
5901
6106
|
porcelain.egress_filter = (plumbing.egress_filter)
|
5902
6107
|
porcelain.healthy = (plumbing.healthy)
|
5903
6108
|
porcelain.hostname = (plumbing.hostname)
|
@@ -5905,6 +6110,7 @@ module SDM
|
|
5905
6110
|
porcelain.name = (plumbing.name)
|
5906
6111
|
porcelain.port = (plumbing.port)
|
5907
6112
|
porcelain.port_forwarding = (plumbing.port_forwarding)
|
6113
|
+
porcelain.port_override = (plumbing.port_override)
|
5908
6114
|
porcelain.private_key = (plumbing.private_key)
|
5909
6115
|
porcelain.secret_store_id = (plumbing.secret_store_id)
|
5910
6116
|
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
|
@@ -5918,6 +6124,7 @@ module SDM
|
|
5918
6124
|
end
|
5919
6125
|
plumbing = V1::SSHCustomerKey.new()
|
5920
6126
|
plumbing.allow_deprecated_key_exchanges = (porcelain.allow_deprecated_key_exchanges)
|
6127
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
5921
6128
|
plumbing.egress_filter = (porcelain.egress_filter)
|
5922
6129
|
plumbing.healthy = (porcelain.healthy)
|
5923
6130
|
plumbing.hostname = (porcelain.hostname)
|
@@ -5925,6 +6132,7 @@ module SDM
|
|
5925
6132
|
plumbing.name = (porcelain.name)
|
5926
6133
|
plumbing.port = (porcelain.port)
|
5927
6134
|
plumbing.port_forwarding = (porcelain.port_forwarding)
|
6135
|
+
plumbing.port_override = (porcelain.port_override)
|
5928
6136
|
plumbing.private_key = (porcelain.private_key)
|
5929
6137
|
plumbing.secret_store_id = (porcelain.secret_store_id)
|
5930
6138
|
plumbing.tags = convert_tags_to_plumbing(porcelain.tags)
|
@@ -6209,6 +6417,7 @@ module SDM
|
|
6209
6417
|
return nil
|
6210
6418
|
end
|
6211
6419
|
porcelain = SingleStore.new()
|
6420
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6212
6421
|
porcelain.database = (plumbing.database)
|
6213
6422
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6214
6423
|
porcelain.healthy = (plumbing.healthy)
|
@@ -6229,6 +6438,7 @@ module SDM
|
|
6229
6438
|
return nil
|
6230
6439
|
end
|
6231
6440
|
plumbing = V1::SingleStore.new()
|
6441
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6232
6442
|
plumbing.database = (porcelain.database)
|
6233
6443
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6234
6444
|
plumbing.healthy = (porcelain.healthy)
|
@@ -6265,6 +6475,7 @@ module SDM
|
|
6265
6475
|
return nil
|
6266
6476
|
end
|
6267
6477
|
porcelain = Snowflake.new()
|
6478
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6268
6479
|
porcelain.database = (plumbing.database)
|
6269
6480
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6270
6481
|
porcelain.healthy = (plumbing.healthy)
|
@@ -6285,6 +6496,7 @@ module SDM
|
|
6285
6496
|
return nil
|
6286
6497
|
end
|
6287
6498
|
plumbing = V1::Snowflake.new()
|
6499
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6288
6500
|
plumbing.database = (porcelain.database)
|
6289
6501
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6290
6502
|
plumbing.healthy = (porcelain.healthy)
|
@@ -6321,6 +6533,7 @@ module SDM
|
|
6321
6533
|
return nil
|
6322
6534
|
end
|
6323
6535
|
porcelain = Sybase.new()
|
6536
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6324
6537
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6325
6538
|
porcelain.healthy = (plumbing.healthy)
|
6326
6539
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6340,6 +6553,7 @@ module SDM
|
|
6340
6553
|
return nil
|
6341
6554
|
end
|
6342
6555
|
plumbing = V1::Sybase.new()
|
6556
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6343
6557
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6344
6558
|
plumbing.healthy = (porcelain.healthy)
|
6345
6559
|
plumbing.hostname = (porcelain.hostname)
|
@@ -6375,6 +6589,7 @@ module SDM
|
|
6375
6589
|
return nil
|
6376
6590
|
end
|
6377
6591
|
porcelain = SybaseIQ.new()
|
6592
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6378
6593
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6379
6594
|
porcelain.healthy = (plumbing.healthy)
|
6380
6595
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6394,6 +6609,7 @@ module SDM
|
|
6394
6609
|
return nil
|
6395
6610
|
end
|
6396
6611
|
plumbing = V1::SybaseIQ.new()
|
6612
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6397
6613
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6398
6614
|
plumbing.healthy = (porcelain.healthy)
|
6399
6615
|
plumbing.hostname = (porcelain.hostname)
|
@@ -6465,6 +6681,7 @@ module SDM
|
|
6465
6681
|
return nil
|
6466
6682
|
end
|
6467
6683
|
porcelain = Teradata.new()
|
6684
|
+
porcelain.bind_interface = (plumbing.bind_interface)
|
6468
6685
|
porcelain.egress_filter = (plumbing.egress_filter)
|
6469
6686
|
porcelain.healthy = (plumbing.healthy)
|
6470
6687
|
porcelain.hostname = (plumbing.hostname)
|
@@ -6484,6 +6701,7 @@ module SDM
|
|
6484
6701
|
return nil
|
6485
6702
|
end
|
6486
6703
|
plumbing = V1::Teradata.new()
|
6704
|
+
plumbing.bind_interface = (porcelain.bind_interface)
|
6487
6705
|
plumbing.egress_filter = (porcelain.egress_filter)
|
6488
6706
|
plumbing.healthy = (porcelain.healthy)
|
6489
6707
|
plumbing.hostname = (porcelain.hostname)
|