strongdm 2.0.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,6 +17,9 @@
17
17
 
18
18
  module SDM
19
19
  class AKS
20
+ # Bind interface
21
+ attr_accessor :bind_interface
22
+
20
23
  attr_accessor :certificate_authority
21
24
 
22
25
  attr_accessor :client_certificate
@@ -42,6 +45,7 @@ module SDM
42
45
  attr_accessor :tags
43
46
 
44
47
  def initialize(
48
+ bind_interface: nil,
45
49
  certificate_authority: nil,
46
50
  client_certificate: nil,
47
51
  client_key: nil,
@@ -55,6 +59,7 @@ module SDM
55
59
  secret_store_id: nil,
56
60
  tags: nil
57
61
  )
62
+ @bind_interface = bind_interface == nil ? "" : bind_interface
58
63
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
59
64
  @client_certificate = client_certificate == nil ? "" : client_certificate
60
65
  @client_key = client_key == nil ? "" : client_key
@@ -79,6 +84,8 @@ module SDM
79
84
  end
80
85
 
81
86
  class AKSBasicAuth
87
+ # Bind interface
88
+ attr_accessor :bind_interface
82
89
  # A filter applied to the routing logic to pin datasource to nodes.
83
90
  attr_accessor :egress_filter
84
91
  # The path used to check the health of your connection. Defaults to `default`.
@@ -103,6 +110,7 @@ module SDM
103
110
  attr_accessor :username
104
111
 
105
112
  def initialize(
113
+ bind_interface: nil,
106
114
  egress_filter: nil,
107
115
  healthcheck_namespace: nil,
108
116
  healthy: nil,
@@ -115,6 +123,7 @@ module SDM
115
123
  tags: nil,
116
124
  username: nil
117
125
  )
126
+ @bind_interface = bind_interface == nil ? "" : bind_interface
118
127
  @egress_filter = egress_filter == nil ? "" : egress_filter
119
128
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
120
129
  @healthy = healthy == nil ? false : healthy
@@ -138,6 +147,8 @@ module SDM
138
147
  end
139
148
 
140
149
  class AKSServiceAccount
150
+ # Bind interface
151
+ attr_accessor :bind_interface
141
152
  # A filter applied to the routing logic to pin datasource to nodes.
142
153
  attr_accessor :egress_filter
143
154
  # The path used to check the health of your connection. Defaults to `default`.
@@ -160,6 +171,7 @@ module SDM
160
171
  attr_accessor :token
161
172
 
162
173
  def initialize(
174
+ bind_interface: nil,
163
175
  egress_filter: nil,
164
176
  healthcheck_namespace: nil,
165
177
  healthy: nil,
@@ -171,6 +183,7 @@ module SDM
171
183
  tags: nil,
172
184
  token: nil
173
185
  )
186
+ @bind_interface = bind_interface == nil ? "" : bind_interface
174
187
  @egress_filter = egress_filter == nil ? "" : egress_filter
175
188
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
176
189
  @healthy = healthy == nil ? false : healthy
@@ -193,6 +206,8 @@ module SDM
193
206
  end
194
207
 
195
208
  class AKSServiceAccountUserImpersonation
209
+ # Bind interface
210
+ attr_accessor :bind_interface
196
211
  # A filter applied to the routing logic to pin datasource to nodes.
197
212
  attr_accessor :egress_filter
198
213
  # The path used to check the health of your connection. Defaults to `default`.
@@ -215,6 +230,7 @@ module SDM
215
230
  attr_accessor :token
216
231
 
217
232
  def initialize(
233
+ bind_interface: nil,
218
234
  egress_filter: nil,
219
235
  healthcheck_namespace: nil,
220
236
  healthy: nil,
@@ -226,6 +242,7 @@ module SDM
226
242
  tags: nil,
227
243
  token: nil
228
244
  )
245
+ @bind_interface = bind_interface == nil ? "" : bind_interface
229
246
  @egress_filter = egress_filter == nil ? "" : egress_filter
230
247
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
231
248
  @healthy = healthy == nil ? false : healthy
@@ -248,6 +265,9 @@ module SDM
248
265
  end
249
266
 
250
267
  class AKSUserImpersonation
268
+ # Bind interface
269
+ attr_accessor :bind_interface
270
+
251
271
  attr_accessor :certificate_authority
252
272
 
253
273
  attr_accessor :client_certificate
@@ -273,6 +293,7 @@ module SDM
273
293
  attr_accessor :tags
274
294
 
275
295
  def initialize(
296
+ bind_interface: nil,
276
297
  certificate_authority: nil,
277
298
  client_certificate: nil,
278
299
  client_key: nil,
@@ -286,6 +307,7 @@ module SDM
286
307
  secret_store_id: nil,
287
308
  tags: nil
288
309
  )
310
+ @bind_interface = bind_interface == nil ? "" : bind_interface
289
311
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
290
312
  @client_certificate = client_certificate == nil ? "" : client_certificate
291
313
  @client_key = client_key == nil ? "" : client_key
@@ -311,6 +333,8 @@ module SDM
311
333
 
312
334
  class AWS
313
335
  attr_accessor :access_key
336
+ # Bind interface
337
+ attr_accessor :bind_interface
314
338
  # A filter applied to the routing logic to pin datasource to nodes.
315
339
  attr_accessor :egress_filter
316
340
 
@@ -334,6 +358,7 @@ module SDM
334
358
 
335
359
  def initialize(
336
360
  access_key: nil,
361
+ bind_interface: nil,
337
362
  egress_filter: nil,
338
363
  healthcheck_region: nil,
339
364
  healthy: nil,
@@ -346,6 +371,7 @@ module SDM
346
371
  tags: nil
347
372
  )
348
373
  @access_key = access_key == nil ? "" : access_key
374
+ @bind_interface = bind_interface == nil ? "" : bind_interface
349
375
  @egress_filter = egress_filter == nil ? "" : egress_filter
350
376
  @healthcheck_region = healthcheck_region == nil ? "" : healthcheck_region
351
377
  @healthy = healthy == nil ? false : healthy
@@ -740,6 +766,8 @@ module SDM
740
766
 
741
767
  class AmazonEKS
742
768
  attr_accessor :access_key
769
+ # Bind interface
770
+ attr_accessor :bind_interface
743
771
 
744
772
  attr_accessor :certificate_authority
745
773
 
@@ -771,6 +799,7 @@ module SDM
771
799
 
772
800
  def initialize(
773
801
  access_key: nil,
802
+ bind_interface: nil,
774
803
  certificate_authority: nil,
775
804
  cluster_name: nil,
776
805
  egress_filter: nil,
@@ -787,6 +816,7 @@ module SDM
787
816
  tags: nil
788
817
  )
789
818
  @access_key = access_key == nil ? "" : access_key
819
+ @bind_interface = bind_interface == nil ? "" : bind_interface
790
820
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
791
821
  @cluster_name = cluster_name == nil ? "" : cluster_name
792
822
  @egress_filter = egress_filter == nil ? "" : egress_filter
@@ -814,6 +844,8 @@ module SDM
814
844
 
815
845
  class AmazonEKSUserImpersonation
816
846
  attr_accessor :access_key
847
+ # Bind interface
848
+ attr_accessor :bind_interface
817
849
 
818
850
  attr_accessor :certificate_authority
819
851
 
@@ -845,6 +877,7 @@ module SDM
845
877
 
846
878
  def initialize(
847
879
  access_key: nil,
880
+ bind_interface: nil,
848
881
  certificate_authority: nil,
849
882
  cluster_name: nil,
850
883
  egress_filter: nil,
@@ -861,6 +894,7 @@ module SDM
861
894
  tags: nil
862
895
  )
863
896
  @access_key = access_key == nil ? "" : access_key
897
+ @bind_interface = bind_interface == nil ? "" : bind_interface
864
898
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
865
899
  @cluster_name = cluster_name == nil ? "" : cluster_name
866
900
  @egress_filter = egress_filter == nil ? "" : egress_filter
@@ -888,6 +922,8 @@ module SDM
888
922
 
889
923
  class AmazonES
890
924
  attr_accessor :access_key
925
+ # Bind interface
926
+ attr_accessor :bind_interface
891
927
  # A filter applied to the routing logic to pin datasource to nodes.
892
928
  attr_accessor :egress_filter
893
929
 
@@ -915,6 +951,7 @@ module SDM
915
951
 
916
952
  def initialize(
917
953
  access_key: nil,
954
+ bind_interface: nil,
918
955
  egress_filter: nil,
919
956
  endpoint: nil,
920
957
  healthy: nil,
@@ -929,6 +966,7 @@ module SDM
929
966
  tags: nil
930
967
  )
931
968
  @access_key = access_key == nil ? "" : access_key
969
+ @bind_interface = bind_interface == nil ? "" : bind_interface
932
970
  @egress_filter = egress_filter == nil ? "" : egress_filter
933
971
  @endpoint = endpoint == nil ? "" : endpoint
934
972
  @healthy = healthy == nil ? false : healthy
@@ -953,6 +991,8 @@ module SDM
953
991
  end
954
992
 
955
993
  class AmazonMQAMQP091
994
+ # Bind interface
995
+ attr_accessor :bind_interface
956
996
  # A filter applied to the routing logic to pin datasource to nodes.
957
997
  attr_accessor :egress_filter
958
998
  # True if the datasource is reachable and the credentials are valid.
@@ -979,6 +1019,7 @@ module SDM
979
1019
  attr_accessor :username
980
1020
 
981
1021
  def initialize(
1022
+ bind_interface: nil,
982
1023
  egress_filter: nil,
983
1024
  healthy: nil,
984
1025
  hostname: nil,
@@ -992,6 +1033,7 @@ module SDM
992
1033
  tls_required: nil,
993
1034
  username: nil
994
1035
  )
1036
+ @bind_interface = bind_interface == nil ? "" : bind_interface
995
1037
  @egress_filter = egress_filter == nil ? "" : egress_filter
996
1038
  @healthy = healthy == nil ? false : healthy
