strongdm 2.2.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -3101,6 +3281,9 @@ module SDM
3101
3281
  end
3102
3282
 
3103
3283
  class MTLSMysql
3284
+ # Bind interface
3285
+ attr_accessor :bind_interface
3286
+
3104
3287
  attr_accessor :certificate_authority
3105
3288
 
3106
3289
  attr_accessor :client_certificate
@@ -3134,6 +3317,7 @@ module SDM
3134
3317
  attr_accessor :username
3135
3318
 
3136
3319
  def initialize(
3320
+ bind_interface: nil,
3137
3321
  certificate_authority: nil,
3138
3322
  client_certificate: nil,
3139
3323
  client_key: nil,
@@ -3151,6 +3335,7 @@ module SDM
3151
3335
  tags: nil,
3152
3336
  username: nil
3153
3337
  )
3338
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3154
3339
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
3155
3340
  @client_certificate = client_certificate == nil ? "" : client_certificate
3156
3341
  @client_key = client_key == nil ? "" : client_key
@@ -3179,6 +3364,9 @@ module SDM
3179
3364
  end
3180
3365
 
3181
3366
  class MTLSPostgres
3367
+ # Bind interface
3368
+ attr_accessor :bind_interface
3369
+
3182
3370
  attr_accessor :certificate_authority
3183
3371
 
3184
3372
  attr_accessor :client_certificate
@@ -3214,6 +3402,7 @@ module SDM
3214
3402
  attr_accessor :username
3215
3403
 
3216
3404
  def initialize(
3405
+ bind_interface: nil,
3217
3406
  certificate_authority: nil,
3218
3407
  client_certificate: nil,
3219
3408
  client_key: nil,
@@ -3232,6 +3421,7 @@ module SDM
3232
3421
  tags: nil,
3233
3422
  username: nil
3234
3423
  )
3424
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3235
3425
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
3236
3426
  @client_certificate = client_certificate == nil ? "" : client_certificate
3237
3427
  @client_key = client_key == nil ? "" : client_key
@@ -3261,6 +3451,9 @@ module SDM
3261
3451
  end
3262
3452
 
3263
3453
  class Maria
3454
+ # Bind interface
3455
+ attr_accessor :bind_interface
3456
+
3264
3457
  attr_accessor :database
3265
3458
  # A filter applied to the routing logic to pin datasource to nodes.
3266
3459
  attr_accessor :egress_filter
@@ -3286,6 +3479,7 @@ module SDM
3286
3479
  attr_accessor :username
3287
3480
 
3288
3481
  def initialize(
3482
+ bind_interface: nil,
3289
3483
  database: nil,
3290
3484
  egress_filter: nil,
3291
3485
  healthy: nil,
@@ -3299,6 +3493,7 @@ module SDM
3299
3493
  tags: nil,
3300
3494
  username: nil
3301
3495
  )
3496
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3302
3497
  @database = database == nil ? "" : database
3303
3498
  @egress_filter = egress_filter == nil ? "" : egress_filter
3304
3499
  @healthy = healthy == nil ? false : healthy
@@ -3323,6 +3518,8 @@ module SDM
3323
3518
  end
3324
3519
 
3325
3520
  class Memcached
3521
+ # Bind interface
3522
+ attr_accessor :bind_interface
3326
3523
  # A filter applied to the routing logic to pin datasource to nodes.
3327
3524
  attr_accessor :egress_filter
3328
3525
  # True if the datasource is reachable and the credentials are valid.
@@ -3343,6 +3540,7 @@ module SDM
3343
3540
  attr_accessor :tags
3344
3541
 
3345
3542
  def initialize(
3543
+ bind_interface: nil,
3346
3544
  egress_filter: nil,
3347
3545
  healthy: nil,
3348
3546
  hostname: nil,
@@ -3353,6 +3551,7 @@ module SDM
3353
3551
  secret_store_id: nil,
3354
3552
  tags: nil
3355
3553
  )
3554
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3356
3555
  @egress_filter = egress_filter == nil ? "" : egress_filter
3357
3556
  @healthy = healthy == nil ? false : healthy
3358
3557
  @hostname = hostname == nil ? "" : hostname
@@ -3374,6 +3573,9 @@ module SDM
3374
3573
  end
3375
3574
 
3376
3575
  class Memsql
3576
+ # Bind interface
3577
+ attr_accessor :bind_interface
3578
+
3377
3579
  attr_accessor :database
3378
3580
  # A filter applied to the routing logic to pin datasource to nodes.
3379
3581
  attr_accessor :egress_filter
@@ -3399,6 +3601,7 @@ module SDM
3399
3601
  attr_accessor :username
3400
3602
 
3401
3603
  def initialize(
3604
+ bind_interface: nil,
3402
3605
  database: nil,
3403
3606
  egress_filter: nil,
3404
3607
  healthy: nil,
@@ -3412,6 +3615,7 @@ module SDM
3412
3615
  tags: nil,
3413
3616
  username: nil
3414
3617
  )
3618
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3415
3619
  @database = database == nil ? "" : database
3416
3620
  @egress_filter = egress_filter == nil ? "" : egress_filter
3417
3621
  @healthy = healthy == nil ? false : healthy
@@ -3437,6 +3641,8 @@ module SDM
3437
3641
 
3438
3642
  class MongoHost
3439
3643
  attr_accessor :auth_database
3644
+ # Bind interface
3645
+ attr_accessor :bind_interface
3440
3646
  # A filter applied to the routing logic to pin datasource to nodes.
3441
3647
  attr_accessor :egress_filter
3442
3648
  # True if the datasource is reachable and the credentials are valid.
@@ -3464,6 +3670,7 @@ module SDM
3464
3670
 
3465
3671
  def initialize(
3466
3672
  auth_database: nil,
3673
+ bind_interface: nil,
3467
3674
  egress_filter: nil,
3468
3675
  healthy: nil,
3469
3676
  hostname: nil,
@@ -3478,6 +3685,7 @@ module SDM
3478
3685
  username: nil
3479
3686
  )
3480
3687
  @auth_database = auth_database == nil ? "" : auth_database
3688
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3481
3689
  @egress_filter = egress_filter == nil ? "" : egress_filter
3482
3690
  @healthy = healthy == nil ? false : healthy
3483
3691
  @hostname = hostname == nil ? "" : hostname
@@ -3503,6 +3711,8 @@ module SDM
3503
3711
 
3504
3712
  class MongoLegacyHost
3505
3713
  attr_accessor :auth_database
3714
+ # Bind interface
3715
+ attr_accessor :bind_interface
3506
3716
  # A filter applied to the routing logic to pin datasource to nodes.
3507
3717
  attr_accessor :egress_filter
3508
3718
  # True if the datasource is reachable and the credentials are valid.
@@ -3532,6 +3742,7 @@ module SDM
3532
3742
 
3533
3743
  def initialize(
3534
3744
  auth_database: nil,
3745
+ bind_interface: nil,
3535
3746
  egress_filter: nil,
3536
3747
  healthy: nil,
3537
3748
  hostname: nil,
@@ -3547,6 +3758,7 @@ module SDM
3547
3758
  username: nil
3548
3759
  )
3549
3760
  @auth_database = auth_database == nil ? "" : auth_database
3761
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3550
3762
  @egress_filter = egress_filter == nil ? "" : egress_filter
3551
3763
  @healthy = healthy == nil ? false : healthy
3552
3764
  @hostname = hostname == nil ? "" : hostname
@@ -3573,6 +3785,8 @@ module SDM
3573
3785
 
3574
3786
  class MongoLegacyReplicaset
3575
3787
  attr_accessor :auth_database
3788
+ # Bind interface
3789
+ attr_accessor :bind_interface
3576
3790
 
3577
3791
  attr_accessor :connect_to_replica
3578
3792
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -3604,6 +3818,7 @@ module SDM
3604
3818
 
3605
3819
  def initialize(
3606
3820
  auth_database: nil,
3821
+ bind_interface: nil,
3607
3822
  connect_to_replica: nil,
3608
3823
  egress_filter: nil,
3609
3824
  healthy: nil,
@@ -3620,6 +3835,7 @@ module SDM
3620
3835
  username: nil
3621
3836
  )
3622
3837
  @auth_database = auth_database == nil ? "" : auth_database
3838
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3623
3839
  @connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
3624
3840
  @egress_filter = egress_filter == nil ? "" : egress_filter
3625
3841
  @healthy = healthy == nil ? false : healthy
@@ -3647,6 +3863,8 @@ module SDM
3647
3863
 
3648
3864
  class MongoReplicaSet
3649
3865
  attr_accessor :auth_database
3866
+ # Bind interface
3867
+ attr_accessor :bind_interface
3650
3868
 
3651
3869
  attr_accessor :connect_to_replica
3652
3870
  # A filter applied to the routing logic to pin datasource to nodes.