997
1039
  @hostname = hostname == nil ? "" : hostname
@@ -1017,6 +1059,8 @@ module SDM
1017
1059
 
1018
1060
  class Athena
1019
1061
  attr_accessor :access_key
1062
+ # Bind interface
1063
+ attr_accessor :bind_interface
1020
1064
  # A filter applied to the routing logic to pin datasource to nodes.
1021
1065
  attr_accessor :egress_filter
1022
1066
  # True if the datasource is reachable and the credentials are valid.
@@ -1044,6 +1088,7 @@ module SDM
1044
1088
 
1045
1089
  def initialize(
1046
1090
  access_key: nil,
1091
+ bind_interface: nil,
1047
1092
  egress_filter: nil,
1048
1093
  healthy: nil,
1049
1094
  id: nil,
@@ -1058,6 +1103,7 @@ module SDM
1058
1103
  tags: nil
1059
1104
  )
1060
1105
  @access_key = access_key == nil ? "" : access_key
1106
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1061
1107
  @egress_filter = egress_filter == nil ? "" : egress_filter
1062
1108
  @healthy = healthy == nil ? false : healthy
1063
1109
  @id = id == nil ? "" : id
@@ -1082,6 +1128,9 @@ module SDM
1082
1128
  end
1083
1129
 
1084
1130
  class AuroraMysql
1131
+ # Bind interface
1132
+ attr_accessor :bind_interface
1133
+
1085
1134
  attr_accessor :database
1086
1135
  # A filter applied to the routing logic to pin datasource to nodes.
1087
1136
  attr_accessor :egress_filter
@@ -1107,6 +1156,7 @@ module SDM
1107
1156
  attr_accessor :username
1108
1157
 
1109
1158
  def initialize(
1159
+ bind_interface: nil,
1110
1160
  database: nil,
1111
1161
  egress_filter: nil,
1112
1162
  healthy: nil,
@@ -1120,6 +1170,7 @@ module SDM
1120
1170
  tags: nil,
1121
1171
  username: nil
1122
1172
  )
1173
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1123
1174
  @database = database == nil ? "" : database
1124
1175
  @egress_filter = egress_filter == nil ? "" : egress_filter
1125
1176
  @healthy = healthy == nil ? false : healthy
@@ -1144,6 +1195,9 @@ module SDM
1144
1195
  end
1145
1196
 
1146
1197
  class AuroraPostgres
1198
+ # Bind interface
1199
+ attr_accessor :bind_interface
1200
+
1147
1201
  attr_accessor :database
1148
1202
  # A filter applied to the routing logic to pin datasource to nodes.
1149
1203
  attr_accessor :egress_filter
@@ -1171,6 +1225,7 @@ module SDM
1171
1225
  attr_accessor :username
1172
1226
 
1173
1227
  def initialize(
1228
+ bind_interface: nil,
1174
1229
  database: nil,
1175
1230
  egress_filter: nil,
1176
1231
  healthy: nil,
@@ -1185,6 +1240,7 @@ module SDM
1185
1240
  tags: nil,
1186
1241
  username: nil
1187
1242
  )
1243
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1188
1244
  @database = database == nil ? "" : database
1189
1245
  @egress_filter = egress_filter == nil ? "" : egress_filter
1190
1246
  @healthy = healthy == nil ? false : healthy
@@ -1211,6 +1267,8 @@ module SDM
1211
1267
 
1212
1268
  class Azure
1213
1269
  attr_accessor :app_id
1270
+ # Bind interface
1271
+ attr_accessor :bind_interface
1214
1272
  # A filter applied to the routing logic to pin datasource to nodes.
1215
1273
  attr_accessor :egress_filter
1216
1274
  # True if the datasource is reachable and the credentials are valid.
@@ -1230,6 +1288,7 @@ module SDM
1230
1288
 
1231
1289
  def initialize(
1232
1290
  app_id: nil,
1291
+ bind_interface: nil,
1233
1292
  egress_filter: nil,
1234
1293
  healthy: nil,
1235
1294
  id: nil,
@@ -1240,6 +1299,7 @@ module SDM
1240
1299
  tenant_id: nil
1241
1300
  )
1242
1301
  @app_id = app_id == nil ? "" : app_id
1302
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1243
1303
  @egress_filter = egress_filter == nil ? "" : egress_filter
1244
1304
  @healthy = healthy == nil ? false : healthy
1245
1305
  @id = id == nil ? "" : id
@@ -1261,6 +1321,8 @@ module SDM
1261
1321
 
1262
1322
  class AzureCertificate
1263
1323
  attr_accessor :app_id
1324
+ # Bind interface
1325
+ attr_accessor :bind_interface
1264
1326
 
1265
1327
  attr_accessor :client_certificate
1266
1328
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -1280,6 +1342,7 @@ module SDM
1280
1342
 
1281
1343
  def initialize(
1282
1344
  app_id: nil,
1345
+ bind_interface: nil,
1283
1346
  client_certificate: nil,
1284
1347
  egress_filter: nil,
1285
1348
  healthy: nil,
@@ -1290,6 +1353,7 @@ module SDM
1290
1353
  tenant_id: nil
1291
1354
  )
1292
1355
  @app_id = app_id == nil ? "" : app_id
1356
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1293
1357
  @client_certificate = client_certificate == nil ? "" : client_certificate
1294
1358
  @egress_filter = egress_filter == nil ? "" : egress_filter
1295
1359
  @healthy = healthy == nil ? false : healthy
@@ -1310,6 +1374,9 @@ module SDM
1310
1374
  end
1311
1375
 
1312
1376
  class AzurePostgres
1377
+ # Bind interface
1378
+ attr_accessor :bind_interface
1379
+
1313
1380
  attr_accessor :database
1314
1381
  # A filter applied to the routing logic to pin datasource to nodes.
1315
1382
  attr_accessor :egress_filter
@@ -1337,6 +1404,7 @@ module SDM
1337
1404
  attr_accessor :username
1338
1405
 
1339
1406
  def initialize(
1407
+ bind_interface: nil,
1340
1408
  database: nil,
1341
1409
  egress_filter: nil,
1342
1410
  healthy: nil,
@@ -1351,6 +1419,7 @@ module SDM
1351
1419
  tags: nil,
1352
1420
  username: nil
1353
1421
  )
1422
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1354
1423
  @database = database == nil ? "" : database
1355
1424
  @egress_filter = egress_filter == nil ? "" : egress_filter
1356
1425
  @healthy = healthy == nil ? false : healthy
@@ -1407,6 +1476,8 @@ module SDM
1407
1476
  end
1408
1477
 
1409
1478
  class BigQuery
1479
+ # Bind interface
1480
+ attr_accessor :bind_interface
1410
1481
  # A filter applied to the routing logic to pin datasource to nodes.
1411
1482
  attr_accessor :egress_filter
1412
1483
 
@@ -1431,6 +1502,7 @@ module SDM
1431
1502
  attr_accessor :username
1432
1503
 
1433
1504
  def initialize(
1505
+ bind_interface: nil,
1434
1506
  egress_filter: nil,
1435
1507
  endpoint: nil,
1436
1508
  healthy: nil,
@@ -1443,6 +1515,7 @@ module SDM
1443
1515
  tags: nil,
1444
1516
  username: nil
1445
1517
  )
1518
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1446
1519
  @egress_filter = egress_filter == nil ? "" : egress_filter
1447
1520
  @endpoint = endpoint == nil ? "" : endpoint
1448
1521
  @healthy = healthy == nil ? false : healthy
@@ -1466,6 +1539,8 @@ module SDM
1466
1539
  end
1467
1540
 
1468
1541
  class Cassandra
1542
+ # Bind interface
1543
+ attr_accessor :bind_interface
1469
1544
  # A filter applied to the routing logic to pin datasource to nodes.
1470
1545
  attr_accessor :egress_filter
1471
1546
  # True if the datasource is reachable and the credentials are valid.
@@ -1492,6 +1567,7 @@ module SDM
1492
1567
  attr_accessor :username
1493
1568
 
1494
1569
  def initialize(
1570
+ bind_interface: nil,
1495
1571
  egress_filter: nil,
1496
1572
  healthy: nil,
1497
1573
  hostname: nil,
@@ -1505,6 +1581,7 @@ module SDM
1505
1581
  tls_required: nil,
1506
1582
  username: nil
1507
1583
  )
1584
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1508
1585
  @egress_filter = egress_filter == nil ? "" : egress_filter
1509
1586
  @healthy = healthy == nil ? false : healthy
1510
1587
  @hostname = hostname == nil ? "" : hostname
@@ -1529,6 +1606,9 @@ module SDM
1529
1606
  end
1530
1607
 
1531
1608
  class Citus
1609
+ # Bind interface
1610
+ attr_accessor :bind_interface
1611
+
1532
1612
  attr_accessor :database
1533
1613
  # A filter applied to the routing logic to pin datasource to nodes.
1534
1614
  attr_accessor :egress_filter
@@ -1556,6 +1636,7 @@ module SDM
1556
1636
  attr_accessor :username
1557
1637
 
1558
1638
  def initialize(
1639
+ bind_interface: nil,
1559
1640
  database: nil,
1560
1641
  egress_filter: nil,
1561
1642
  healthy: nil,
@@ -1570,6 +1651,7 @@ module SDM
1570
1651
  tags: nil,
1571
1652
  username: nil
1572
1653
  )
1654
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1573
1655
  @database = database == nil ? "" : database
1574
1656
  @egress_filter = egress_filter == nil ? "" : egress_filter
1575
1657
  @healthy = healthy == nil ? false : healthy
@@ -1595,6 +1677,9 @@ module SDM
1595
1677
  end
1596
1678
 
1597
1679
  class Clustrix
1680
+ # Bind interface
1681
+ attr_accessor :bind_interface
1682
+
1598
1683
  attr_accessor :database
1599
1684
  # A filter applied to the routing logic to pin datasource to nodes.
1600
1685
  attr_accessor :egress_filter