@@ -3678,6 +3896,7 @@ module SDM
3678
3896
 
3679
3897
  def initialize(
3680
3898
  auth_database: nil,
3899
+ bind_interface: nil,
3681
3900
  connect_to_replica: nil,
3682
3901
  egress_filter: nil,
3683
3902
  healthy: nil,
@@ -3694,6 +3913,7 @@ module SDM
3694
3913
  username: nil
3695
3914
  )
3696
3915
  @auth_database = auth_database == nil ? "" : auth_database
3916
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3697
3917
  @connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
3698
3918
  @egress_filter = egress_filter == nil ? "" : egress_filter
3699
3919
  @healthy = healthy == nil ? false : healthy
@@ -3721,6 +3941,8 @@ module SDM
3721
3941
 
3722
3942
  class MongoShardedCluster
3723
3943
  attr_accessor :auth_database
3944
+ # Bind interface
3945
+ attr_accessor :bind_interface
3724
3946
  # A filter applied to the routing logic to pin datasource to nodes.
3725
3947
  attr_accessor :egress_filter
3726
3948
  # True if the datasource is reachable and the credentials are valid.
@@ -3746,6 +3968,7 @@ module SDM
3746
3968
 
3747
3969
  def initialize(
3748
3970
  auth_database: nil,
3971
+ bind_interface: nil,
3749
3972
  egress_filter: nil,
3750
3973
  healthy: nil,
3751
3974
  hostname: nil,
@@ -3759,6 +3982,7 @@ module SDM
3759
3982
  username: nil
3760
3983
  )
3761
3984
  @auth_database = auth_database == nil ? "" : auth_database
3985
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3762
3986
  @egress_filter = egress_filter == nil ? "" : egress_filter
3763
3987
  @healthy = healthy == nil ? false : healthy
3764
3988
  @hostname = hostname == nil ? "" : hostname
@@ -3782,6 +4006,9 @@ module SDM
3782
4006
  end
3783
4007
 
3784
4008
  class Mysql
4009
+ # Bind interface
4010
+ attr_accessor :bind_interface
4011
+
3785
4012
  attr_accessor :database
3786
4013
  # A filter applied to the routing logic to pin datasource to nodes.
3787
4014
  attr_accessor :egress_filter
@@ -3807,6 +4034,7 @@ module SDM
3807
4034
  attr_accessor :username
3808
4035
 
3809
4036
  def initialize(
4037
+ bind_interface: nil,
3810
4038
  database: nil,
3811
4039
  egress_filter: nil,
3812
4040
  healthy: nil,
@@ -3820,6 +4048,7 @@ module SDM
3820
4048
  tags: nil,
3821
4049
  username: nil
3822
4050
  )
4051
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3823
4052
  @database = database == nil ? "" : database
3824
4053
  @egress_filter = egress_filter == nil ? "" : egress_filter
3825
4054
  @healthy = healthy == nil ? false : healthy
@@ -3844,6 +4073,8 @@ module SDM
3844
4073
  end
3845
4074
 
3846
4075
  class Neptune
4076
+ # Bind interface
4077
+ attr_accessor :bind_interface
3847
4078
  # A filter applied to the routing logic to pin datasource to nodes.
3848
4079
  attr_accessor :egress_filter
3849
4080
 
@@ -3864,6 +4095,7 @@ module SDM
3864
4095
  attr_accessor :tags
3865
4096
 
3866
4097
  def initialize(
4098
+ bind_interface: nil,
3867
4099
  egress_filter: nil,
3868
4100
  endpoint: nil,
3869
4101
  healthy: nil,
@@ -3874,6 +4106,7 @@ module SDM
3874
4106
  secret_store_id: nil,
3875
4107
  tags: nil
3876
4108
  )
4109
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3877
4110
  @egress_filter = egress_filter == nil ? "" : egress_filter
3878
4111
  @endpoint = endpoint == nil ? "" : endpoint
3879
4112
  @healthy = healthy == nil ? false : healthy
@@ -3896,6 +4129,8 @@ module SDM
3896
4129
 
3897
4130
  class NeptuneIAM
3898
4131
  attr_accessor :access_key
4132
+ # Bind interface
4133
+ attr_accessor :bind_interface
3899
4134
  # A filter applied to the routing logic to pin datasource to nodes.
3900
4135
  attr_accessor :egress_filter
3901
4136
 
@@ -3925,6 +4160,7 @@ module SDM
3925
4160
 