@@ -1620,6 +1705,7 @@ module SDM
1620
1705
  attr_accessor :username
1621
1706
 
1622
1707
  def initialize(
1708
+ bind_interface: nil,
1623
1709
  database: nil,
1624
1710
  egress_filter: nil,
1625
1711
  healthy: nil,
@@ -1633,6 +1719,7 @@ module SDM
1633
1719
  tags: nil,
1634
1720
  username: nil
1635
1721
  )
1722
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1636
1723
  @database = database == nil ? "" : database
1637
1724
  @egress_filter = egress_filter == nil ? "" : egress_filter
1638
1725
  @healthy = healthy == nil ? false : healthy
@@ -1657,6 +1744,9 @@ module SDM
1657
1744
  end
1658
1745
 
1659
1746
  class Cockroach
1747
+ # Bind interface
1748
+ attr_accessor :bind_interface
1749
+
1660
1750
  attr_accessor :database
1661
1751
  # A filter applied to the routing logic to pin datasource to nodes.
1662
1752
  attr_accessor :egress_filter
@@ -1684,6 +1774,7 @@ module SDM
1684
1774
  attr_accessor :username
1685
1775
 
1686
1776
  def initialize(
1777
+ bind_interface: nil,
1687
1778
  database: nil,
1688
1779
  egress_filter: nil,
1689
1780
  healthy: nil,
@@ -1698,6 +1789,7 @@ module SDM
1698
1789
  tags: nil,
1699
1790
  username: nil
1700
1791
  )
1792
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1701
1793
  @database = database == nil ? "" : database
1702
1794
  @egress_filter = egress_filter == nil ? "" : egress_filter
1703
1795
  @healthy = healthy == nil ? false : healthy
@@ -1795,6 +1887,8 @@ module SDM
1795
1887
  end
1796
1888
 
1797
1889
  class DB2I
1890
+ # Bind interface
1891
+ attr_accessor :bind_interface
1798
1892
  # A filter applied to the routing logic to pin datasource to nodes.
1799
1893
  attr_accessor :egress_filter
1800
1894
  # True if the datasource is reachable and the credentials are valid.
@@ -1821,6 +1915,7 @@ module SDM
1821
1915
  attr_accessor :username
1822
1916
 
1823
1917
  def initialize(
1918
+ bind_interface: nil,
1824
1919
  egress_filter: nil,
1825
1920
  healthy: nil,
1826
1921
  hostname: nil,
@@ -1834,6 +1929,7 @@ module SDM
1834
1929
  tls_required: nil,
1835
1930
  username: nil
1836
1931
  )
1932
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1837
1933
  @egress_filter = egress_filter == nil ? "" : egress_filter
1838
1934
  @healthy = healthy == nil ? false : healthy
1839
1935
  @hostname = hostname == nil ? "" : hostname
@@ -1858,6 +1954,9 @@ module SDM
1858
1954
  end
1859
1955
 
1860
1956
  class DB2LUW
1957
+ # Bind interface
1958
+ attr_accessor :bind_interface
1959
+
1861
1960
  attr_accessor :database
1862
1961
  # A filter applied to the routing logic to pin datasource to nodes.
1863
1962
  attr_accessor :egress_filter
@@ -1883,6 +1982,7 @@ module SDM
1883
1982
  attr_accessor :username
1884
1983
 
1885
1984
  def initialize(
1985
+ bind_interface: nil,
1886
1986
  database: nil,
1887
1987
  egress_filter: nil,
1888
1988
  healthy: nil,
@@ -1896,6 +1996,7 @@ module SDM
1896
1996
  tags: nil,
1897
1997
  username: nil
1898
1998
  )
1999
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1899
2000
  @database = database == nil ? "" : database
1900
2001
  @egress_filter = egress_filter == nil ? "" : egress_filter
1901
2002
  @healthy = healthy == nil ? false : healthy
@@ -1935,6 +2036,8 @@ module SDM
1935
2036
 
1936
2037
  class DocumentDBHost
1937
2038
  attr_accessor :auth_database
2039
+ # Bind interface
2040
+ attr_accessor :bind_interface
1938
2041
  # A filter applied to the routing logic to pin datasource to nodes.
1939
2042
  attr_accessor :egress_filter
1940
2043
  # True if the datasource is reachable and the credentials are valid.
@@ -1960,6 +2063,7 @@ module SDM
1960
2063
 
1961
2064
  def initialize(
1962
2065
  auth_database: nil,
2066
+ bind_interface: nil,
1963
2067
  egress_filter: nil,
1964
2068
  healthy: nil,
1965
2069
  hostname: nil,
@@ -1973,6 +2077,7 @@ module SDM
1973
2077
  username: nil
1974
2078
  )
1975
2079
  @auth_database = auth_database == nil ? "" : auth_database
2080
+ @bind_interface = bind_interface == nil ? "" : bind_interface
1976
2081
  @egress_filter = egress_filter == nil ? "" : egress_filter
1977
2082
  @healthy = healthy == nil ? false : healthy
1978
2083
  @hostname = hostname == nil ? "" : hostname
@@ -1997,6 +2102,8 @@ module SDM
1997
2102
 
1998
2103
  class DocumentDBReplicaSet
1999
2104
  attr_accessor :auth_database
2105
+ # Bind interface
2106
+ attr_accessor :bind_interface
2000
2107
 
2001
2108
  attr_accessor :connect_to_replica
2002
2109
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -2024,6 +2131,7 @@ module SDM
2024
2131
 
2025
2132
  def initialize(
2026
2133
  auth_database: nil,
2134
+ bind_interface: nil,
2027
2135
  connect_to_replica: nil,
2028
2136
  egress_filter: nil,
2029
2137
  healthy: nil,
@@ -2038,6 +2146,7 @@ module SDM
2038
2146
  username: nil
2039
2147
  )
2040
2148
  @auth_database = auth_database == nil ? "" : auth_database
2149
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2041
2150
  @connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
2042
2151
  @egress_filter = egress_filter == nil ? "" : egress_filter
2043
2152
  @healthy = healthy == nil ? false : healthy
@@ -2062,6 +2171,8 @@ module SDM
2062
2171
  end
2063
2172
 
2064
2173
  class Druid
2174
+ # Bind interface
2175
+ attr_accessor :bind_interface
2065
2176
  # A filter applied to the routing logic to pin datasource to nodes.
2066
2177
  attr_accessor :egress_filter
2067
2178
  # True if the datasource is reachable and the credentials are valid.
@@ -2086,6 +2197,7 @@ module SDM
2086
2197
  attr_accessor :username
2087
2198
 
2088
2199
  def initialize(
2200
+ bind_interface: nil,
2089
2201
  egress_filter: nil,
2090
2202
  healthy: nil,
2091
2203
  hostname: nil,
@@ -2098,6 +2210,7 @@ module SDM
2098
2210
  tags: nil,
2099
2211
  username: nil
2100
2212
  )
2213
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2101
2214
  @egress_filter = egress_filter == nil ? "" : egress_filter
2102
2215
  @healthy = healthy == nil ? false : healthy
2103
2216
  @hostname = hostname == nil ? "" : hostname
@@ -2122,6 +2235,8 @@ module SDM
2122
2235
 
2123
2236
  class DynamoDB
2124
2237
  attr_accessor :access_key
2238
+ # Bind interface
2239
+ attr_accessor :bind_interface
2125
2240
  # A filter applied to the routing logic to pin datasource to nodes.
2126
2241
  attr_accessor :egress_filter
2127
2242
 
@@ -2149,6 +2264,7 @@ module SDM
2149
2264
 
2150
2265
  def initialize(
2151
2266
  access_key: nil,
2267
+ bind_interface: nil,
2152
2268
  egress_filter: nil,
2153
2269
  endpoint: nil,
2154
2270
  healthy: nil,
@@ -2163,6 +2279,7 @@ module SDM
2163
2279
  tags: nil
2164
2280
  )
2165
2281
  @access_key = access_key == nil ? "" : access_key
2282
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2166
2283
  @egress_filter = egress_filter == nil ? "" : egress_filter
2167
2284
  @endpoint = endpoint == nil ? "" : endpoint
2168
2285
  @healthy = healthy == nil ? false : healthy
@@ -2187,6 +2304,8 @@ module SDM
2187
2304
  end
2188
2305
 
2189
2306
  class Elastic
2307
+ # Bind interface
2308
+ attr_accessor :bind_interface
2190
2309
  # A filter applied to the routing logic to pin datasource to nodes.
2191
2310
  attr_accessor :egress_filter
2192
2311
  # True if the datasource is reachable and the credentials are valid.
@@ -2213,6 +2332,7 @@ module SDM
2213
2332
  attr_accessor :username
2214
2333
 
2215
2334
  def initialize(
2335
+ bind_interface: nil,
2216
2336
  egress_filter: nil,
2217
2337
  healthy: nil,
2218
2338
  hostname: nil,
@@ -2226,6 +2346,7 @@ module SDM
2226
2346
  tls_required: nil,
2227
2347
  username: nil
2228
2348
  )
2349
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2229
2350
  @egress_filter = egress_filter == nil ? "" : egress_filter
2230
2351
  @healthy = healthy == nil ? false : healthy
2231
2352
  @hostname = hostname == nil ? "" : hostname
@@ -2250,6 +2371,8 @@ module SDM
2250
2371
  end
2251
2372
 
2252
2373
  class ElasticacheRedis
2374
+ # Bind interface
2375
+ attr_accessor :bind_interface
2253
2376
  # A filter applied to the routing logic to pin datasource to nodes.
2254
2377
  attr_accessor :egress_filter
2255
2378
  # True if the datasource is reachable and the credentials are valid.
@@ -2274,6 +2397,7 @@ module SDM
2274
2397
  attr_accessor :tls_required
2275
2398
 
2276
2399
  def initialize(
2400
+ bind_interface: nil,
2277
2401
  egress_filter: nil,
2278
2402
  healthy: nil,
2279
2403
  hostname: nil,
@@ -2286,6 +2410,7 @@ module SDM
2286
2410
  tags: nil,
2287
2411
  tls_required: nil
2288
2412
  )