3926
4161
  def initialize(
3927
4162
  access_key: nil,
4163
+ bind_interface: nil,
3928
4164
  egress_filter: nil,
3929
4165
  endpoint: nil,
3930
4166
  healthy: nil,
@@ -3940,6 +4176,7 @@ module SDM
3940
4176
  tags: nil
3941
4177
  )
3942
4178
  @access_key = access_key == nil ? "" : access_key
4179
+ @bind_interface = bind_interface == nil ? "" : bind_interface
3943
4180
  @egress_filter = egress_filter == nil ? "" : egress_filter
3944
4181
  @endpoint = endpoint == nil ? "" : endpoint
3945
4182
  @healthy = healthy == nil ? false : healthy
@@ -4079,6 +4316,9 @@ module SDM
4079
4316
  end
4080
4317
 
4081
4318
  class Oracle
4319
+ # Bind interface
4320
+ attr_accessor :bind_interface
4321
+
4082
4322
  attr_accessor :database
4083
4323
  # A filter applied to the routing logic to pin datasource to nodes.
4084
4324
  attr_accessor :egress_filter
@@ -4106,6 +4346,7 @@ module SDM
4106
4346
  attr_accessor :username
4107
4347
 
4108
4348
  def initialize(
4349
+ bind_interface: nil,
4109
4350
  database: nil,
4110
4351
  egress_filter: nil,
4111
4352
  healthy: nil,
@@ -4120,6 +4361,7 @@ module SDM
4120
4361
  tls_required: nil,
4121
4362
  username: nil
4122
4363
  )
4364
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4123
4365
  @database = database == nil ? "" : database
4124
4366
  @egress_filter = egress_filter == nil ? "" : egress_filter
4125
4367
  @healthy = healthy == nil ? false : healthy
@@ -4145,6 +4387,9 @@ module SDM
4145
4387
  end
4146
4388
 
4147
4389
  class Postgres
4390
+ # Bind interface
4391
+ attr_accessor :bind_interface
4392
+
4148
4393
  attr_accessor :database
4149
4394
  # A filter applied to the routing logic to pin datasource to nodes.
4150
4395
  attr_accessor :egress_filter
@@ -4172,6 +4417,7 @@ module SDM
4172
4417
  attr_accessor :username
4173
4418
 
4174
4419
  def initialize(
4420
+ bind_interface: nil,
4175
4421
  database: nil,
4176
4422
  egress_filter: nil,
4177
4423
  healthy: nil,
@@ -4186,6 +4432,7 @@ module SDM
4186
4432
  tags: nil,
4187
4433
  username: nil
4188
4434
  )
4435
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4189
4436
  @database = database == nil ? "" : database
4190
4437
  @egress_filter = egress_filter == nil ? "" : egress_filter
4191
4438
  @healthy = healthy == nil ? false : healthy
@@ -4211,6 +4458,9 @@ module SDM
4211
4458
  end
4212
4459
 
4213
4460
  class Presto
4461
+ # Bind interface
4462
+ attr_accessor :bind_interface
4463
+
4214
4464
  attr_accessor :database
4215
4465
  # A filter applied to the routing logic to pin datasource to nodes.
4216
4466
  attr_accessor :egress_filter
@@ -4238,6 +4488,7 @@ module SDM
4238
4488
  attr_accessor :username
4239
4489
 
4240
4490
  def initialize(
4491
+ bind_interface: nil,
4241
4492
  database: nil,
4242
4493
  egress_filter: nil,
4243
4494
  healthy: nil,
@@ -4252,6 +4503,7 @@ module SDM
4252
4503
  tls_required: nil,
4253
4504
  username: nil
4254
4505
  )
4506
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4255
4507
  @database = database == nil ? "" : database
4256
4508
  @egress_filter = egress_filter == nil ? "" : egress_filter
4257
4509
  @healthy = healthy == nil ? false : healthy
@@ -4277,6 +4529,9 @@ module SDM
4277
4529
  end
4278
4530
 
4279
4531
  class RDP
4532
+ # Bind interface
4533
+ attr_accessor :bind_interface
4534
+
4280
4535
  attr_accessor :downgrade_nla_connections
4281
4536
  # A filter applied to the routing logic to pin datasource to nodes.
4282
4537
  attr_accessor :egress_filter
@@ -4302,6 +4557,7 @@ module SDM
4302
4557
  attr_accessor :username
4303
4558
 