2413
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2289
2414
  @egress_filter = egress_filter == nil ? "" : egress_filter
2290
2415
  @healthy = healthy == nil ? false : healthy
2291
2416
  @hostname = hostname == nil ? "" : hostname
@@ -2309,6 +2434,8 @@ module SDM
2309
2434
  end
2310
2435
 
2311
2436
  class GCP
2437
+ # Bind interface
2438
+ attr_accessor :bind_interface
2312
2439
  # A filter applied to the routing logic to pin datasource to nodes.
2313
2440
  attr_accessor :egress_filter
2314
2441
  # True if the datasource is reachable and the credentials are valid.
@@ -2327,6 +2454,7 @@ module SDM
2327
2454
  attr_accessor :tags
2328
2455
 
2329
2456
  def initialize(
2457
+ bind_interface: nil,
2330
2458
  egress_filter: nil,
2331
2459
  healthy: nil,
2332
2460
  id: nil,
@@ -2336,6 +2464,7 @@ module SDM
2336
2464
  secret_store_id: nil,
2337
2465
  tags: nil
2338
2466
  )
2467
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2339
2468
  @egress_filter = egress_filter == nil ? "" : egress_filter
2340
2469
  @healthy = healthy == nil ? false : healthy
2341
2470
  @id = id == nil ? "" : id
@@ -2448,6 +2577,9 @@ module SDM
2448
2577
  end
2449
2578
 
2450
2579
  class GoogleGKE
2580
+ # Bind interface
2581
+ attr_accessor :bind_interface
2582
+
2451
2583
  attr_accessor :certificate_authority
2452
2584
  # A filter applied to the routing logic to pin datasource to nodes.
2453
2585
  attr_accessor :egress_filter
@@ -2469,6 +2601,7 @@ module SDM
2469
2601
  attr_accessor :tags
2470
2602
 
2471
2603
  def initialize(
2604
+ bind_interface: nil,
2472
2605
  certificate_authority: nil,
2473
2606
  egress_filter: nil,
2474
2607
  endpoint: nil,
@@ -2480,6 +2613,7 @@ module SDM
2480
2613
  service_account_key: nil,
2481
2614
  tags: nil
2482
2615
  )
2616
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2483
2617
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
2484
2618
  @egress_filter = egress_filter == nil ? "" : egress_filter
2485
2619
  @endpoint = endpoint == nil ? "" : endpoint
@@ -2502,6 +2636,9 @@ module SDM
2502
2636
  end
2503
2637
 
2504
2638
  class GoogleGKEUserImpersonation
2639
+ # Bind interface
2640
+ attr_accessor :bind_interface
2641
+
2505
2642
  attr_accessor :certificate_authority
2506
2643
  # A filter applied to the routing logic to pin datasource to nodes.
2507
2644
  attr_accessor :egress_filter
@@ -2523,6 +2660,7 @@ module SDM
2523
2660
  attr_accessor :tags
2524
2661
 
2525
2662
  def initialize(
2663
+ bind_interface: nil,
2526
2664
  certificate_authority: nil,
2527
2665
  egress_filter: nil,
2528
2666
  endpoint: nil,
@@ -2534,6 +2672,7 @@ module SDM
2534
2672
  service_account_key: nil,
2535
2673
  tags: nil
2536
2674
  )
2675
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2537
2676
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
2538
2677
  @egress_filter = egress_filter == nil ? "" : egress_filter
2539
2678
  @endpoint = endpoint == nil ? "" : endpoint
@@ -2556,6 +2695,9 @@ module SDM
2556
2695
  end
2557
2696
 
2558
2697
  class Greenplum
2698
+ # Bind interface
2699
+ attr_accessor :bind_interface
2700
+
2559
2701
  attr_accessor :database
2560
2702
  # A filter applied to the routing logic to pin datasource to nodes.
2561
2703
  attr_accessor :egress_filter
@@ -2583,6 +2725,7 @@ module SDM
2583
2725
  attr_accessor :username
2584
2726
 
2585
2727
  def initialize(
2728
+ bind_interface: nil,
2586
2729
  database: nil,
2587
2730
  egress_filter: nil,
2588
2731
  healthy: nil,
@@ -2597,6 +2740,7 @@ module SDM
2597
2740
  tags: nil,
2598
2741
  username: nil
2599
2742
  )
2743
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2600
2744
  @database = database == nil ? "" : database
2601
2745
  @egress_filter = egress_filter == nil ? "" : egress_filter
2602
2746
  @healthy = healthy == nil ? false : healthy
@@ -2623,6 +2767,8 @@ module SDM
2623
2767
 
2624
2768
  class HTTPAuth
2625
2769
  attr_accessor :auth_header
2770
+ # Bind interface
2771
+ attr_accessor :bind_interface
2626
2772
 
2627
2773
  attr_accessor :default_path
2628
2774
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -2648,6 +2794,7 @@ module SDM
2648
2794
 
2649
2795
  def initialize(
2650
2796
  auth_header: nil,
2797
+ bind_interface: nil,
2651
2798
  default_path: nil,
2652
2799
  egress_filter: nil,
2653
2800
  headers_blacklist: nil,
@@ -2661,6 +2808,7 @@ module SDM
2661
2808
  url: nil
2662
2809
  )
2663
2810
  @auth_header = auth_header == nil ? "" : auth_header
2811
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2664
2812
  @default_path = default_path == nil ? "" : default_path
2665
2813
  @egress_filter = egress_filter == nil ? "" : egress_filter
2666
2814
  @headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
@@ -2684,6 +2832,9 @@ module SDM
2684
2832
  end
2685
2833
 
2686
2834
  class HTTPBasicAuth
2835
+ # Bind interface
2836
+ attr_accessor :bind_interface
2837
+
2687
2838
  attr_accessor :default_path
2688
2839
  # A filter applied to the routing logic to pin datasource to nodes.
2689
2840
  attr_accessor :egress_filter
@@ -2711,6 +2862,7 @@ module SDM
2711
2862
  attr_accessor :username
2712
2863
 
2713
2864
  def initialize(
2865
+ bind_interface: nil,
2714
2866
  default_path: nil,
2715
2867
  egress_filter: nil,
2716
2868
  headers_blacklist: nil,
@@ -2725,6 +2877,7 @@ module SDM
2725
2877
  url: nil,
2726
2878
  username: nil
2727
2879
  )
2880
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2728
2881
  @default_path = default_path == nil ? "" : default_path
2729
2882
  @egress_filter = egress_filter == nil ? "" : egress_filter
2730
2883
  @headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
@@ -2750,6 +2903,9 @@ module SDM
2750
2903
  end
2751
2904
 
2752
2905
  class HTTPNoAuth
2906
+ # Bind interface
2907
+ attr_accessor :bind_interface
2908
+
2753
2909
  attr_accessor :default_path
2754
2910
  # A filter applied to the routing logic to pin datasource to nodes.
2755
2911
  attr_accessor :egress_filter
@@ -2773,6 +2929,7 @@ module SDM
2773
2929
  attr_accessor :url
2774
2930
 
2775
2931
  def initialize(
2932
+ bind_interface: nil,
2776
2933
  default_path: nil,
2777
2934
  egress_filter: nil,
2778
2935
  headers_blacklist: nil,
@@ -2785,6 +2942,7 @@ module SDM
2785
2942
  tags: nil,
2786
2943
  url: nil
2787
2944
  )
2945
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2788
2946
  @default_path = default_path == nil ? "" : default_path
2789
2947
  @egress_filter = egress_filter == nil ? "" : egress_filter
2790
2948
  @headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
@@ -2808,6 +2966,9 @@ module SDM
2808
2966
  end
2809
2967
 
2810
2968
  class Kubernetes
2969
+ # Bind interface
2970
+ attr_accessor :bind_interface
2971
+
2811
2972
  attr_accessor :certificate_authority
2812
2973
 
2813
2974
  attr_accessor :client_certificate
@@ -2833,6 +2994,7 @@ module SDM
2833
2994
  attr_accessor :tags
2834
2995
 
2835
2996
  def initialize(
2997
+ bind_interface: nil,
2836
2998
  certificate_authority: nil,
2837
2999
  client_certificate: nil,
2838
3000
  client_key: nil,
@@ -2846,6 +3008,7 @@ module SDM
2846
3008
  secret_store_id: nil,
2847
3009
  tags: nil
2848
3010
  )
3011
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2849
3012
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
2850
3013
  @client_certificate = client_certificate == nil ? "" : client_certificate
2851
3014
  @client_key = client_key == nil ? "" : client_key
@@ -2870,6 +3033,8 @@ module SDM
2870
3033
  end
2871
3034
 
2872
3035
  class KubernetesBasicAuth
3036
+ # Bind interface
3037
+ attr_accessor :bind_interface
2873
3038
  # A filter applied to the routing logic to pin datasource to nodes.
2874
3039
  attr_accessor :egress_filter
2875
3040
  # The path used to check the health of your connection. Defaults to `default`.
@@ -2894,6 +3059,7 @@ module SDM
2894
3059
  attr_accessor :username
2895
3060
 
2896
3061
  def initialize(
3062
+ bind_interface: nil,
2897
3063
  egress_filter: nil,
2898
3064
  healthcheck_namespace: nil,
2899
3065
  healthy: nil,
@@ -2906,6 +3072,7 @@ module SDM
2906
3072
  tags: nil,
2907
3073
  username: nil
2908
3074
  )
3075
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2909
3076
  @egress_filter = egress_filter == nil ? "" : egress_filter
2910
3077
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
2911
3078
  @healthy = healthy == nil ? false : healthy
@@ -2929,6 +3096,8 @@ module SDM
2929
3096
  end
2930
3097
 
2931
3098
  class KubernetesServiceAccount
3099
+ # Bind interface
3100
+ attr_accessor :bind_interface
2932
3101
  # A filter applied to the routing logic to pin datasource to nodes.