4304
4559
  def initialize(
4560
+ bind_interface: nil,
4305
4561
  downgrade_nla_connections: nil,
4306
4562
  egress_filter: nil,
4307
4563
  healthy: nil,
@@ -4315,6 +4571,7 @@ module SDM
4315
4571
  tags: nil,
4316
4572
  username: nil
4317
4573
  )
4574
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4318
4575
  @downgrade_nla_connections = downgrade_nla_connections == nil ? false : downgrade_nla_connections
4319
4576
  @egress_filter = egress_filter == nil ? "" : egress_filter
4320
4577
  @healthy = healthy == nil ? false : healthy
@@ -4339,6 +4596,8 @@ module SDM
4339
4596
  end
4340
4597
 
4341
4598
  class RabbitMQAMQP091
4599
+ # Bind interface
4600
+ attr_accessor :bind_interface
4342
4601
  # A filter applied to the routing logic to pin datasource to nodes.
4343
4602
  attr_accessor :egress_filter
4344
4603
  # True if the datasource is reachable and the credentials are valid.
@@ -4365,6 +4624,7 @@ module SDM
4365
4624
  attr_accessor :username
4366
4625
 
4367
4626
  def initialize(
4627
+ bind_interface: nil,
4368
4628
  egress_filter: nil,
4369
4629
  healthy: nil,
4370
4630
  hostname: nil,
@@ -4378,6 +4638,7 @@ module SDM
4378
4638
  tls_required: nil,
4379
4639
  username: nil
4380
4640
  )
4641
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4381
4642
  @egress_filter = egress_filter == nil ? "" : egress_filter
4382
4643
  @healthy = healthy == nil ? false : healthy
4383
4644
  @hostname = hostname == nil ? "" : hostname
@@ -4437,6 +4698,8 @@ module SDM
4437
4698
  end
4438
4699
 
4439
4700
  class RawTCP
4701
+ # Bind interface
4702
+ attr_accessor :bind_interface
4440
4703
  # A filter applied to the routing logic to pin datasource to nodes.
4441
4704
  attr_accessor :egress_filter
4442
4705
  # True if the datasource is reachable and the credentials are valid.
@@ -4457,6 +4720,7 @@ module SDM
4457
4720
  attr_accessor :tags
4458
4721
 
4459
4722
  def initialize(
4723
+ bind_interface: nil,
4460
4724
  egress_filter: nil,
4461
4725
  healthy: nil,
4462
4726
  hostname: nil,
@@ -4467,6 +4731,7 @@ module SDM
4467
4731
  secret_store_id: nil,
4468
4732
  tags: nil
4469
4733
  )
4734
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4470
4735
  @egress_filter = egress_filter == nil ? "" : egress_filter
4471
4736
  @healthy = healthy == nil ? false : healthy
4472
4737
  @hostname = hostname == nil ? "" : hostname
@@ -4488,6 +4753,8 @@ module SDM
4488
4753
  end
4489
4754
 
4490
4755
  class Redis
4756
+ # Bind interface
4757
+ attr_accessor :bind_interface
4491
4758
  # A filter applied to the routing logic to pin datasource to nodes.
4492
4759
  attr_accessor :egress_filter
4493
4760
  # True if the datasource is reachable and the credentials are valid.
@@ -4510,6 +4777,7 @@ module SDM
4510
4777
  attr_accessor :tags
4511
4778
 
4512
4779
  def initialize(
4780
+ bind_interface: nil,
4513
4781
  egress_filter: nil,
4514
4782
  healthy: nil,
4515
4783
  hostname: nil,
@@ -4521,6 +4789,7 @@ module SDM
4521
4789
  secret_store_id: nil,
4522
4790
  tags: nil
4523
4791
  )
4792
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4524
4793
  @egress_filter = egress_filter == nil ? "" : egress_filter
4525
4794
  @healthy = healthy == nil ? false : healthy
4526
4795
  @hostname = hostname == nil ? "" : hostname
@@ -4543,6 +4812,9 @@ module SDM
4543
4812
  end
4544
4813
 
4545
4814
  class Redshift
4815
+ # Bind interface
4816
+ attr_accessor :bind_interface
4817
+
4546
4818
  attr_accessor :database
4547
4819
  # A filter applied to the routing logic to pin datasource to nodes.
4548
4820
  attr_accessor :egress_filter
@@ -4570,6 +4842,7 @@ module SDM
4570
4842
  attr_accessor :username
4571
4843
 