2933
3102
  attr_accessor :egress_filter
2934
3103
  # The path used to check the health of your connection. Defaults to `default`.
@@ -2951,6 +3120,7 @@ module SDM
2951
3120
  attr_accessor :token
2952
3121
 
2953
3122
  def initialize(
3123
+ bind_interface: nil,
2954
3124
  egress_filter: nil,
2955
3125
  healthcheck_namespace: nil,
2956
3126
  healthy: nil,
@@ -2962,6 +3132,7 @@ module SDM
2962
3132
  tags: nil,
2963
3133
  token: nil
2964
3134
  )
3135
+ @bind_interface = bind_interface == nil ? "" : bind_interface
2965
3136
  @egress_filter = egress_filter == nil ? "" : egress_filter
2966
3137
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
2967
3138
  @healthy = healthy == nil ? false : healthy
@@ -2984,6 +3155,8 @@ module SDM
2984
3155
  end
2985
3156
 
2986
3157
  class KubernetesServiceAccountUserImpersonation
3158
+ # Bind interface
3159
+ attr_accessor :bind_interface
2987
3160
  # A filter applied to the routing logic to pin datasource to nodes.
2988
3161
  attr_accessor :egress_filter
2989
3162
  # The path used to check the health of your connection. Defaults to `default`.
@@ -3006,6 +3179,7 @@ module SDM
3006
3179
  attr_accessor :token
3007
3180
 
3008
3181
  def initialize(
3182
+ bind_interface: nil,
3009
3183
  egress_filter: nil,
3010
3184
  healthcheck_namespace: nil,
3011
3185
  healthy: nil,
@@ -3017,6 +3191,7 @@ module SDM
3017
3191
  tags: nil,
3018
3192
  token: nil
3019
3193
  )
3194
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3020
3195
  @egress_filter = egress_filter == nil ? "" : egress_filter
3021
3196
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
3022
3197
  @healthy = healthy == nil ? false : healthy
@@ -3039,6 +3214,9 @@ module SDM
3039
3214
  end
3040
3215
 
3041
3216
  class KubernetesUserImpersonation
3217
+ # Bind interface
3218
+ attr_accessor :bind_interface
3219
+
3042
3220
  attr_accessor :certificate_authority
3043
3221
 
3044
3222
  attr_accessor :client_certificate
@@ -3064,6 +3242,7 @@ module SDM
3064
3242
  attr_accessor :tags
3065
3243
 
3066
3244
  def initialize(
3245
+ bind_interface: nil,
3067
3246
  certificate_authority: nil,
3068
3247
  client_certificate: nil,
3069
3248
  client_key: nil,
@@ -3077,6 +3256,7 @@ module SDM
3077
3256
  secret_store_id: nil,
3078
3257
  tags: nil
3079
3258
  )
3259
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3080
3260
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
3081
3261
  @client_certificate = client_certificate == nil ? "" : client_certificate
3082
3262
  @client_key = client_key == nil ? "" : client_key
@@ -3100,7 +3280,93 @@ module SDM
3100
3280
  end
3101
3281
  end
3102
3282
 
3283
+ class MTLSMysql
3284
+ # Bind interface
3285
+ attr_accessor :bind_interface
3286
+
3287
+ attr_accessor :certificate_authority
3288
+
3289
+ attr_accessor :client_certificate
3290
+
3291
+ attr_accessor :client_key
3292
+
3293
+ attr_accessor :database
3294
+ # A filter applied to the routing logic to pin datasource to nodes.
3295
+ attr_accessor :egress_filter
3296
+ # True if the datasource is reachable and the credentials are valid.
3297
+ attr_accessor :healthy
3298
+
3299
+ attr_accessor :hostname
3300
+ # Unique identifier of the Resource.
3301
+ attr_accessor :id
3302
+ # Unique human-readable name of the Resource.
3303
+ attr_accessor :name
3304
+
3305
+ attr_accessor :password
3306
+
3307
+ attr_accessor :port
3308
+
3309
+ attr_accessor :port_override
3310
+ # ID of the secret store containing credentials for this resource, if any.
3311
+ attr_accessor :secret_store_id
3312
+
3313
+ attr_accessor :server_name
3314
+ # Tags is a map of key, value pairs.
3315
+ attr_accessor :tags
3316
+
3317
+ attr_accessor :username
3318
+
3319
+ def initialize(
3320
+ bind_interface: nil,
3321
+ certificate_authority: nil,
3322
+ client_certificate: nil,
3323
+ client_key: nil,
3324
+ database: nil,
3325
+ egress_filter: nil,
3326
+ healthy: nil,
3327
+ hostname: nil,
3328
+ id: nil,
3329
+ name: nil,
3330
+ password: nil,
3331
+ port: nil,
3332
+ port_override: nil,
3333
+ secret_store_id: nil,
3334
+ server_name: nil,
3335
+ tags: nil,
3336
+ username: nil
3337
+ )
3338
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3339
+ @certificate_authority = certificate_authority == nil ? "" : certificate_authority
3340
+ @client_certificate = client_certificate == nil ? "" : client_certificate
3341
+ @client_key = client_key == nil ? "" : client_key
3342
+ @database = database == nil ? "" : database
3343
+ @egress_filter = egress_filter == nil ? "" : egress_filter
3344
+ @healthy = healthy == nil ? false : healthy
3345
+ @hostname = hostname == nil ? "" : hostname
3346
+ @id = id == nil ? "" : id
3347
+ @name = name == nil ? "" : name
3348
+ @password = password == nil ? "" : password
3349
+ @port = port == nil ? 0 : port
3350
+ @port_override = port_override == nil ? 0 : port_override
3351
+ @secret_store_id = secret_store_id == nil ? "" : secret_store_id
3352
+ @server_name = server_name == nil ? "" : server_name
3353
+ @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
3354
+ @username = username == nil ? "" : username
3355
+ end
3356
+
3357
+ def to_json(options = {})
3358
+ hash = {}
3359
+ self.instance_variables.each do |var|
3360
+ hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
3361
+ end
3362
+ hash.to_json
3363
+ end
3364
+ end
3365
+
3103
3366
  class MTLSPostgres
3367
+ # Bind interface
3368
+ attr_accessor :bind_interface
3369
+
3104
3370
  attr_accessor :certificate_authority
3105
3371
 
3106
3372
  attr_accessor :client_certificate
@@ -3136,6 +3402,7 @@ module SDM
3136
3402
  attr_accessor :username
3137
3403
 
3138
3404
  def initialize(
3405
+ bind_interface: nil,
3139
3406
  certificate_authority: nil,
3140
3407
  client_certificate: nil,
3141
3408
  client_key: nil,
@@ -3154,6 +3421,7 @@ module SDM
3154
3421
  tags: nil,
3155
3422
  username: nil
3156
3423
  )
3424
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3157
3425
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
3158
3426
  @client_certificate = client_certificate == nil ? "" : client_certificate
3159
3427
  @client_key = client_key == nil ? "" : client_key
@@ -3183,6 +3451,9 @@ module SDM
3183
3451
  end
3184
3452
 
3185
3453
  class Maria
3454
+ # Bind interface
3455
+ attr_accessor :bind_interface
3456
+
3186
3457
  attr_accessor :database
3187
3458
  # A filter applied to the routing logic to pin datasource to nodes.
3188
3459
  attr_accessor :egress_filter
@@ -3208,6 +3479,7 @@ module SDM
3208
3479
  attr_accessor :username
3209
3480
 
3210
3481
  def initialize(
3482
+ bind_interface: nil,
3211
3483
  database: nil,
3212
3484
  egress_filter: nil,
3213
3485
  healthy: nil,
@@ -3221,6 +3493,7 @@ module SDM
3221
3493
  tags: nil,
3222
3494
  username: nil
3223
3495
  )
3496
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3224
3497
  @database = database == nil ? "" : database
3225
3498
  @egress_filter = egress_filter == nil ? "" : egress_filter
3226
3499
  @healthy = healthy == nil ? false : healthy
@@ -3245,6 +3518,8 @@ module SDM
3245
3518
  end
3246
3519
 
3247
3520
  class Memcached
3521
+ # Bind interface
3522
+ attr_accessor :bind_interface
3248
3523
  # A filter applied to the routing logic to pin datasource to nodes.
3249
3524
  attr_accessor :egress_filter
3250
3525
  # True if the datasource is reachable and the credentials are valid.
@@ -3265,6 +3540,7 @@ module SDM
3265
3540
  attr_accessor :tags
3266
3541
 
3267
3542
  def initialize(
3543
+ bind_interface: nil,
3268
3544
  egress_filter: nil,
3269
3545
  healthy: nil,
3270
3546
  hostname: nil,
@@ -3275,6 +3551,7 @@ module SDM
3275
3551
  secret_store_id: nil,
3276
3552
  tags: nil
3277
3553
  )
3554
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3278
3555
  @egress_filter = egress_filter == nil ? "" : egress_filter
3279
3556
  @healthy = healthy == nil ? false : healthy
3280
3557
  @hostname = hostname == nil ? "" : hostname
@@ -3296,6 +3573,9 @@ module SDM
3296
3573
  end
3297
3574
 
3298
3575
  class Memsql
3576
+ # Bind interface
3577
+ attr_accessor :bind_interface
3578
+
3299
3579
  attr_accessor :database
3300
3580
  # A filter applied to the routing logic to pin datasource to nodes.
3301
3581
  attr_accessor :egress_filter
@@ -3321,6 +3601,7 @@ module SDM
3321
3601
  attr_accessor :username
3322
3602
 
3323
3603
  def initialize(
3604
+ bind_interface: nil,
3324
3605
  database: nil,
3325
3606
  egress_filter: nil,
3326
3607
  healthy: nil,
@@ -3334,6 +3615,7 @@ module SDM
3334
3615
  tags: nil,
3335
3616
  username: nil
3336
3617
  )
3618
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3337
3619
  @database = database == nil ? "" : database