4572
4844
  def initialize(
4845
+ bind_interface: nil,
4573
4846
  database: nil,
4574
4847
  egress_filter: nil,
4575
4848
  healthy: nil,
@@ -4584,6 +4857,7 @@ module SDM
4584
4857
  tags: nil,
4585
4858
  username: nil
4586
4859
  )
4860
+ @bind_interface = bind_interface == nil ? "" : bind_interface
4587
4861
  @database = database == nil ? "" : database
4588
4862
  @egress_filter = egress_filter == nil ? "" : egress_filter
4589
4863
  @healthy = healthy == nil ? false : healthy
@@ -5140,6 +5414,9 @@ module SDM
5140
5414
  end
5141
5415
 
5142
5416
  class SQLServer
5417
+ # Bind interface
5418
+ attr_accessor :bind_interface
5419
+
5143
5420
  attr_accessor :database
5144
5421
  # A filter applied to the routing logic to pin datasource to nodes.
5145
5422
  attr_accessor :egress_filter
@@ -5169,6 +5446,7 @@ module SDM
5169
5446
  attr_accessor :username
5170
5447
 
5171
5448
  def initialize(
5449
+ bind_interface: nil,
5172
5450
  database: nil,
5173
5451
  egress_filter: nil,
5174
5452
  healthy: nil,
@@ -5184,6 +5462,7 @@ module SDM
5184
5462
  tags: nil,
5185
5463
  username: nil
5186
5464
  )
5465
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5187
5466
  @database = database == nil ? "" : database
5188
5467
  @egress_filter = egress_filter == nil ? "" : egress_filter
5189
5468
  @healthy = healthy == nil ? false : healthy
@@ -5211,6 +5490,8 @@ module SDM
5211
5490
 
5212
5491
  class SSH
5213
5492
  attr_accessor :allow_deprecated_key_exchanges
5493
+ # Bind interface
5494
+ attr_accessor :bind_interface
5214
5495
  # A filter applied to the routing logic to pin datasource to nodes.
5215
5496
  attr_accessor :egress_filter
5216
5497
  # True if the datasource is reachable and the credentials are valid.
@@ -5226,6 +5507,8 @@ module SDM
5226
5507
 
5227
5508
  attr_accessor :port_forwarding
5228
5509
 
5510
+ attr_accessor :port_override
5511
+
5229
5512
  attr_accessor :public_key
5230
5513
  # ID of the secret store containing credentials for this resource, if any.
5231
5514
  attr_accessor :secret_store_id
@@ -5236,6 +5519,7 @@ module SDM
5236
5519
 
5237
5520
  def initialize(
5238
5521
  allow_deprecated_key_exchanges: nil,
5522
+ bind_interface: nil,
5239
5523
  egress_filter: nil,
5240
5524
  healthy: nil,
5241
5525
  hostname: nil,
@@ -5243,12 +5527,14 @@ module SDM
5243
5527
  name: nil,
5244
5528
  port: nil,
5245
5529
  port_forwarding: nil,
5530
+ port_override: nil,
5246
5531
  public_key: nil,
5247
5532
  secret_store_id: nil,
5248
5533
  tags: nil,
5249
5534
  username: nil
5250
5535
  )
5251
5536
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5537
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5252
5538
  @egress_filter = egress_filter == nil ? "" : egress_filter
5253
5539
  @healthy = healthy == nil ? false : healthy
5254
5540
  @hostname = hostname == nil ? "" : hostname
@@ -5256,6 +5542,7 @@ module SDM
5256
5542
  @name = name == nil ? "" : name
5257
5543
  @port = port == nil ? 0 : port
5258
5544
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5545
+ @port_override = port_override == nil ? 0 : port_override
5259
5546
  @public_key = public_key == nil ? "" : public_key
5260
5547
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5261
5548
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
@@ -5273,6 +5560,8 @@ module SDM
5273
5560
 
5274
5561
  class SSHCert
5275
5562
  attr_accessor :allow_deprecated_key_exchanges
5563
+ # Bind interface
5564
+ attr_accessor :bind_interface
5276
5565
  # A filter applied to the routing logic to pin datasource to nodes.
5277
5566
  attr_accessor :egress_filter
5278
5567
  # True if the datasource is reachable and the credentials are valid.
@@ -5287,6 +5576,8 @@ module SDM
5287
5576
  attr_accessor :port
5288
5577
 
5289
5578
  attr_accessor :port_forwarding
5579
+
5580
+ attr_accessor :port_override
5290
5581
  # ID of the secret store containing credentials for this resource, if any.
5291
5582
  attr_accessor :secret_store_id
5292
5583
  # Tags is a map of key, value pairs.
@@ -5296,6 +5587,7 @@ module SDM
5296
5587
 
5297
5588
  def initialize(
5298
5589
  allow_deprecated_key_exchanges: nil,
5590
+ bind_interface: nil,
5299
5591
  egress_filter: nil,
5300
5592
  healthy: nil,
5301
5593
  hostname: nil,
@@ -5303,11 +5595,13 @@ module SDM
5303
5595
  name: nil,
5304
5596
  port: nil,
5305
5597
  port_forwarding: nil,
5598
+ port_override: nil,
5306
5599
  secret_store_id: nil,
5307
5600
  tags: nil,
5308
5601
  username: nil
5309
5602
  )
5310
5603
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5604
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5311
5605
  @egress_filter = egress_filter == nil ? "" : egress_filter
5312
5606
  @healthy = healthy == nil ? false : healthy
5313
5607
  @hostname = hostname == nil ? "" : hostname
@@ -5315,6 +5609,7 @@ module SDM
5315
5609
  @name = name == nil ? "" : name
5316
5610
  @port = port == nil ? 0 : port
5317
5611
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5612
+ @port_override = port_override == nil ? 0 : port_override
5318
5613
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5319
5614
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
5320
5615
  @username = username == nil ? "" : username
@@ -5331,6 +5626,8 @@ module SDM
5331
5626
 
5332
5627
  class SSHCustomerKey
5333
5628
  attr_accessor :allow_deprecated_key_exchanges
5629
+ # Bind interface
5630
+ attr_accessor :bind_interface
5334
5631
  # A filter applied to the routing logic to pin datasource to nodes.
5335
5632
  attr_accessor :egress_filter
5336
5633
  # True if the datasource is reachable and the credentials are valid.
@@ -5346,6 +5643,8 @@ module SDM
5346
5643
 
5347
5644
  attr_accessor :port_forwarding
5348
5645
 
5646
+ attr_accessor :port_override
5647
+
5349
5648
  attr_accessor :private_key
5350
5649
  # ID of the secret store containing credentials for this resource, if any.
5351
5650
  attr_accessor :secret_store_id
@@ -5356,6 +5655,7 @@ module SDM
5356
5655
 
5357
5656
  def initialize(
5358
5657
  allow_deprecated_key_exchanges: nil,
5658
+ bind_interface: nil,
5359
5659
  egress_filter: nil,
5360
5660
  healthy: nil,
5361
5661
  hostname: nil,
@@ -5363,12 +5663,14 @@ module SDM
5363
5663
  name: nil,
5364
5664
  port: nil,
5365
5665
  port_forwarding: nil,
5666
+ port_override: nil,
5366
5667
  private_key: nil,
5367
5668
  secret_store_id: nil,
5368
5669
  tags: nil,
5369
5670
  username: nil
5370
5671
  )
5371
5672
  @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
5673
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5372
5674
  @egress_filter = egress_filter == nil ? "" : egress_filter
5373
5675
  @healthy = healthy == nil ? false : healthy
5374
5676
  @hostname = hostname == nil ? "" : hostname
@@ -5376,6 +5678,7 @@ module SDM
5376
5678
  @name = name == nil ? "" : name
5377
5679
  @port = port == nil ? 0 : port
5378
5680
  @port_forwarding = port_forwarding == nil ? false : port_forwarding
5681
+ @port_override = port_override == nil ? 0 : port_override
5379
5682
  @private_key = private_key == nil ? "" : private_key
5380
5683
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
5381
5684
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
@@ -5534,6 +5837,9 @@ module SDM
5534
5837
  end
5535
5838
 
5536
5839
  class SingleStore
5840
+ # Bind interface
5841
+ attr_accessor :bind_interface
5842
+
5537
5843
  attr_accessor :database
5538
5844
  # A filter applied to the routing logic to pin datasource to nodes.
5539
5845
  attr_accessor :egress_filter
@@ -5559,6 +5865,7 @@ module SDM
5559
5865
  attr_accessor :username
5560
5866
 
5561
5867
  def initialize(
5868
+ bind_interface: nil,
5562
5869
  database: nil,
5563
5870
  egress_filter: nil,
5564
5871
  healthy: nil,
@@ -5572,6 +5879,7 @@ module SDM
5572
5879
  tags: nil,
5573
5880
  username: nil
5574
5881
  )
5882
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5575
5883
  @database = database == nil ? "" : database
5576
5884
  @egress_filter = egress_filter == nil ? "" : egress_filter