3338
3620
  @egress_filter = egress_filter == nil ? "" : egress_filter
3339
3621
  @healthy = healthy == nil ? false : healthy
@@ -3359,6 +3641,8 @@ module SDM
3359
3641
 
3360
3642
  class MongoHost
3361
3643
  attr_accessor :auth_database
3644
+ # Bind interface
3645
+ attr_accessor :bind_interface
3362
3646
  # A filter applied to the routing logic to pin datasource to nodes.
3363
3647
  attr_accessor :egress_filter
3364
3648
  # True if the datasource is reachable and the credentials are valid.
@@ -3386,6 +3670,7 @@ module SDM
3386
3670
 
3387
3671
  def initialize(
3388
3672
  auth_database: nil,
3673
+ bind_interface: nil,
3389
3674
  egress_filter: nil,
3390
3675
  healthy: nil,
3391
3676
  hostname: nil,
@@ -3400,6 +3685,7 @@ module SDM
3400
3685
  username: nil
3401
3686
  )
3402
3687
  @auth_database = auth_database == nil ? "" : auth_database
3688
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3403
3689
  @egress_filter = egress_filter == nil ? "" : egress_filter
3404
3690
  @healthy = healthy == nil ? false : healthy
3405
3691
  @hostname = hostname == nil ? "" : hostname
@@ -3425,6 +3711,8 @@ module SDM
3425
3711
 
3426
3712
  class MongoLegacyHost
3427
3713
  attr_accessor :auth_database
3714
+ # Bind interface
3715
+ attr_accessor :bind_interface
3428
3716
  # A filter applied to the routing logic to pin datasource to nodes.
3429
3717
  attr_accessor :egress_filter
3430
3718
  # True if the datasource is reachable and the credentials are valid.
@@ -3454,6 +3742,7 @@ module SDM
3454
3742
 
3455
3743
  def initialize(
3456
3744
  auth_database: nil,
3745
+ bind_interface: nil,
3457
3746
  egress_filter: nil,
3458
3747
  healthy: nil,
3459
3748
  hostname: nil,
@@ -3469,6 +3758,7 @@ module SDM
3469
3758
  username: nil
3470
3759
  )
3471
3760
  @auth_database = auth_database == nil ? "" : auth_database
3761
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3472
3762
  @egress_filter = egress_filter == nil ? "" : egress_filter
3473
3763
  @healthy = healthy == nil ? false : healthy
3474
3764
  @hostname = hostname == nil ? "" : hostname
@@ -3495,6 +3785,8 @@ module SDM
3495
3785
 
3496
3786
  class MongoLegacyReplicaset
3497
3787
  attr_accessor :auth_database
3788
+ # Bind interface
3789
+ attr_accessor :bind_interface
3498
3790
 
3499
3791
  attr_accessor :connect_to_replica
3500
3792
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -3526,6 +3818,7 @@ module SDM
3526
3818
 
3527
3819
  def initialize(
3528
3820
  auth_database: nil,
3821
+ bind_interface: nil,
3529
3822
  connect_to_replica: nil,
3530
3823
  egress_filter: nil,
3531
3824
  healthy: nil,
@@ -3542,6 +3835,7 @@ module SDM
3542
3835
  username: nil
3543
3836
  )
3544
3837
  @auth_database = auth_database == nil ? "" : auth_database
3838
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3545
3839
  @connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
3546
3840
  @egress_filter = egress_filter == nil ? "" : egress_filter
3547
3841
  @healthy = healthy == nil ? false : healthy
@@ -3569,6 +3863,8 @@ module SDM
3569
3863
 
3570
3864
  class MongoReplicaSet
3571
3865
  attr_accessor :auth_database
3866
+ # Bind interface
3867
+ attr_accessor :bind_interface
3572
3868
 
3573
3869
  attr_accessor :connect_to_replica
3574
3870
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -3600,6 +3896,7 @@ module SDM
3600
3896
 
3601
3897
  def initialize(
3602
3898
  auth_database: nil,
3899
+ bind_interface: nil,
3603
3900
  connect_to_replica: nil,
3604
3901
  egress_filter: nil,
3605
3902
  healthy: nil,
@@ -3616,6 +3913,7 @@ module SDM
3616
3913
  username: nil
3617
3914
  )
3618
3915
  @auth_database = auth_database == nil ? "" : auth_database
3916
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3619
3917
  @connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
3620
3918
  @egress_filter = egress_filter == nil ? "" : egress_filter
3621
3919
  @healthy = healthy == nil ? false : healthy
@@ -3643,6 +3941,8 @@ module SDM
3643
3941
 
3644
3942
  class MongoShardedCluster
3645
3943
  attr_accessor :auth_database
3944
+ # Bind interface
3945
+ attr_accessor :bind_interface
3646
3946
  # A filter applied to the routing logic to pin datasource to nodes.
3647
3947
  attr_accessor :egress_filter
3648
3948
  # True if the datasource is reachable and the credentials are valid.
@@ -3668,6 +3968,7 @@ module SDM
3668
3968
 
3669
3969
  def initialize(
3670
3970
  auth_database: nil,
3971
+ bind_interface: nil,
3671
3972
  egress_filter: nil,
3672
3973
  healthy: nil,
3673
3974
  hostname: nil,
@@ -3681,6 +3982,7 @@ module SDM
3681
3982
  username: nil
3682
3983
  )
3683
3984
  @auth_database = auth_database == nil ? "" : auth_database
3985
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3684
3986
  @egress_filter = egress_filter == nil ? "" : egress_filter
3685
3987
  @healthy = healthy == nil ? false : healthy
3686
3988
  @hostname = hostname == nil ? "" : hostname
@@ -3704,6 +4006,9 @@ module SDM
3704
4006
  end
3705
4007
 
3706
4008
  class Mysql
4009
+ # Bind interface
4010
+ attr_accessor :bind_interface
4011
+
3707
4012
  attr_accessor :database
3708
4013
  # A filter applied to the routing logic to pin datasource to nodes.
3709
4014
  attr_accessor :egress_filter
@@ -3729,6 +4034,7 @@ module SDM
3729
4034
  attr_accessor :username
3730
4035
 
3731
4036
  def initialize(
4037
+ bind_interface: nil,
3732
4038
  database: nil,
3733
4039
  egress_filter: nil,
3734
4040
  healthy: nil,
@@ -3742,6 +4048,7 @@ module SDM
3742
4048
  tags: nil,
3743
4049
  username: nil
3744
4050
  )
4051
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3745
4052
  @database = database == nil ? "" : database
3746
4053
  @egress_filter = egress_filter == nil ? "" : egress_filter
3747
4054
  @healthy = healthy == nil ? false : healthy
@@ -3766,6 +4073,8 @@ module SDM
3766
4073
  end
3767
4074
 
3768
4075
  class Neptune
4076
+ # Bind interface
4077
+ attr_accessor :bind_interface
3769
4078
  # A filter applied to the routing logic to pin datasource to nodes.
3770
4079
  attr_accessor :egress_filter
3771
4080
 
@@ -3786,6 +4095,7 @@ module SDM
3786
4095
  attr_accessor :tags
3787
4096
 
3788
4097
  def initialize(
4098
+ bind_interface: nil,
3789
4099
  egress_filter: nil,
3790
4100
  endpoint: nil,
3791
4101
  healthy: nil,
@@ -3796,6 +4106,7 @@ module SDM
3796
4106
  secret_store_id: nil,
3797
4107
  tags: nil
3798
4108
  )
4109
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3799
4110
  @egress_filter = egress_filter == nil ? "" : egress_filter
3800
4111
  @endpoint = endpoint == nil ? "" : endpoint
3801
4112
  @healthy = healthy == nil ? false : healthy
@@ -3818,6 +4129,8 @@ module SDM
3818
4129
 
3819
4130
  class NeptuneIAM
3820
4131
  attr_accessor :access_key
4132
+ # Bind interface
4133
+ attr_accessor :bind_interface
3821
4134
  # A filter applied to the routing logic to pin datasource to nodes.
3822
4135
  attr_accessor :egress_filter
3823
4136
 
@@ -3847,6 +4160,7 @@ module SDM
3847
4160
 
3848
4161
  def initialize(
3849
4162
  access_key: nil,
4163
+ bind_interface: nil,
3850
4164
  egress_filter: nil,
3851
4165
  endpoint: nil,
3852
4166
  healthy: nil,
@@ -3862,6 +4176,7 @@ module SDM
3862
4176
  tags: nil
3863
4177
  )
3864
4178
  @access_key = access_key == nil ? "" : access_key
4179
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3865
4180
  @egress_filter = egress_filter == nil ? "" : egress_filter
3866
4181
  @endpoint = endpoint == nil ? "" : endpoint
3867
4182
  @healthy = healthy == nil ? false : healthy
@@ -4001,6 +4316,9 @@ module SDM
4001
4316
  end
4002
4317
 
4003
4318
  class Oracle
4319
+ # Bind interface
4320
+ attr_accessor :bind_interface
4321
+
4004
4322
  attr_accessor :database
4005
4323
  # A filter applied to the routing logic to pin datasource to nodes.
4006
4324
  attr_accessor :egress_filter
@@ -4028,6 +4346,7 @@ module SDM
4028
4346
  attr_accessor :username
4029
4347
 
4030
4348
  def initialize(
4349
+ bind_interface: nil,
4031
4350
  database: nil,
4032
4351
  egress_filter: nil,
4033
4352
  healthy: nil,
@@ -4042,6 +4361,7 @@ module SDM
4042
4361
  tls_required: nil,
4043
4362
  username: nil
4044
4363
  )
4364
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4045
4365
  @database = database == nil ? "" : database
4046
4366
  @egress_filter = egress_filter == nil ? "" : egress_filter
4047
4367
  @healthy = healthy == nil ? false : healthy
@@ -4067,6 +4387,9 @@ module SDM
4067
4387
  end
4068
4388
 
4069
4389
  class Postgres