5577
5885
  @healthy = healthy == nil ? false : healthy
@@ -5596,6 +5904,9 @@ module SDM
5596
5904
  end
5597
5905
 
5598
5906
  class Snowflake
5907
+ # Bind interface
5908
+ attr_accessor :bind_interface
5909
+
5599
5910
  attr_accessor :database
5600
5911
  # A filter applied to the routing logic to pin datasource to nodes.
5601
5912
  attr_accessor :egress_filter
@@ -5621,6 +5932,7 @@ module SDM
5621
5932
  attr_accessor :username
5622
5933
 
5623
5934
  def initialize(
5935
+ bind_interface: nil,
5624
5936
  database: nil,
5625
5937
  egress_filter: nil,
5626
5938
  healthy: nil,
@@ -5634,6 +5946,7 @@ module SDM
5634
5946
  tags: nil,
5635
5947
  username: nil
5636
5948
  )
5949
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5637
5950
  @database = database == nil ? "" : database
5638
5951
  @egress_filter = egress_filter == nil ? "" : egress_filter
5639
5952
  @healthy = healthy == nil ? false : healthy
@@ -5658,6 +5971,8 @@ module SDM
5658
5971
  end
5659
5972
 
5660
5973
  class Sybase
5974
+ # Bind interface
5975
+ attr_accessor :bind_interface
5661
5976
  # A filter applied to the routing logic to pin datasource to nodes.
5662
5977
  attr_accessor :egress_filter
5663
5978
  # True if the datasource is reachable and the credentials are valid.
@@ -5682,6 +5997,7 @@ module SDM
5682
5997
  attr_accessor :username
5683
5998
 
5684
5999
  def initialize(
6000
+ bind_interface: nil,
5685
6001
  egress_filter: nil,
5686
6002
  healthy: nil,
5687
6003
  hostname: nil,
@@ -5694,6 +6010,7 @@ module SDM
5694
6010
  tags: nil,
5695
6011
  username: nil
5696
6012
  )
6013
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5697
6014
  @egress_filter = egress_filter == nil ? "" : egress_filter
5698
6015
  @healthy = healthy == nil ? false : healthy
5699
6016
  @hostname = hostname == nil ? "" : hostname
@@ -5717,6 +6034,8 @@ module SDM
5717
6034
  end
5718
6035
 
5719
6036
  class SybaseIQ
6037
+ # Bind interface
6038
+ attr_accessor :bind_interface
5720
6039
  # A filter applied to the routing logic to pin datasource to nodes.
5721
6040
  attr_accessor :egress_filter
5722
6041
  # True if the datasource is reachable and the credentials are valid.
@@ -5741,6 +6060,7 @@ module SDM
5741
6060
  attr_accessor :username
5742
6061
 
5743
6062
  def initialize(
6063
+ bind_interface: nil,
5744
6064
  egress_filter: nil,
5745
6065
  healthy: nil,
5746
6066
  hostname: nil,
@@ -5753,6 +6073,7 @@ module SDM
5753
6073
  tags: nil,
5754
6074
  username: nil
5755
6075
  )
6076
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5756
6077
  @egress_filter = egress_filter == nil ? "" : egress_filter
5757
6078
  @healthy = healthy == nil ? false : healthy
5758
6079
  @hostname = hostname == nil ? "" : hostname
@@ -5798,6 +6119,8 @@ module SDM
5798
6119
  end
5799
6120
 
5800
6121
  class Teradata
6122
+ # Bind interface
6123
+ attr_accessor :bind_interface
5801
6124
  # A filter applied to the routing logic to pin datasource to nodes.
5802
6125
  attr_accessor :egress_filter
5803
6126
  # True if the datasource is reachable and the credentials are valid.
@@ -5822,6 +6145,7 @@ module SDM
5822
6145
  attr_accessor :username
5823
6146
 
5824
6147
  def initialize(
6148
+ bind_interface: nil,
5825
6149
  egress_filter: nil,
5826
6150
  healthy: nil,
5827
6151
  hostname: nil,
@@ -5834,6 +6158,7 @@ module SDM
5834
6158
  tags: nil,
5835
6159
  username: nil
5836
6160
  )
6161
+ @bind_interface = bind_interface == nil ? "" : bind_interface
5837
6162
  @egress_filter = egress_filter == nil ? "" : egress_filter
5838
6163
  @healthy = healthy == nil ? false : healthy
5839
6164
  @hostname = hostname == nil ? "" : hostname