4390
+ # Bind interface
4391
+ attr_accessor :bind_interface
4392
+
4070
4393
  attr_accessor :database
4071
4394
  # A filter applied to the routing logic to pin datasource to nodes.
4072
4395
  attr_accessor :egress_filter
@@ -4094,6 +4417,7 @@ module SDM
4094
4417
  attr_accessor :username
4095
4418
 
4096
4419
  def initialize(
4420
+ bind_interface: nil,
4097
4421
  database: nil,
4098
4422
  egress_filter: nil,
4099
4423
  healthy: nil,
@@ -4108,6 +4432,7 @@ module SDM
4108
4432
  tags: nil,
4109
4433
  username: nil
4110
4434
  )
4435
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4111
4436
  @database = database == nil ? "" : database
4112
4437
  @egress_filter = egress_filter == nil ? "" : egress_filter
4113
4438
  @healthy = healthy == nil ? false : healthy
@@ -4133,6 +4458,9 @@ module SDM
4133
4458
  end
4134
4459
 
4135
4460
  class Presto
4461
+ # Bind interface
4462
+ attr_accessor :bind_interface
4463
+
4136
4464
  attr_accessor :database
4137
4465
  # A filter applied to the routing logic to pin datasource to nodes.
4138
4466
  attr_accessor :egress_filter
@@ -4160,6 +4488,7 @@ module SDM
4160
4488
  attr_accessor :username
4161
4489
 
4162
4490
  def initialize(
4491
+ bind_interface: nil,
4163
4492
  database: nil,
4164
4493
  egress_filter: nil,
4165
4494
  healthy: nil,
@@ -4174,6 +4503,7 @@ module SDM
4174
4503
  tls_required: nil,
4175
4504
  username: nil
4176
4505
  )
4506
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4177
4507
  @database = database == nil ? "" : database
4178
4508
  @egress_filter = egress_filter == nil ? "" : egress_filter
4179
4509
  @healthy = healthy == nil ? false : healthy
@@ -4199,6 +4529,9 @@ module SDM
4199
4529
  end
4200
4530
 
4201
4531
  class RDP
4532
+ # Bind interface
4533
+ attr_accessor :bind_interface
4534
+
4202
4535
  attr_accessor :downgrade_nla_connections
4203
4536
  # A filter applied to the routing logic to pin datasource to nodes.
4204
4537
  attr_accessor :egress_filter
@@ -4224,6 +4557,7 @@ module SDM
4224
4557
  attr_accessor :username
4225
4558
 
4226
4559
  def initialize(
4560
+ bind_interface: nil,
4227
4561
  downgrade_nla_connections: nil,
4228
4562
  egress_filter: nil,
4229
4563
  healthy: nil,
@@ -4237,6 +4571,7 @@ module SDM
4237
4571
  tags: nil,
4238
4572
  username: nil
4239
4573
  )
4574
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4240
4575
  @downgrade_nla_connections = downgrade_nla_connections == nil ? false : downgrade_nla_connections
4241
4576
  @egress_filter = egress_filter == nil ? "" : egress_filter
4242
4577
  @healthy = healthy == nil ? false : healthy
@@ -4261,6 +4596,8 @@ module SDM
4261
4596
  end
4262
4597
 
4263
4598
  class RabbitMQAMQP091
4599
+ # Bind interface
4600
+ attr_accessor :bind_interface
4264
4601
  # A filter applied to the routing logic to pin datasource to nodes.
4265
4602
  attr_accessor :egress_filter
4266
4603
  # True if the datasource is reachable and the credentials are valid.
@@ -4287,6 +4624,7 @@ module SDM
4287
4624
  attr_accessor :username
4288
4625
 
4289
4626
  def initialize(
4627
+ bind_interface: nil,
4290
4628
  egress_filter: nil,
4291
4629
  healthy: nil,
4292
4630
  hostname: nil,
@@ -4300,6 +4638,7 @@ module SDM
4300
4638
  tls_required: nil,
4301
4639
  username: nil
4302
4640
  )
4641
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4303
4642
  @egress_filter = egress_filter == nil ? "" : egress_filter
4304
4643
  @healthy = healthy == nil ? false : healthy
4305
4644
  @hostname = hostname == nil ? "" : hostname
@@ -4359,6 +4698,8 @@ module SDM
4359
4698
  end
4360
4699
 
4361
4700
  class RawTCP
4701
+ # Bind interface
4702
+ attr_accessor :bind_interface
4362
4703
  # A filter applied to the routing logic to pin datasource to nodes.
4363
4704
  attr_accessor :egress_filter
4364
4705
  # True if the datasource is reachable and the credentials are valid.
@@ -4379,6 +4720,7 @@ module SDM
4379
4720
  attr_accessor :tags
4380
4721
 
4381
4722
  def initialize(
4723
+ bind_interface: nil,
4382
4724
  egress_filter: nil,
4383
4725
  healthy: nil,
4384
4726
  hostname: nil,
@@ -4389,6 +4731,7 @@ module SDM
4389
4731
  secret_store_id: nil,
4390
4732
  tags: nil
4391
4733
  )
4734
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4392
4735
  @egress_filter = egress_filter == nil ? "" : egress_filter
4393
4736
  @healthy = healthy == nil ? false : healthy
4394
4737
  @hostname = hostname == nil ? "" : hostname
@@ -4410,6 +4753,8 @@ module SDM
4410
4753
  end
4411
4754
 
4412
4755
  class Redis
4756
+ # Bind interface
4757
+ attr_accessor :bind_interface
4413
4758
  # A filter applied to the routing logic to pin datasource to nodes.
4414
4759
  attr_accessor :egress_filter
4415
4760
  # True if the datasource is reachable and the credentials are valid.
@@ -4432,6 +4777,7 @@ module SDM
4432
4777
  attr_accessor :tags
4433
4778
 
4434
4779
  def initialize(
4780
+ bind_interface: nil,
4435
4781
  egress_filter: nil,
4436
4782
  healthy: nil,
4437
4783
  hostname: nil,
@@ -4443,6 +4789,7 @@ module SDM
4443
4789
  secret_store_id: nil,
4444
4790
  tags: nil
4445
4791
  )
4792
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4446
4793
  @egress_filter = egress_filter == nil ? "" : egress_filter
4447
4794
  @healthy = healthy == nil ? false : healthy
4448
4795
  @hostname = hostname == nil ? "" : hostname
@@ -4465,6 +4812,9 @@ module SDM
4465
4812
  end
4466
4813
 
4467
4814
  class Redshift
4815
+ # Bind interface
4816
+ attr_accessor :bind_interface
4817
+
4468
4818
  attr_accessor :database
4469
4819
  # A filter applied to the routing logic to pin datasource to nodes.
4470
4820
  attr_accessor :egress_filter
@@ -4492,6 +4842,7 @@ module SDM
4492
4842
  attr_accessor :username
4493
4843
 
4494
4844
  def initialize(
4845
+ bind_interface: nil,
4495
4846
  database: nil,
4496
4847
  egress_filter: nil,
4497
4848
  healthy: nil,
@@ -4506,6 +4857,7 @@ module SDM
4506
4857
  tags: nil,
4507
4858
  username: nil
4508
4859
  )
4860
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4509
4861
  @database = database == nil ? "" : database
4510
4862
  @egress_filter = egress_filter == nil ? "" : egress_filter
4511
4863
  @healthy = healthy == nil ? false : healthy
@@ -5062,6 +5414,9 @@ module SDM
5062
5414
  end
5063
5415
 
5064
5416
  class SQLServer
5417
+ # Bind interface
5418
+ attr_accessor :bind_interface
5419
+
5065
5420
  attr_accessor :database
5066
5421
  # A filter applied to the routing logic to pin datasource to nodes.
5067
5422
  attr_accessor :egress_filter
@@ -5091,6 +5446,7 @@ module SDM
5091
5446
  attr_accessor :username
5092
5447
 
5093
5448
  def initialize(
5449
+ bind_interface: nil,
5094
5450
  database: nil,
5095
5451
  egress_filter: nil,
5096
5452
  healthy: nil,
@@ -5106,6 +5462,7 @@ module SDM
5106
5462
  tags: nil,
5107
5463
  username: nil
5108
5464
  )
5465
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5109
5466
  @database = database == nil ? "" : database
5110
5467
  @egress_filter = egress_filter == nil ? "" : egress_filter
5111
5468
  @healthy = healthy == nil ? false : healthy
@@ -5133,6 +5490,8 @@ module SDM
5133
5490
 
5134
5491
  class SSH
5135
5492
  attr_accessor :allow_deprecated_key_exchanges
5493
+ # Bind interface
5494
+ attr_accessor :bind_interface
5136
5495
  # A filter applied to the routing logic to pin datasource to nodes.
5137
5496
  attr_accessor :egress_filter
5138
5497
  # True if the datasource is reachable and the credentials are valid.
@@ -5148,6 +5507,8 @@ module SDM
5148
5507
 
5149
5508
  attr_accessor :port_forwarding
5150
5509
 
5510
+ attr_accessor :port_override
5511
+
5151
5512
  attr_accessor :public_key
5152
5513
  # ID of the secret store containing credentials for this resource, if any.
5153
5514
  attr_accessor :secret_store_id
@@ -5158,6 +5519,7 @@ module SDM
5158
5519
 
5159
5520
  def initialize(
5160
5521
  allow_deprecated_key_exchanges: nil,
5522
+ bind_interface: nil,
5161
5523
  egress_filter: nil,
5162
5524
  healthy: nil,
5163
5525
  hostname: nil,
@@ -5165,12 +5527,14 @@ module SDM
5165
5527
  name: nil,
5166
5528
  port: nil,
5167
5529
  port_forwarding: nil,
5530
+ port_override: nil,
5168
5531
  public_key: nil,
5169
5532
  secret_store_id: nil,
5170
5533
  tags: nil,
5171
5534
  username: nil
5172
5535
  )
5173
5536
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5537
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5174
5538
  @egress_filter = egress_filter == nil ? "" : egress_filter
5175
5539
  @healthy = healthy == nil ? false : healthy
5176
5540
  @hostname = hostname == nil ? "" : hostname
@@ -5178,6 +5542,7 @@ module SDM
5178
5542
  @name = name == nil ? "" : name
5179
5543
  @port = port == nil ? 0 : port
5180
5544
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5545
+ @port_override = port_override == nil ? 0 : port_override
5181
5546
  @public_key = public_key == nil ? "" : public_key
5182
5547
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5183
5548
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
@@ -5195,6 +5560,8 @@ module SDM
5195
5560
 
5196
5561
  class SSHCert
5197
5562
  attr_accessor :allow_deprecated_key_exchanges
5563
+ # Bind interface
5564
+ attr_accessor :bind_interface
5198
5565
  # A filter applied to the routing logic to pin datasource to nodes.
5199
5566
  attr_accessor :egress_filter
5200
5567
  # True if the datasource is reachable and the credentials are valid.
@@ -5209,6 +5576,8 @@ module SDM
5209
5576
  attr_accessor :port
5210
5577
 
5211
5578
  attr_accessor :port_forwarding
5579
+
5580
+ attr_accessor :port_override
5212
5581
  # ID of the secret store containing credentials for this resource, if any.
5213
5582
  attr_accessor :secret_store_id
5214
5583
  # Tags is a map of key, value pairs.
@@ -5218,6 +5587,7 @@ module SDM
5218
5587
 
5219
5588
  def initialize(
5220
5589
  allow_deprecated_key_exchanges: nil,
5590
+ bind_interface: nil,
5221
5591
  egress_filter: nil,
5222
5592
  healthy: nil,
5223
5593
  hostname: nil,
@@ -5225,11 +5595,13 @@ module SDM
5225
5595
  name: nil,
5226
5596
  port: nil,
5227
5597
  port_forwarding: nil,
5598
+ port_override: nil,
5228
5599
  secret_store_id: nil,
5229
5600
  tags: nil,
5230
5601
  username: nil
5231
5602
  )
5232
5603
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5604
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5233
5605
  @egress_filter = egress_filter == nil ? "" : egress_filter
5234
5606
  @healthy = healthy == nil ? false : healthy
5235
5607
  @hostname = hostname == nil ? "" : hostname
@@ -5237,6 +5609,7 @@ module SDM
5237
5609
  @name = name == nil ? "" : name
5238
5610
  @port = port == nil ? 0 : port
5239
5611
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5612
+ @port_override = port_override == nil ? 0 : port_override
5240
5613
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5241
5614
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
5242
5615
  @username = username == nil ? "" : username
@@ -5253,6 +5626,8 @@ module SDM
5253
5626
 
5254
5627
  class SSHCustomerKey
5255
5628
  attr_accessor :allow_deprecated_key_exchanges
5629
+ # Bind interface
5630
+ attr_accessor :bind_interface
5256
5631
  # A filter applied to the routing logic to pin datasource to nodes.
5257
5632
  attr_accessor :egress_filter
5258
5633
  # True if the datasource is reachable and the credentials are valid.
@@ -5268,6 +5643,8 @@ module SDM
5268
5643
 
5269
5644
  attr_accessor :port_forwarding
5270
5645
 
5646
+ attr_accessor :port_override
5647
+
5271
5648
  attr_accessor :private_key
5272
5649
  # ID of the secret store containing credentials for this resource, if any.
5273
5650
  attr_accessor :secret_store_id
@@ -5278,6 +5655,7 @@ module SDM
5278
5655
 
5279
5656
  def initialize(
5280
5657
  allow_deprecated_key_exchanges: nil,
5658
+ bind_interface: nil,
5281
5659
  egress_filter: nil,
5282
5660
  healthy: nil,
5283
5661
  hostname: nil,
@@ -5285,12 +5663,14 @@ module SDM
5285
5663
  name: nil,
5286
5664
  port: nil,
5287
5665
  port_forwarding: nil,
5666
+ port_override: nil,
5288
5667
  private_key: nil,
5289
5668
  secret_store_id: nil,
5290
5669
  tags: nil,
5291
5670
  username: nil
5292
5671
  )
5293
5672
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5673
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5294
5674
  @egress_filter = egress_filter == nil ? "" : egress_filter
5295
5675
  @healthy = healthy == nil ? false : healthy
5296
5676
  @hostname = hostname == nil ? "" : hostname
@@ -5298,6 +5678,7 @@ module SDM
5298
5678
  @name = name == nil ? "" : name
5299
5679
  @port = port == nil ? 0 : port
5300
5680
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5681
+ @port_override = port_override == nil ? 0 : port_override
5301
5682
  @private_key = private_key == nil ? "" : private_key
5302
5683
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5303
5684
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
@@ -5456,6 +5837,9 @@ module SDM
5456
5837
  end
5457
5838
 
5458
5839
  class SingleStore
5840
+ # Bind interface
5841
+ attr_accessor :bind_interface
5842
+
5459
5843
  attr_accessor :database
5460
5844
  # A filter applied to the routing logic to pin datasource to nodes.
5461
5845
  attr_accessor :egress_filter
@@ -5481,6 +5865,7 @@ module SDM
5481
5865
  attr_accessor :username
5482
5866
 
5483
5867
  def initialize(
5868
+ bind_interface: nil,
5484
5869
  database: nil,
5485
5870
  egress_filter: nil,
5486
5871
  healthy: nil,
@@ -5494,6 +5879,7 @@ module SDM
5494
5879
  tags: nil,
5495
5880
  username: nil
5496
5881
  )
5882
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5497
5883
  @database = database == nil ? "" : database
5498
5884
  @egress_filter = egress_filter == nil ? "" : egress_filter
5499
5885
  @healthy = healthy == nil ? false : healthy
@@ -5518,6 +5904,9 @@ module SDM
5518
5904
  end
5519
5905
 
5520
5906
  class Snowflake
5907
+ # Bind interface
5908
+ attr_accessor :bind_interface
5909
+
5521
5910
  attr_accessor :database
5522
5911
  # A filter applied to the routing logic to pin datasource to nodes.
5523
5912
  attr_accessor :egress_filter
@@ -5543,6 +5932,7 @@ module SDM
5543
5932
  attr_accessor :username
5544
5933
 
5545
5934
  def initialize(
5935
+ bind_interface: nil,
5546
5936
  database: nil,
5547
5937
  egress_filter: nil,
5548
5938
  healthy: nil,
@@ -5556,6 +5946,7 @@ module SDM
5556
5946
  tags: nil,
5557
5947
  username: nil
5558
5948
  )
5949
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5559
5950
  @database = database == nil ? "" : database
5560
5951
  @egress_filter = egress_filter == nil ? "" : egress_filter
5561
5952
  @healthy = healthy == nil ? false : healthy
@@ -5580,6 +5971,8 @@ module SDM
5580
5971
  end
5581
5972
 
5582
5973
  class Sybase
5974
+ # Bind interface
5975
+ attr_accessor :bind_interface
5583
5976
  # A filter applied to the routing logic to pin datasource to nodes.
5584
5977
  attr_accessor :egress_filter
5585
5978
  # True if the datasource is reachable and the credentials are valid.
@@ -5604,6 +5997,7 @@ module SDM
5604
5997
  attr_accessor :username
5605
5998
 
5606
5999
  def initialize(
6000
+ bind_interface: nil,
5607
6001
  egress_filter: nil,
5608
6002
  healthy: nil,
5609
6003
  hostname: nil,
@@ -5616,6 +6010,7 @@ module SDM
5616
6010
  tags: nil,
5617
6011
  username: nil
5618
6012
  )
6013
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5619
6014
  @egress_filter = egress_filter == nil ? "" : egress_filter
5620
6015
  @healthy = healthy == nil ? false : healthy
5621
6016
  @hostname = hostname == nil ? "" : hostname
@@ -5639,6 +6034,8 @@ module SDM
5639
6034
  end
5640
6035
 
5641
6036
  class SybaseIQ
6037
+ # Bind interface
6038
+ attr_accessor :bind_interface
5642
6039
  # A filter applied to the routing logic to pin datasource to nodes.
5643
6040
  attr_accessor :egress_filter
5644
6041
  # True if the datasource is reachable and the credentials are valid.
@@ -5663,6 +6060,7 @@ module SDM
5663
6060
  attr_accessor :username
5664
6061
 
5665
6062
  def initialize(
6063
+ bind_interface: nil,
5666
6064
  egress_filter: nil,
5667
6065
  healthy: nil,
5668
6066
  hostname: nil,
@@ -5675,6 +6073,7 @@ module SDM
5675
6073
  tags: nil,
5676
6074
  username: nil
5677
6075
  )
6076
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5678
6077
  @egress_filter = egress_filter == nil ? "" : egress_filter
5679
6078
  @healthy = healthy == nil ? false : healthy
5680
6079
  @hostname = hostname == nil ? "" : hostname
@@ -5720,6 +6119,8 @@ module SDM
5720
6119
  end
5721
6120
 
5722
6121
  class Teradata
6122
+ # Bind interface
6123
+ attr_accessor :bind_interface
5723
6124
  # A filter applied to the routing logic to pin datasource to nodes.
5724
6125
  attr_accessor :egress_filter
5725
6126
  # True if the datasource is reachable and the credentials are valid.
@@ -5744,6 +6145,7 @@ module SDM
5744
6145
  attr_accessor :username
5745
6146
 
5746
6147
  def initialize(
6148
+ bind_interface: nil,
5747
6149
  egress_filter: nil,
5748
6150
  healthy: nil,
5749
6151
  hostname: nil,
@@ -5756,6 +6158,7 @@ module SDM
5756
6158
  tags: nil,
5757
6159
  username: nil
5758
6160
  )
6161
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5759
6162
  @egress_filter = egress_filter == nil ? "" : egress_filter
5760
6163
  @healthy = healthy == nil ? false : healthy
5761
6164
  @hostname = hostname == nil ? "" : hostname