strongdm 2.1.0 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.git/ORIG_HEAD +1 -1
- data/.git/index +0 -0
- data/.git/logs/HEAD +3 -3
- data/.git/logs/refs/heads/master +2 -2
- data/.git/logs/refs/remotes/origin/HEAD +1 -1
- data/.git/objects/pack/{pack-a86846bb97666919e629e876c52e6b012d588625.idx → pack-886c8b7b48ee02690285f26795cb132efb2f15f6.idx} +0 -0
- data/.git/objects/pack/{pack-a86846bb97666919e629e876c52e6b012d588625.pack → pack-886c8b7b48ee02690285f26795cb132efb2f15f6.pack} +0 -0
- data/.git/packed-refs +5 -2
- data/.git/refs/heads/master +1 -1
- data/lib/grpc/account_attachments_services_pb.rb +5 -5
- data/lib/grpc/account_grants_services_pb.rb +5 -5
- data/lib/grpc/accounts_services_pb.rb +6 -6
- data/lib/grpc/control_panel_services_pb.rb +3 -3
- data/lib/grpc/drivers_pb.rb +88 -0
- data/lib/grpc/nodes_services_pb.rb +6 -6
- data/lib/grpc/plumbing.rb +442 -0
- data/lib/grpc/remote_identities_pb.rb +90 -0
- data/lib/grpc/remote_identities_services_pb.rb +45 -0
- data/lib/grpc/remote_identity_groups_pb.rb +55 -0
- data/lib/grpc/remote_identity_groups_services_pb.rb +58 -0
- data/lib/grpc/resources_services_pb.rb +7 -7
- data/lib/grpc/role_attachments_services_pb.rb +5 -5
- data/lib/grpc/role_grants_services_pb.rb +5 -5
- data/lib/grpc/roles_services_pb.rb +6 -6
- data/lib/grpc/secret_stores_services_pb.rb +6 -6
- data/lib/models/porcelain.rb +577 -2
- data/lib/strongdm.rb +26 -2
- data/lib/svc.rb +266 -0
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +8 -4
data/lib/models/porcelain.rb
CHANGED
@@ -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
|
@@ -36,12 +39,17 @@ module SDM
|
|
36
39
|
attr_accessor :name
|
37
40
|
|
38
41
|
attr_accessor :port
|
42
|
+
|
43
|
+
attr_accessor :remote_identity_group_id
|
44
|
+
|
45
|
+
attr_accessor :remote_identity_healthcheck_username
|
39
46
|
# ID of the secret store containing credentials for this resource, if any.
|
40
47
|
attr_accessor :secret_store_id
|
41
48
|
# Tags is a map of key, value pairs.
|
42
49
|
attr_accessor :tags
|
43
50
|
|
44
51
|
def initialize(
|
52
|
+
bind_interface: nil,
|
45
53
|
certificate_authority: nil,
|
46
54
|
client_certificate: nil,
|
47
55
|
client_key: nil,
|
@@ -52,9 +60,12 @@ module SDM
|
|
52
60
|
id: nil,
|
53
61
|
name: nil,
|
54
62
|
port: nil,
|
63
|
+
remote_identity_group_id: nil,
|
64
|
+
remote_identity_healthcheck_username: nil,
|
55
65
|
secret_store_id: nil,
|
56
66
|
tags: nil
|
57
67
|
)
|
68
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
58
69
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
59
70
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
60
71
|
@client_key = client_key == nil ? "" : client_key
|
@@ -65,6 +76,8 @@ module SDM
|
|
65
76
|
@id = id == nil ? "" : id
|
66
77
|
@name = name == nil ? "" : name
|
67
78
|
@port = port == nil ? 0 : port
|
79
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
80
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
68
81
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
69
82
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
70
83
|
end
|
@@ -79,6 +92,8 @@ module SDM
|
|
79
92
|
end
|
80
93
|
|
81
94
|
class AKSBasicAuth
|
95
|
+
# Bind interface
|
96
|
+
attr_accessor :bind_interface
|
82
97
|
# A filter applied to the routing logic to pin datasource to nodes.
|
83
98
|
attr_accessor :egress_filter
|
84
99
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -103,6 +118,7 @@ module SDM
|
|
103
118
|
attr_accessor :username
|
104
119
|
|
105
120
|
def initialize(
|
121
|
+
bind_interface: nil,
|
106
122
|
egress_filter: nil,
|
107
123
|
healthcheck_namespace: nil,
|
108
124
|
healthy: nil,
|
@@ -115,6 +131,7 @@ module SDM
|
|
115
131
|
tags: nil,
|
116
132
|
username: nil
|
117
133
|
)
|
134
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
118
135
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
119
136
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
120
137
|
@healthy = healthy == nil ? false : healthy
|
@@ -138,6 +155,8 @@ module SDM
|
|
138
155
|
end
|
139
156
|
|
140
157
|
class AKSServiceAccount
|
158
|
+
# Bind interface
|
159
|
+
attr_accessor :bind_interface
|
141
160
|
# A filter applied to the routing logic to pin datasource to nodes.
|
142
161
|
attr_accessor :egress_filter
|
143
162
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -152,6 +171,10 @@ module SDM
|
|
152
171
|
attr_accessor :name
|
153
172
|
|
154
173
|
attr_accessor :port
|
174
|
+
|
175
|
+
attr_accessor :remote_identity_group_id
|
176
|
+
|
177
|
+
attr_accessor :remote_identity_healthcheck_username
|
155
178
|
# ID of the secret store containing credentials for this resource, if any.
|
156
179
|
attr_accessor :secret_store_id
|
157
180
|
# Tags is a map of key, value pairs.
|
@@ -160,6 +183,7 @@ module SDM
|
|
160
183
|
attr_accessor :token
|
161
184
|
|
162
185
|
def initialize(
|
186
|
+
bind_interface: nil,
|
163
187
|
egress_filter: nil,
|
164
188
|
healthcheck_namespace: nil,
|
165
189
|
healthy: nil,
|
@@ -167,10 +191,13 @@ module SDM
|
|
167
191
|
id: nil,
|
168
192
|
name: nil,
|
169
193
|
port: nil,
|
194
|
+
remote_identity_group_id: nil,
|
195
|
+
remote_identity_healthcheck_username: nil,
|
170
196
|
secret_store_id: nil,
|
171
197
|
tags: nil,
|
172
198
|
token: nil
|
173
199
|
)
|
200
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
174
201
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
175
202
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
176
203
|
@healthy = healthy == nil ? false : healthy
|
@@ -178,6 +205,8 @@ module SDM
|
|
178
205
|
@id = id == nil ? "" : id
|
179
206
|
@name = name == nil ? "" : name
|
180
207
|
@port = port == nil ? 0 : port
|
208
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
209
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
181
210
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
182
211
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
183
212
|
@token = token == nil ? "" : token
|
@@ -193,6 +222,8 @@ module SDM
|
|
193
222
|
end
|
194
223
|
|
195
224
|
class AKSServiceAccountUserImpersonation
|
225
|
+
# Bind interface
|
226
|
+
attr_accessor :bind_interface
|
196
227
|
# A filter applied to the routing logic to pin datasource to nodes.
|
197
228
|
attr_accessor :egress_filter
|
198
229
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -215,6 +246,7 @@ module SDM
|
|
215
246
|
attr_accessor :token
|
216
247
|
|
217
248
|
def initialize(
|
249
|
+
bind_interface: nil,
|
218
250
|
egress_filter: nil,
|
219
251
|
healthcheck_namespace: nil,
|
220
252
|
healthy: nil,
|
@@ -226,6 +258,7 @@ module SDM
|
|
226
258
|
tags: nil,
|
227
259
|
token: nil
|
228
260
|
)
|
261
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
229
262
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
230
263
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
231
264
|
@healthy = healthy == nil ? false : healthy
|
@@ -248,6 +281,9 @@ module SDM
|
|
248
281
|
end
|
249
282
|
|
250
283
|
class AKSUserImpersonation
|
284
|
+
# Bind interface
|
285
|
+
attr_accessor :bind_interface
|
286
|
+
|
251
287
|
attr_accessor :certificate_authority
|
252
288
|
|
253
289
|
attr_accessor :client_certificate
|
@@ -273,6 +309,7 @@ module SDM
|
|
273
309
|
attr_accessor :tags
|
274
310
|
|
275
311
|
def initialize(
|
312
|
+
bind_interface: nil,
|
276
313
|
certificate_authority: nil,
|
277
314
|
client_certificate: nil,
|
278
315
|
client_key: nil,
|
@@ -286,6 +323,7 @@ module SDM
|
|
286
323
|
secret_store_id: nil,
|
287
324
|
tags: nil
|
288
325
|
)
|
326
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
289
327
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
290
328
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
291
329
|
@client_key = client_key == nil ? "" : client_key
|
@@ -311,6 +349,8 @@ module SDM
|
|
311
349
|
|
312
350
|
class AWS
|
313
351
|
attr_accessor :access_key
|
352
|
+
# Bind interface
|
353
|
+
attr_accessor :bind_interface
|
314
354
|
# A filter applied to the routing logic to pin datasource to nodes.
|
315
355
|
attr_accessor :egress_filter
|
316
356
|
|
@@ -334,6 +374,7 @@ module SDM
|
|
334
374
|
|
335
375
|
def initialize(
|
336
376
|
access_key: nil,
|
377
|
+
bind_interface: nil,
|
337
378
|
egress_filter: nil,
|
338
379
|
healthcheck_region: nil,
|
339
380
|
healthy: nil,
|
@@ -346,6 +387,7 @@ module SDM
|
|
346
387
|
tags: nil
|
347
388
|
)
|
348
389
|
@access_key = access_key == nil ? "" : access_key
|
390
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
349
391
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
350
392
|
@healthcheck_region = healthcheck_region == nil ? "" : healthcheck_region
|
351
393
|
@healthy = healthy == nil ? false : healthy
|
@@ -593,11 +635,11 @@ module SDM
|
|
593
635
|
|
594
636
|
# AccountGrants connect a resource directly to an account, giving the account the permission to connect to that resource.
|
595
637
|
class AccountGrant
|
596
|
-
# The id of
|
638
|
+
# The account id of this AccountGrant.
|
597
639
|
attr_accessor :account_id
|
598
640
|
# Unique identifier of the AccountGrant.
|
599
641
|
attr_accessor :id
|
600
|
-
# The id of
|
642
|
+
# The resource id of this AccountGrant.
|
601
643
|
attr_accessor :resource_id
|
602
644
|
# The timestamp when the resource will be granted. Optional. Both start_at
|
603
645
|
# and end_at must be defined together, or not defined at all.
|
@@ -740,6 +782,8 @@ module SDM
|
|
740
782
|
|
741
783
|
class AmazonEKS
|
742
784
|
attr_accessor :access_key
|
785
|
+
# Bind interface
|
786
|
+
attr_accessor :bind_interface
|
743
787
|
|
744
788
|
attr_accessor :certificate_authority
|
745
789
|
|
@@ -759,6 +803,10 @@ module SDM
|
|
759
803
|
|
760
804
|
attr_accessor :region
|
761
805
|
|
806
|
+
attr_accessor :remote_identity_group_id
|
807
|
+
|
808
|
+
attr_accessor :remote_identity_healthcheck_username
|
809
|
+
|
762
810
|
attr_accessor :role_arn
|
763
811
|
|
764
812
|
attr_accessor :role_external_id
|
@@ -771,6 +819,7 @@ module SDM
|
|
771
819
|
|
772
820
|
def initialize(
|
773
821
|
access_key: nil,
|
822
|
+
bind_interface: nil,
|
774
823
|
certificate_authority: nil,
|
775
824
|
cluster_name: nil,
|
776
825
|
egress_filter: nil,
|
@@ -780,6 +829,8 @@ module SDM
|
|
780
829
|
id: nil,
|
781
830
|
name: nil,
|
782
831
|
region: nil,
|
832
|
+
remote_identity_group_id: nil,
|
833
|
+
remote_identity_healthcheck_username: nil,
|
783
834
|
role_arn: nil,
|
784
835
|
role_external_id: nil,
|
785
836
|
secret_access_key: nil,
|
@@ -787,6 +838,7 @@ module SDM
|
|
787
838
|
tags: nil
|
788
839
|
)
|
789
840
|
@access_key = access_key == nil ? "" : access_key
|
841
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
790
842
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
791
843
|
@cluster_name = cluster_name == nil ? "" : cluster_name
|
792
844
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
@@ -796,6 +848,8 @@ module SDM
|
|
796
848
|
@id = id == nil ? "" : id
|
797
849
|
@name = name == nil ? "" : name
|
798
850
|
@region = region == nil ? "" : region
|
851
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
852
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
799
853
|
@role_arn = role_arn == nil ? "" : role_arn
|
800
854
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
801
855
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
@@ -814,6 +868,8 @@ module SDM
|
|
814
868
|
|
815
869
|
class AmazonEKSUserImpersonation
|
816
870
|
attr_accessor :access_key
|
871
|
+
# Bind interface
|
872
|
+
attr_accessor :bind_interface
|
817
873
|
|
818
874
|
attr_accessor :certificate_authority
|
819
875
|
|
@@ -845,6 +901,7 @@ module SDM
|
|
845
901
|
|
846
902
|
def initialize(
|
847
903
|
access_key: nil,
|
904
|
+
bind_interface: nil,
|
848
905
|
certificate_authority: nil,
|
849
906
|
cluster_name: nil,
|
850
907
|
egress_filter: nil,
|
@@ -861,6 +918,7 @@ module SDM
|
|
861
918
|
tags: nil
|
862
919
|
)
|
863
920
|
@access_key = access_key == nil ? "" : access_key
|
921
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
864
922
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
865
923
|
@cluster_name = cluster_name == nil ? "" : cluster_name
|
866
924
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
@@ -888,6 +946,8 @@ module SDM
|
|
888
946
|
|
889
947
|
class AmazonES
|
890
948
|
attr_accessor :access_key
|
949
|
+
# Bind interface
|
950
|
+
attr_accessor :bind_interface
|
891
951
|
# A filter applied to the routing logic to pin datasource to nodes.
|
892
952
|
attr_accessor :egress_filter
|
893
953
|
|
@@ -915,6 +975,7 @@ module SDM
|
|
915
975
|
|
916
976
|
def initialize(
|
917
977
|
access_key: nil,
|
978
|
+
bind_interface: nil,
|
918
979
|
egress_filter: nil,
|
919
980
|
endpoint: nil,
|
920
981
|
healthy: nil,
|
@@ -929,6 +990,7 @@ module SDM
|
|
929
990
|
tags: nil
|
930
991
|
)
|
931
992
|
@access_key = access_key == nil ? "" : access_key
|
993
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
932
994
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
933
995
|
@endpoint = endpoint == nil ? "" : endpoint
|
934
996
|
@healthy = healthy == nil ? false : healthy
|
@@ -953,6 +1015,8 @@ module SDM
|
|
953
1015
|
end
|
954
1016
|
|
955
1017
|
class AmazonMQAMQP091
|
1018
|
+
# Bind interface
|
1019
|
+
attr_accessor :bind_interface
|
956
1020
|
# A filter applied to the routing logic to pin datasource to nodes.
|
957
1021
|
attr_accessor :egress_filter
|
958
1022
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -979,6 +1043,7 @@ module SDM
|
|
979
1043
|
attr_accessor :username
|
980
1044
|
|
981
1045
|
def initialize(
|
1046
|
+
bind_interface: nil,
|
982
1047
|
egress_filter: nil,
|
983
1048
|
healthy: nil,
|
984
1049
|
hostname: nil,
|
@@ -992,6 +1057,7 @@ module SDM
|
|
992
1057
|
tls_required: nil,
|
993
1058
|
username: nil
|
994
1059
|
)
|
1060
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
995
1061
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
996
1062
|
@healthy = healthy == nil ? false : healthy
|
997
1063
|
@hostname = hostname == nil ? "" : hostname
|
@@ -1017,6 +1083,8 @@ module SDM
|
|
1017
1083
|
|
1018
1084
|
class Athena
|
1019
1085
|
attr_accessor :access_key
|
1086
|
+
# Bind interface
|
1087
|
+
attr_accessor :bind_interface
|
1020
1088
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1021
1089
|
attr_accessor :egress_filter
|
1022
1090
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -1044,6 +1112,7 @@ module SDM
|
|
1044
1112
|
|
1045
1113
|
def initialize(
|
1046
1114
|
access_key: nil,
|
1115
|
+
bind_interface: nil,
|
1047
1116
|
egress_filter: nil,
|
1048
1117
|
healthy: nil,
|
1049
1118
|
id: nil,
|
@@ -1058,6 +1127,7 @@ module SDM
|
|
1058
1127
|
tags: nil
|
1059
1128
|
)
|
1060
1129
|
@access_key = access_key == nil ? "" : access_key
|
1130
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1061
1131
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1062
1132
|
@healthy = healthy == nil ? false : healthy
|
1063
1133
|
@id = id == nil ? "" : id
|
@@ -1082,6 +1152,9 @@ module SDM
|
|
1082
1152
|
end
|
1083
1153
|
|
1084
1154
|
class AuroraMysql
|
1155
|
+
# Bind interface
|
1156
|
+
attr_accessor :bind_interface
|
1157
|
+
|
1085
1158
|
attr_accessor :database
|
1086
1159
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1087
1160
|
attr_accessor :egress_filter
|
@@ -1107,6 +1180,7 @@ module SDM
|
|
1107
1180
|
attr_accessor :username
|
1108
1181
|
|
1109
1182
|
def initialize(
|
1183
|
+
bind_interface: nil,
|
1110
1184
|
database: nil,
|
1111
1185
|
egress_filter: nil,
|
1112
1186
|
healthy: nil,
|
@@ -1120,6 +1194,7 @@ module SDM
|
|
1120
1194
|
tags: nil,
|
1121
1195
|
username: nil
|
1122
1196
|
)
|
1197
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1123
1198
|
@database = database == nil ? "" : database
|
1124
1199
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1125
1200
|
@healthy = healthy == nil ? false : healthy
|
@@ -1144,6 +1219,9 @@ module SDM
|
|
1144
1219
|
end
|
1145
1220
|
|
1146
1221
|
class AuroraPostgres
|
1222
|
+
# Bind interface
|
1223
|
+
attr_accessor :bind_interface
|
1224
|
+
|
1147
1225
|
attr_accessor :database
|
1148
1226
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1149
1227
|
attr_accessor :egress_filter
|
@@ -1171,6 +1249,7 @@ module SDM
|
|
1171
1249
|
attr_accessor :username
|
1172
1250
|
|
1173
1251
|
def initialize(
|
1252
|
+
bind_interface: nil,
|
1174
1253
|
database: nil,
|
1175
1254
|
egress_filter: nil,
|
1176
1255
|
healthy: nil,
|
@@ -1185,6 +1264,7 @@ module SDM
|
|
1185
1264
|
tags: nil,
|
1186
1265
|
username: nil
|
1187
1266
|
)
|
1267
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1188
1268
|
@database = database == nil ? "" : database
|
1189
1269
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1190
1270
|
@healthy = healthy == nil ? false : healthy
|
@@ -1211,6 +1291,8 @@ module SDM
|
|
1211
1291
|
|
1212
1292
|
class Azure
|
1213
1293
|
attr_accessor :app_id
|
1294
|
+
# Bind interface
|
1295
|
+
attr_accessor :bind_interface
|
1214
1296
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1215
1297
|
attr_accessor :egress_filter
|
1216
1298
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -1230,6 +1312,7 @@ module SDM
|
|
1230
1312
|
|
1231
1313
|
def initialize(
|
1232
1314
|
app_id: nil,
|
1315
|
+
bind_interface: nil,
|
1233
1316
|
egress_filter: nil,
|
1234
1317
|
healthy: nil,
|
1235
1318
|
id: nil,
|
@@ -1240,6 +1323,7 @@ module SDM
|
|
1240
1323
|
tenant_id: nil
|
1241
1324
|
)
|
1242
1325
|
@app_id = app_id == nil ? "" : app_id
|
1326
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1243
1327
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1244
1328
|
@healthy = healthy == nil ? false : healthy
|
1245
1329
|
@id = id == nil ? "" : id
|
@@ -1261,6 +1345,8 @@ module SDM
|
|
1261
1345
|
|
1262
1346
|
class AzureCertificate
|
1263
1347
|
attr_accessor :app_id
|
1348
|
+
# Bind interface
|
1349
|
+
attr_accessor :bind_interface
|
1264
1350
|
|
1265
1351
|
attr_accessor :client_certificate
|
1266
1352
|
# A filter applied to the routing logic to pin datasource to nodes.
|
@@ -1280,6 +1366,7 @@ module SDM
|
|
1280
1366
|
|
1281
1367
|
def initialize(
|
1282
1368
|
app_id: nil,
|
1369
|
+
bind_interface: nil,
|
1283
1370
|
client_certificate: nil,
|
1284
1371
|
egress_filter: nil,
|
1285
1372
|
healthy: nil,
|
@@ -1290,6 +1377,7 @@ module SDM
|
|
1290
1377
|
tenant_id: nil
|
1291
1378
|
)
|
1292
1379
|
@app_id = app_id == nil ? "" : app_id
|
1380
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1293
1381
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
1294
1382
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1295
1383
|
@healthy = healthy == nil ? false : healthy
|
@@ -1310,6 +1398,9 @@ module SDM
|
|
1310
1398
|
end
|
1311
1399
|
|
1312
1400
|
class AzurePostgres
|
1401
|
+
# Bind interface
|
1402
|
+
attr_accessor :bind_interface
|
1403
|
+
|
1313
1404
|
attr_accessor :database
|
1314
1405
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1315
1406
|
attr_accessor :egress_filter
|
@@ -1337,6 +1428,7 @@ module SDM
|
|
1337
1428
|
attr_accessor :username
|
1338
1429
|
|
1339
1430
|
def initialize(
|
1431
|
+
bind_interface: nil,
|
1340
1432
|
database: nil,
|
1341
1433
|
egress_filter: nil,
|
1342
1434
|
healthy: nil,
|
@@ -1351,6 +1443,7 @@ module SDM
|
|
1351
1443
|
tags: nil,
|
1352
1444
|
username: nil
|
1353
1445
|
)
|
1446
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1354
1447
|
@database = database == nil ? "" : database
|
1355
1448
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1356
1449
|
@healthy = healthy == nil ? false : healthy
|
@@ -1407,6 +1500,8 @@ module SDM
|
|
1407
1500
|
end
|
1408
1501
|
|
1409
1502
|
class BigQuery
|
1503
|
+
# Bind interface
|
1504
|
+
attr_accessor :bind_interface
|
1410
1505
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1411
1506
|
attr_accessor :egress_filter
|
1412
1507
|
|
@@ -1431,6 +1526,7 @@ module SDM
|
|
1431
1526
|
attr_accessor :username
|
1432
1527
|
|
1433
1528
|
def initialize(
|
1529
|
+
bind_interface: nil,
|
1434
1530
|
egress_filter: nil,
|
1435
1531
|
endpoint: nil,
|
1436
1532
|
healthy: nil,
|
@@ -1443,6 +1539,7 @@ module SDM
|
|
1443
1539
|
tags: nil,
|
1444
1540
|
username: nil
|
1445
1541
|
)
|
1542
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1446
1543
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1447
1544
|
@endpoint = endpoint == nil ? "" : endpoint
|
1448
1545
|
@healthy = healthy == nil ? false : healthy
|
@@ -1466,6 +1563,8 @@ module SDM
|
|
1466
1563
|
end
|
1467
1564
|
|
1468
1565
|
class Cassandra
|
1566
|
+
# Bind interface
|
1567
|
+
attr_accessor :bind_interface
|
1469
1568
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1470
1569
|
attr_accessor :egress_filter
|
1471
1570
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -1492,6 +1591,7 @@ module SDM
|
|
1492
1591
|
attr_accessor :username
|
1493
1592
|
|
1494
1593
|
def initialize(
|
1594
|
+
bind_interface: nil,
|
1495
1595
|
egress_filter: nil,
|
1496
1596
|
healthy: nil,
|
1497
1597
|
hostname: nil,
|
@@ -1505,6 +1605,7 @@ module SDM
|
|
1505
1605
|
tls_required: nil,
|
1506
1606
|
username: nil
|
1507
1607
|
)
|
1608
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1508
1609
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1509
1610
|
@healthy = healthy == nil ? false : healthy
|
1510
1611
|
@hostname = hostname == nil ? "" : hostname
|
@@ -1529,6 +1630,9 @@ module SDM
|
|
1529
1630
|
end
|
1530
1631
|
|
1531
1632
|
class Citus
|
1633
|
+
# Bind interface
|
1634
|
+
attr_accessor :bind_interface
|
1635
|
+
|
1532
1636
|
attr_accessor :database
|
1533
1637
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1534
1638
|
attr_accessor :egress_filter
|
@@ -1556,6 +1660,7 @@ module SDM
|
|
1556
1660
|
attr_accessor :username
|
1557
1661
|
|
1558
1662
|
def initialize(
|
1663
|
+
bind_interface: nil,
|
1559
1664
|
database: nil,
|
1560
1665
|
egress_filter: nil,
|
1561
1666
|
healthy: nil,
|
@@ -1570,6 +1675,7 @@ module SDM
|
|
1570
1675
|
tags: nil,
|
1571
1676
|
username: nil
|
1572
1677
|
)
|
1678
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1573
1679
|
@database = database == nil ? "" : database
|
1574
1680
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1575
1681
|
@healthy = healthy == nil ? false : healthy
|
@@ -1595,6 +1701,9 @@ module SDM
|
|
1595
1701
|
end
|
1596
1702
|
|
1597
1703
|
class Clustrix
|
1704
|
+
# Bind interface
|
1705
|
+
attr_accessor :bind_interface
|
1706
|
+
|
1598
1707
|
attr_accessor :database
|
1599
1708
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1600
1709
|
attr_accessor :egress_filter
|
@@ -1620,6 +1729,7 @@ module SDM
|
|
1620
1729
|
attr_accessor :username
|
1621
1730
|
|
1622
1731
|
def initialize(
|
1732
|
+
bind_interface: nil,
|
1623
1733
|
database: nil,
|
1624
1734
|
egress_filter: nil,
|
1625
1735
|
healthy: nil,
|
@@ -1633,6 +1743,7 @@ module SDM
|
|
1633
1743
|
tags: nil,
|
1634
1744
|
username: nil
|
1635
1745
|
)
|
1746
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1636
1747
|
@database = database == nil ? "" : database
|
1637
1748
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1638
1749
|
@healthy = healthy == nil ? false : healthy
|
@@ -1657,6 +1768,9 @@ module SDM
|
|
1657
1768
|
end
|
1658
1769
|
|
1659
1770
|
class Cockroach
|
1771
|
+
# Bind interface
|
1772
|
+
attr_accessor :bind_interface
|
1773
|
+
|
1660
1774
|
attr_accessor :database
|
1661
1775
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1662
1776
|
attr_accessor :egress_filter
|
@@ -1684,6 +1798,7 @@ module SDM
|
|
1684
1798
|
attr_accessor :username
|
1685
1799
|
|
1686
1800
|
def initialize(
|
1801
|
+
bind_interface: nil,
|
1687
1802
|
database: nil,
|
1688
1803
|
egress_filter: nil,
|
1689
1804
|
healthy: nil,
|
@@ -1698,6 +1813,7 @@ module SDM
|
|
1698
1813
|
tags: nil,
|
1699
1814
|
username: nil
|
1700
1815
|
)
|
1816
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1701
1817
|
@database = database == nil ? "" : database
|
1702
1818
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1703
1819
|
@healthy = healthy == nil ? false : healthy
|
@@ -1795,6 +1911,8 @@ module SDM
|
|
1795
1911
|
end
|
1796
1912
|
|
1797
1913
|
class DB2I
|
1914
|
+
# Bind interface
|
1915
|
+
attr_accessor :bind_interface
|
1798
1916
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1799
1917
|
attr_accessor :egress_filter
|
1800
1918
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -1821,6 +1939,7 @@ module SDM
|
|
1821
1939
|
attr_accessor :username
|
1822
1940
|
|
1823
1941
|
def initialize(
|
1942
|
+
bind_interface: nil,
|
1824
1943
|
egress_filter: nil,
|
1825
1944
|
healthy: nil,
|
1826
1945
|
hostname: nil,
|
@@ -1834,6 +1953,7 @@ module SDM
|
|
1834
1953
|
tls_required: nil,
|
1835
1954
|
username: nil
|
1836
1955
|
)
|
1956
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1837
1957
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1838
1958
|
@healthy = healthy == nil ? false : healthy
|
1839
1959
|
@hostname = hostname == nil ? "" : hostname
|
@@ -1858,6 +1978,9 @@ module SDM
|
|
1858
1978
|
end
|
1859
1979
|
|
1860
1980
|
class DB2LUW
|
1981
|
+
# Bind interface
|
1982
|
+
attr_accessor :bind_interface
|
1983
|
+
|
1861
1984
|
attr_accessor :database
|
1862
1985
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1863
1986
|
attr_accessor :egress_filter
|
@@ -1883,6 +2006,7 @@ module SDM
|
|
1883
2006
|
attr_accessor :username
|
1884
2007
|
|
1885
2008
|
def initialize(
|
2009
|
+
bind_interface: nil,
|
1886
2010
|
database: nil,
|
1887
2011
|
egress_filter: nil,
|
1888
2012
|
healthy: nil,
|
@@ -1896,6 +2020,7 @@ module SDM
|
|
1896
2020
|
tags: nil,
|
1897
2021
|
username: nil
|
1898
2022
|
)
|
2023
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1899
2024
|
@database = database == nil ? "" : database
|
1900
2025
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1901
2026
|
@healthy = healthy == nil ? false : healthy
|
@@ -1935,6 +2060,8 @@ module SDM
|
|
1935
2060
|
|
1936
2061
|
class DocumentDBHost
|
1937
2062
|
attr_accessor :auth_database
|
2063
|
+
# Bind interface
|
2064
|
+
attr_accessor :bind_interface
|
1938
2065
|
# A filter applied to the routing logic to pin datasource to nodes.
|
1939
2066
|
attr_accessor :egress_filter
|
1940
2067
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -1960,6 +2087,7 @@ module SDM
|
|
1960
2087
|
|
1961
2088
|
def initialize(
|
1962
2089
|
auth_database: nil,
|
2090
|
+
bind_interface: nil,
|
1963
2091
|
egress_filter: nil,
|
1964
2092
|
healthy: nil,
|
1965
2093
|
hostname: nil,
|
@@ -1973,6 +2101,7 @@ module SDM
|
|
1973
2101
|
username: nil
|
1974
2102
|
)
|
1975
2103
|
@auth_database = auth_database == nil ? "" : auth_database
|
2104
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
1976
2105
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
1977
2106
|
@healthy = healthy == nil ? false : healthy
|
1978
2107
|
@hostname = hostname == nil ? "" : hostname
|
@@ -1997,6 +2126,8 @@ module SDM
|
|
1997
2126
|
|
1998
2127
|
class DocumentDBReplicaSet
|
1999
2128
|
attr_accessor :auth_database
|
2129
|
+
# Bind interface
|
2130
|
+
attr_accessor :bind_interface
|
2000
2131
|
|
2001
2132
|
attr_accessor :connect_to_replica
|
2002
2133
|
# A filter applied to the routing logic to pin datasource to nodes.
|
@@ -2024,6 +2155,7 @@ module SDM
|
|
2024
2155
|
|
2025
2156
|
def initialize(
|
2026
2157
|
auth_database: nil,
|
2158
|
+
bind_interface: nil,
|
2027
2159
|
connect_to_replica: nil,
|
2028
2160
|
egress_filter: nil,
|
2029
2161
|
healthy: nil,
|
@@ -2038,6 +2170,7 @@ module SDM
|
|
2038
2170
|
username: nil
|
2039
2171
|
)
|
2040
2172
|
@auth_database = auth_database == nil ? "" : auth_database
|
2173
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2041
2174
|
@connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
|
2042
2175
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2043
2176
|
@healthy = healthy == nil ? false : healthy
|
@@ -2062,6 +2195,8 @@ module SDM
|
|
2062
2195
|
end
|
2063
2196
|
|
2064
2197
|
class Druid
|
2198
|
+
# Bind interface
|
2199
|
+
attr_accessor :bind_interface
|
2065
2200
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2066
2201
|
attr_accessor :egress_filter
|
2067
2202
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -2086,6 +2221,7 @@ module SDM
|
|
2086
2221
|
attr_accessor :username
|
2087
2222
|
|
2088
2223
|
def initialize(
|
2224
|
+
bind_interface: nil,
|
2089
2225
|
egress_filter: nil,
|
2090
2226
|
healthy: nil,
|
2091
2227
|
hostname: nil,
|
@@ -2098,6 +2234,7 @@ module SDM
|
|
2098
2234
|
tags: nil,
|
2099
2235
|
username: nil
|
2100
2236
|
)
|
2237
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2101
2238
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2102
2239
|
@healthy = healthy == nil ? false : healthy
|
2103
2240
|
@hostname = hostname == nil ? "" : hostname
|
@@ -2122,6 +2259,8 @@ module SDM
|
|
2122
2259
|
|
2123
2260
|
class DynamoDB
|
2124
2261
|
attr_accessor :access_key
|
2262
|
+
# Bind interface
|
2263
|
+
attr_accessor :bind_interface
|
2125
2264
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2126
2265
|
attr_accessor :egress_filter
|
2127
2266
|
|
@@ -2149,6 +2288,7 @@ module SDM
|
|
2149
2288
|
|
2150
2289
|
def initialize(
|
2151
2290
|
access_key: nil,
|
2291
|
+
bind_interface: nil,
|
2152
2292
|
egress_filter: nil,
|
2153
2293
|
endpoint: nil,
|
2154
2294
|
healthy: nil,
|
@@ -2163,6 +2303,7 @@ module SDM
|
|
2163
2303
|
tags: nil
|
2164
2304
|
)
|
2165
2305
|
@access_key = access_key == nil ? "" : access_key
|
2306
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2166
2307
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2167
2308
|
@endpoint = endpoint == nil ? "" : endpoint
|
2168
2309
|
@healthy = healthy == nil ? false : healthy
|
@@ -2187,6 +2328,8 @@ module SDM
|
|
2187
2328
|
end
|
2188
2329
|
|
2189
2330
|
class Elastic
|
2331
|
+
# Bind interface
|
2332
|
+
attr_accessor :bind_interface
|
2190
2333
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2191
2334
|
attr_accessor :egress_filter
|
2192
2335
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -2213,6 +2356,7 @@ module SDM
|
|
2213
2356
|
attr_accessor :username
|
2214
2357
|
|
2215
2358
|
def initialize(
|
2359
|
+
bind_interface: nil,
|
2216
2360
|
egress_filter: nil,
|
2217
2361
|
healthy: nil,
|
2218
2362
|
hostname: nil,
|
@@ -2226,6 +2370,7 @@ module SDM
|
|
2226
2370
|
tls_required: nil,
|
2227
2371
|
username: nil
|
2228
2372
|
)
|
2373
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2229
2374
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2230
2375
|
@healthy = healthy == nil ? false : healthy
|
2231
2376
|
@hostname = hostname == nil ? "" : hostname
|
@@ -2250,6 +2395,8 @@ module SDM
|
|
2250
2395
|
end
|
2251
2396
|
|
2252
2397
|
class ElasticacheRedis
|
2398
|
+
# Bind interface
|
2399
|
+
attr_accessor :bind_interface
|
2253
2400
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2254
2401
|
attr_accessor :egress_filter
|
2255
2402
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -2274,6 +2421,7 @@ module SDM
|
|
2274
2421
|
attr_accessor :tls_required
|
2275
2422
|
|
2276
2423
|
def initialize(
|
2424
|
+
bind_interface: nil,
|
2277
2425
|
egress_filter: nil,
|
2278
2426
|
healthy: nil,
|
2279
2427
|
hostname: nil,
|
@@ -2286,6 +2434,7 @@ module SDM
|
|
2286
2434
|
tags: nil,
|
2287
2435
|
tls_required: nil
|
2288
2436
|
)
|
2437
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2289
2438
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2290
2439
|
@healthy = healthy == nil ? false : healthy
|
2291
2440
|
@hostname = hostname == nil ? "" : hostname
|
@@ -2309,6 +2458,8 @@ module SDM
|
|
2309
2458
|
end
|
2310
2459
|
|
2311
2460
|
class GCP
|
2461
|
+
# Bind interface
|
2462
|
+
attr_accessor :bind_interface
|
2312
2463
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2313
2464
|
attr_accessor :egress_filter
|
2314
2465
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -2327,6 +2478,7 @@ module SDM
|
|
2327
2478
|
attr_accessor :tags
|
2328
2479
|
|
2329
2480
|
def initialize(
|
2481
|
+
bind_interface: nil,
|
2330
2482
|
egress_filter: nil,
|
2331
2483
|
healthy: nil,
|
2332
2484
|
id: nil,
|
@@ -2336,6 +2488,7 @@ module SDM
|
|
2336
2488
|
secret_store_id: nil,
|
2337
2489
|
tags: nil
|
2338
2490
|
)
|
2491
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2339
2492
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2340
2493
|
@healthy = healthy == nil ? false : healthy
|
2341
2494
|
@id = id == nil ? "" : id
|
@@ -2448,6 +2601,9 @@ module SDM
|
|
2448
2601
|
end
|
2449
2602
|
|
2450
2603
|
class GoogleGKE
|
2604
|
+
# Bind interface
|
2605
|
+
attr_accessor :bind_interface
|
2606
|
+
|
2451
2607
|
attr_accessor :certificate_authority
|
2452
2608
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2453
2609
|
attr_accessor :egress_filter
|
@@ -2461,6 +2617,10 @@ module SDM
|
|
2461
2617
|
attr_accessor :id
|
2462
2618
|
# Unique human-readable name of the Resource.
|
2463
2619
|
attr_accessor :name
|
2620
|
+
|
2621
|
+
attr_accessor :remote_identity_group_id
|
2622
|
+
|
2623
|
+
attr_accessor :remote_identity_healthcheck_username
|
2464
2624
|
# ID of the secret store containing credentials for this resource, if any.
|
2465
2625
|
attr_accessor :secret_store_id
|
2466
2626
|
|
@@ -2469,6 +2629,7 @@ module SDM
|
|
2469
2629
|
attr_accessor :tags
|
2470
2630
|
|
2471
2631
|
def initialize(
|
2632
|
+
bind_interface: nil,
|
2472
2633
|
certificate_authority: nil,
|
2473
2634
|
egress_filter: nil,
|
2474
2635
|
endpoint: nil,
|
@@ -2476,10 +2637,13 @@ module SDM
|
|
2476
2637
|
healthy: nil,
|
2477
2638
|
id: nil,
|
2478
2639
|
name: nil,
|
2640
|
+
remote_identity_group_id: nil,
|
2641
|
+
remote_identity_healthcheck_username: nil,
|
2479
2642
|
secret_store_id: nil,
|
2480
2643
|
service_account_key: nil,
|
2481
2644
|
tags: nil
|
2482
2645
|
)
|
2646
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2483
2647
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
2484
2648
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2485
2649
|
@endpoint = endpoint == nil ? "" : endpoint
|
@@ -2487,6 +2651,8 @@ module SDM
|
|
2487
2651
|
@healthy = healthy == nil ? false : healthy
|
2488
2652
|
@id = id == nil ? "" : id
|
2489
2653
|
@name = name == nil ? "" : name
|
2654
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
2655
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
2490
2656
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2491
2657
|
@service_account_key = service_account_key == nil ? "" : service_account_key
|
2492
2658
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -2502,6 +2668,9 @@ module SDM
|
|
2502
2668
|
end
|
2503
2669
|
|
2504
2670
|
class GoogleGKEUserImpersonation
|
2671
|
+
# Bind interface
|
2672
|
+
attr_accessor :bind_interface
|
2673
|
+
|
2505
2674
|
attr_accessor :certificate_authority
|
2506
2675
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2507
2676
|
attr_accessor :egress_filter
|
@@ -2523,6 +2692,7 @@ module SDM
|
|
2523
2692
|
attr_accessor :tags
|
2524
2693
|
|
2525
2694
|
def initialize(
|
2695
|
+
bind_interface: nil,
|
2526
2696
|
certificate_authority: nil,
|
2527
2697
|
egress_filter: nil,
|
2528
2698
|
endpoint: nil,
|
@@ -2534,6 +2704,7 @@ module SDM
|
|
2534
2704
|
service_account_key: nil,
|
2535
2705
|
tags: nil
|
2536
2706
|
)
|
2707
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2537
2708
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
2538
2709
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2539
2710
|
@endpoint = endpoint == nil ? "" : endpoint
|
@@ -2556,6 +2727,9 @@ module SDM
|
|
2556
2727
|
end
|
2557
2728
|
|
2558
2729
|
class Greenplum
|
2730
|
+
# Bind interface
|
2731
|
+
attr_accessor :bind_interface
|
2732
|
+
|
2559
2733
|
attr_accessor :database
|
2560
2734
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2561
2735
|
attr_accessor :egress_filter
|
@@ -2583,6 +2757,7 @@ module SDM
|
|
2583
2757
|
attr_accessor :username
|
2584
2758
|
|
2585
2759
|
def initialize(
|
2760
|
+
bind_interface: nil,
|
2586
2761
|
database: nil,
|
2587
2762
|
egress_filter: nil,
|
2588
2763
|
healthy: nil,
|
@@ -2597,6 +2772,7 @@ module SDM
|
|
2597
2772
|
tags: nil,
|
2598
2773
|
username: nil
|
2599
2774
|
)
|
2775
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2600
2776
|
@database = database == nil ? "" : database
|
2601
2777
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2602
2778
|
@healthy = healthy == nil ? false : healthy
|
@@ -2623,6 +2799,8 @@ module SDM
|
|
2623
2799
|
|
2624
2800
|
class HTTPAuth
|
2625
2801
|
attr_accessor :auth_header
|
2802
|
+
# Bind interface
|
2803
|
+
attr_accessor :bind_interface
|
2626
2804
|
|
2627
2805
|
attr_accessor :default_path
|
2628
2806
|
# A filter applied to the routing logic to pin datasource to nodes.
|
@@ -2648,6 +2826,7 @@ module SDM
|
|
2648
2826
|
|
2649
2827
|
def initialize(
|
2650
2828
|
auth_header: nil,
|
2829
|
+
bind_interface: nil,
|
2651
2830
|
default_path: nil,
|
2652
2831
|
egress_filter: nil,
|
2653
2832
|
headers_blacklist: nil,
|
@@ -2661,6 +2840,7 @@ module SDM
|
|
2661
2840
|
url: nil
|
2662
2841
|
)
|
2663
2842
|
@auth_header = auth_header == nil ? "" : auth_header
|
2843
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2664
2844
|
@default_path = default_path == nil ? "" : default_path
|
2665
2845
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2666
2846
|
@headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
|
@@ -2684,6 +2864,9 @@ module SDM
|
|
2684
2864
|
end
|
2685
2865
|
|
2686
2866
|
class HTTPBasicAuth
|
2867
|
+
# Bind interface
|
2868
|
+
attr_accessor :bind_interface
|
2869
|
+
|
2687
2870
|
attr_accessor :default_path
|
2688
2871
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2689
2872
|
attr_accessor :egress_filter
|
@@ -2711,6 +2894,7 @@ module SDM
|
|
2711
2894
|
attr_accessor :username
|
2712
2895
|
|
2713
2896
|
def initialize(
|
2897
|
+
bind_interface: nil,
|
2714
2898
|
default_path: nil,
|
2715
2899
|
egress_filter: nil,
|
2716
2900
|
headers_blacklist: nil,
|
@@ -2725,6 +2909,7 @@ module SDM
|
|
2725
2909
|
url: nil,
|
2726
2910
|
username: nil
|
2727
2911
|
)
|
2912
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2728
2913
|
@default_path = default_path == nil ? "" : default_path
|
2729
2914
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2730
2915
|
@headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
|
@@ -2750,6 +2935,9 @@ module SDM
|
|
2750
2935
|
end
|
2751
2936
|
|
2752
2937
|
class HTTPNoAuth
|
2938
|
+
# Bind interface
|
2939
|
+
attr_accessor :bind_interface
|
2940
|
+
|
2753
2941
|
attr_accessor :default_path
|
2754
2942
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2755
2943
|
attr_accessor :egress_filter
|
@@ -2773,6 +2961,7 @@ module SDM
|
|
2773
2961
|
attr_accessor :url
|
2774
2962
|
|
2775
2963
|
def initialize(
|
2964
|
+
bind_interface: nil,
|
2776
2965
|
default_path: nil,
|
2777
2966
|
egress_filter: nil,
|
2778
2967
|
headers_blacklist: nil,
|
@@ -2785,6 +2974,7 @@ module SDM
|
|
2785
2974
|
tags: nil,
|
2786
2975
|
url: nil
|
2787
2976
|
)
|
2977
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2788
2978
|
@default_path = default_path == nil ? "" : default_path
|
2789
2979
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2790
2980
|
@headers_blacklist = headers_blacklist == nil ? "" : headers_blacklist
|
@@ -2808,6 +2998,9 @@ module SDM
|
|
2808
2998
|
end
|
2809
2999
|
|
2810
3000
|
class Kubernetes
|
3001
|
+
# Bind interface
|
3002
|
+
attr_accessor :bind_interface
|
3003
|
+
|
2811
3004
|
attr_accessor :certificate_authority
|
2812
3005
|
|
2813
3006
|
attr_accessor :client_certificate
|
@@ -2827,12 +3020,17 @@ module SDM
|
|
2827
3020
|
attr_accessor :name
|
2828
3021
|
|
2829
3022
|
attr_accessor :port
|
3023
|
+
|
3024
|
+
attr_accessor :remote_identity_group_id
|
3025
|
+
|
3026
|
+
attr_accessor :remote_identity_healthcheck_username
|
2830
3027
|
# ID of the secret store containing credentials for this resource, if any.
|
2831
3028
|
attr_accessor :secret_store_id
|
2832
3029
|
# Tags is a map of key, value pairs.
|
2833
3030
|
attr_accessor :tags
|
2834
3031
|
|
2835
3032
|
def initialize(
|
3033
|
+
bind_interface: nil,
|
2836
3034
|
certificate_authority: nil,
|
2837
3035
|
client_certificate: nil,
|
2838
3036
|
client_key: nil,
|
@@ -2843,9 +3041,12 @@ module SDM
|
|
2843
3041
|
id: nil,
|
2844
3042
|
name: nil,
|
2845
3043
|
port: nil,
|
3044
|
+
remote_identity_group_id: nil,
|
3045
|
+
remote_identity_healthcheck_username: nil,
|
2846
3046
|
secret_store_id: nil,
|
2847
3047
|
tags: nil
|
2848
3048
|
)
|
3049
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2849
3050
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
2850
3051
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
2851
3052
|
@client_key = client_key == nil ? "" : client_key
|
@@ -2856,6 +3057,8 @@ module SDM
|
|
2856
3057
|
@id = id == nil ? "" : id
|
2857
3058
|
@name = name == nil ? "" : name
|
2858
3059
|
@port = port == nil ? 0 : port
|
3060
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
3061
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
2859
3062
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2860
3063
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2861
3064
|
end
|
@@ -2870,6 +3073,8 @@ module SDM
|
|
2870
3073
|
end
|
2871
3074
|
|
2872
3075
|
class KubernetesBasicAuth
|
3076
|
+
# Bind interface
|
3077
|
+
attr_accessor :bind_interface
|
2873
3078
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2874
3079
|
attr_accessor :egress_filter
|
2875
3080
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -2894,6 +3099,7 @@ module SDM
|
|
2894
3099
|
attr_accessor :username
|
2895
3100
|
|
2896
3101
|
def initialize(
|
3102
|
+
bind_interface: nil,
|
2897
3103
|
egress_filter: nil,
|
2898
3104
|
healthcheck_namespace: nil,
|
2899
3105
|
healthy: nil,
|
@@ -2906,6 +3112,7 @@ module SDM
|
|
2906
3112
|
tags: nil,
|
2907
3113
|
username: nil
|
2908
3114
|
)
|
3115
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2909
3116
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2910
3117
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
2911
3118
|
@healthy = healthy == nil ? false : healthy
|
@@ -2929,6 +3136,8 @@ module SDM
|
|
2929
3136
|
end
|
2930
3137
|
|
2931
3138
|
class KubernetesServiceAccount
|
3139
|
+
# Bind interface
|
3140
|
+
attr_accessor :bind_interface
|
2932
3141
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2933
3142
|
attr_accessor :egress_filter
|
2934
3143
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -2943,6 +3152,10 @@ module SDM
|
|
2943
3152
|
attr_accessor :name
|
2944
3153
|
|
2945
3154
|
attr_accessor :port
|
3155
|
+
|
3156
|
+
attr_accessor :remote_identity_group_id
|
3157
|
+
|
3158
|
+
attr_accessor :remote_identity_healthcheck_username
|
2946
3159
|
# ID of the secret store containing credentials for this resource, if any.
|
2947
3160
|
attr_accessor :secret_store_id
|
2948
3161
|
# Tags is a map of key, value pairs.
|
@@ -2951,6 +3164,7 @@ module SDM
|
|
2951
3164
|
attr_accessor :token
|
2952
3165
|
|
2953
3166
|
def initialize(
|
3167
|
+
bind_interface: nil,
|
2954
3168
|
egress_filter: nil,
|
2955
3169
|
healthcheck_namespace: nil,
|
2956
3170
|
healthy: nil,
|
@@ -2958,10 +3172,13 @@ module SDM
|
|
2958
3172
|
id: nil,
|
2959
3173
|
name: nil,
|
2960
3174
|
port: nil,
|
3175
|
+
remote_identity_group_id: nil,
|
3176
|
+
remote_identity_healthcheck_username: nil,
|
2961
3177
|
secret_store_id: nil,
|
2962
3178
|
tags: nil,
|
2963
3179
|
token: nil
|
2964
3180
|
)
|
3181
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
2965
3182
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
2966
3183
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
2967
3184
|
@healthy = healthy == nil ? false : healthy
|
@@ -2969,6 +3186,8 @@ module SDM
|
|
2969
3186
|
@id = id == nil ? "" : id
|
2970
3187
|
@name = name == nil ? "" : name
|
2971
3188
|
@port = port == nil ? 0 : port
|
3189
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
3190
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
2972
3191
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2973
3192
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2974
3193
|
@token = token == nil ? "" : token
|
@@ -2984,6 +3203,8 @@ module SDM
|
|
2984
3203
|
end
|
2985
3204
|
|
2986
3205
|
class KubernetesServiceAccountUserImpersonation
|
3206
|
+
# Bind interface
|
3207
|
+
attr_accessor :bind_interface
|
2987
3208
|
# A filter applied to the routing logic to pin datasource to nodes.
|
2988
3209
|
attr_accessor :egress_filter
|
2989
3210
|
# The path used to check the health of your connection. Defaults to `default`.
|
@@ -3006,6 +3227,7 @@ module SDM
|
|
3006
3227
|
attr_accessor :token
|
3007
3228
|
|
3008
3229
|
def initialize(
|
3230
|
+
bind_interface: nil,
|
3009
3231
|
egress_filter: nil,
|
3010
3232
|
healthcheck_namespace: nil,
|
3011
3233
|
healthy: nil,
|
@@ -3017,6 +3239,7 @@ module SDM
|
|
3017
3239
|
tags: nil,
|
3018
3240
|
token: nil
|
3019
3241
|
)
|
3242
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3020
3243
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3021
3244
|
@healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
|
3022
3245
|
@healthy = healthy == nil ? false : healthy
|
@@ -3039,6 +3262,9 @@ module SDM
|
|
3039
3262
|
end
|
3040
3263
|
|
3041
3264
|
class KubernetesUserImpersonation
|
3265
|
+
# Bind interface
|
3266
|
+
attr_accessor :bind_interface
|
3267
|
+
|
3042
3268
|
attr_accessor :certificate_authority
|
3043
3269
|
|
3044
3270
|
attr_accessor :client_certificate
|
@@ -3064,6 +3290,7 @@ module SDM
|
|
3064
3290
|
attr_accessor :tags
|
3065
3291
|
|
3066
3292
|
def initialize(
|
3293
|
+
bind_interface: nil,
|
3067
3294
|
certificate_authority: nil,
|
3068
3295
|
client_certificate: nil,
|
3069
3296
|
client_key: nil,
|
@@ -3077,6 +3304,7 @@ module SDM
|
|
3077
3304
|
secret_store_id: nil,
|
3078
3305
|
tags: nil
|
3079
3306
|
)
|
3307
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3080
3308
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
3081
3309
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
3082
3310
|
@client_key = client_key == nil ? "" : client_key
|
@@ -3101,6 +3329,9 @@ module SDM
|
|
3101
3329
|
end
|
3102
3330
|
|
3103
3331
|
class MTLSMysql
|
3332
|
+
# Bind interface
|
3333
|
+
attr_accessor :bind_interface
|
3334
|
+
|
3104
3335
|
attr_accessor :certificate_authority
|
3105
3336
|
|
3106
3337
|
attr_accessor :client_certificate
|
@@ -3134,6 +3365,7 @@ module SDM
|
|
3134
3365
|
attr_accessor :username
|
3135
3366
|
|
3136
3367
|
def initialize(
|
3368
|
+
bind_interface: nil,
|
3137
3369
|
certificate_authority: nil,
|
3138
3370
|
client_certificate: nil,
|
3139
3371
|
client_key: nil,
|
@@ -3151,6 +3383,7 @@ module SDM
|
|
3151
3383
|
tags: nil,
|
3152
3384
|
username: nil
|
3153
3385
|
)
|
3386
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3154
3387
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
3155
3388
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
3156
3389
|
@client_key = client_key == nil ? "" : client_key
|
@@ -3179,6 +3412,9 @@ module SDM
|
|
3179
3412
|
end
|
3180
3413
|
|
3181
3414
|
class MTLSPostgres
|
3415
|
+
# Bind interface
|
3416
|
+
attr_accessor :bind_interface
|
3417
|
+
|
3182
3418
|
attr_accessor :certificate_authority
|
3183
3419
|
|
3184
3420
|
attr_accessor :client_certificate
|
@@ -3214,6 +3450,7 @@ module SDM
|
|
3214
3450
|
attr_accessor :username
|
3215
3451
|
|
3216
3452
|
def initialize(
|
3453
|
+
bind_interface: nil,
|
3217
3454
|
certificate_authority: nil,
|
3218
3455
|
client_certificate: nil,
|
3219
3456
|
client_key: nil,
|
@@ -3232,6 +3469,7 @@ module SDM
|
|
3232
3469
|
tags: nil,
|
3233
3470
|
username: nil
|
3234
3471
|
)
|
3472
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3235
3473
|
@certificate_authority = certificate_authority == nil ? "" : certificate_authority
|
3236
3474
|
@client_certificate = client_certificate == nil ? "" : client_certificate
|
3237
3475
|
@client_key = client_key == nil ? "" : client_key
|
@@ -3261,6 +3499,9 @@ module SDM
|
|
3261
3499
|
end
|
3262
3500
|
|
3263
3501
|
class Maria
|
3502
|
+
# Bind interface
|
3503
|
+
attr_accessor :bind_interface
|
3504
|
+
|
3264
3505
|
attr_accessor :database
|
3265
3506
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3266
3507
|
attr_accessor :egress_filter
|
@@ -3286,6 +3527,7 @@ module SDM
|
|
3286
3527
|
attr_accessor :username
|
3287
3528
|
|
3288
3529
|
def initialize(
|
3530
|
+
bind_interface: nil,
|
3289
3531
|
database: nil,
|
3290
3532
|
egress_filter: nil,
|
3291
3533
|
healthy: nil,
|
@@ -3299,6 +3541,7 @@ module SDM
|
|
3299
3541
|
tags: nil,
|
3300
3542
|
username: nil
|
3301
3543
|
)
|
3544
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3302
3545
|
@database = database == nil ? "" : database
|
3303
3546
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3304
3547
|
@healthy = healthy == nil ? false : healthy
|
@@ -3323,6 +3566,8 @@ module SDM
|
|
3323
3566
|
end
|
3324
3567
|
|
3325
3568
|
class Memcached
|
3569
|
+
# Bind interface
|
3570
|
+
attr_accessor :bind_interface
|
3326
3571
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3327
3572
|
attr_accessor :egress_filter
|
3328
3573
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -3343,6 +3588,7 @@ module SDM
|
|
3343
3588
|
attr_accessor :tags
|
3344
3589
|
|
3345
3590
|
def initialize(
|
3591
|
+
bind_interface: nil,
|
3346
3592
|
egress_filter: nil,
|
3347
3593
|
healthy: nil,
|
3348
3594
|
hostname: nil,
|
@@ -3353,6 +3599,7 @@ module SDM
|
|
3353
3599
|
secret_store_id: nil,
|
3354
3600
|
tags: nil
|
3355
3601
|
)
|
3602
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3356
3603
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3357
3604
|
@healthy = healthy == nil ? false : healthy
|
3358
3605
|
@hostname = hostname == nil ? "" : hostname
|
@@ -3374,6 +3621,9 @@ module SDM
|
|
3374
3621
|
end
|
3375
3622
|
|
3376
3623
|
class Memsql
|
3624
|
+
# Bind interface
|
3625
|
+
attr_accessor :bind_interface
|
3626
|
+
|
3377
3627
|
attr_accessor :database
|
3378
3628
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3379
3629
|
attr_accessor :egress_filter
|
@@ -3399,6 +3649,7 @@ module SDM
|
|
3399
3649
|
attr_accessor :username
|
3400
3650
|
|
3401
3651
|
def initialize(
|
3652
|
+
bind_interface: nil,
|
3402
3653
|
database: nil,
|
3403
3654
|
egress_filter: nil,
|
3404
3655
|
healthy: nil,
|
@@ -3412,6 +3663,7 @@ module SDM
|
|
3412
3663
|
tags: nil,
|
3413
3664
|
username: nil
|
3414
3665
|
)
|
3666
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3415
3667
|
@database = database == nil ? "" : database
|
3416
3668
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3417
3669
|
@healthy = healthy == nil ? false : healthy
|
@@ -3437,6 +3689,8 @@ module SDM
|
|
3437
3689
|
|
3438
3690
|
class MongoHost
|
3439
3691
|
attr_accessor :auth_database
|
3692
|
+
# Bind interface
|
3693
|
+
attr_accessor :bind_interface
|
3440
3694
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3441
3695
|
attr_accessor :egress_filter
|
3442
3696
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -3464,6 +3718,7 @@ module SDM
|
|
3464
3718
|
|
3465
3719
|
def initialize(
|
3466
3720
|
auth_database: nil,
|
3721
|
+
bind_interface: nil,
|
3467
3722
|
egress_filter: nil,
|
3468
3723
|
healthy: nil,
|
3469
3724
|
hostname: nil,
|
@@ -3478,6 +3733,7 @@ module SDM
|
|
3478
3733
|
username: nil
|
3479
3734
|
)
|
3480
3735
|
@auth_database = auth_database == nil ? "" : auth_database
|
3736
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3481
3737
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3482
3738
|
@healthy = healthy == nil ? false : healthy
|
3483
3739
|
@hostname = hostname == nil ? "" : hostname
|
@@ -3503,6 +3759,8 @@ module SDM
|
|
3503
3759
|
|
3504
3760
|
class MongoLegacyHost
|
3505
3761
|
attr_accessor :auth_database
|
3762
|
+
# Bind interface
|
3763
|
+
attr_accessor :bind_interface
|
3506
3764
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3507
3765
|
attr_accessor :egress_filter
|
3508
3766
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -3532,6 +3790,7 @@ module SDM
|
|
3532
3790
|
|
3533
3791
|
def initialize(
|
3534
3792
|
auth_database: nil,
|
3793
|
+
bind_interface: nil,
|
3535
3794
|
egress_filter: nil,
|
3536
3795
|
healthy: nil,
|
3537
3796
|
hostname: nil,
|
@@ -3547,6 +3806,7 @@ module SDM
|
|
3547
3806
|
username: nil
|
3548
3807
|
)
|
3549
3808
|
@auth_database = auth_database == nil ? "" : auth_database
|
3809
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3550
3810
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3551
3811
|
@healthy = healthy == nil ? false : healthy
|
3552
3812
|
@hostname = hostname == nil ? "" : hostname
|
@@ -3573,6 +3833,8 @@ module SDM
|
|
3573
3833
|
|
3574
3834
|
class MongoLegacyReplicaset
|
3575
3835
|
attr_accessor :auth_database
|
3836
|
+
# Bind interface
|
3837
|
+
attr_accessor :bind_interface
|
3576
3838
|
|
3577
3839
|
attr_accessor :connect_to_replica
|
3578
3840
|
# A filter applied to the routing logic to pin datasource to nodes.
|
@@ -3604,6 +3866,7 @@ module SDM
|
|
3604
3866
|
|
3605
3867
|
def initialize(
|
3606
3868
|
auth_database: nil,
|
3869
|
+
bind_interface: nil,
|
3607
3870
|
connect_to_replica: nil,
|
3608
3871
|
egress_filter: nil,
|
3609
3872
|
healthy: nil,
|
@@ -3620,6 +3883,7 @@ module SDM
|
|
3620
3883
|
username: nil
|
3621
3884
|
)
|
3622
3885
|
@auth_database = auth_database == nil ? "" : auth_database
|
3886
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3623
3887
|
@connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
|
3624
3888
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3625
3889
|
@healthy = healthy == nil ? false : healthy
|
@@ -3647,6 +3911,8 @@ module SDM
|
|
3647
3911
|
|
3648
3912
|
class MongoReplicaSet
|
3649
3913
|
attr_accessor :auth_database
|
3914
|
+
# Bind interface
|
3915
|
+
attr_accessor :bind_interface
|
3650
3916
|
|
3651
3917
|
attr_accessor :connect_to_replica
|
3652
3918
|
# A filter applied to the routing logic to pin datasource to nodes.
|
@@ -3678,6 +3944,7 @@ module SDM
|
|
3678
3944
|
|
3679
3945
|
def initialize(
|
3680
3946
|
auth_database: nil,
|
3947
|
+
bind_interface: nil,
|
3681
3948
|
connect_to_replica: nil,
|
3682
3949
|
egress_filter: nil,
|
3683
3950
|
healthy: nil,
|
@@ -3694,6 +3961,7 @@ module SDM
|
|
3694
3961
|
username: nil
|
3695
3962
|
)
|
3696
3963
|
@auth_database = auth_database == nil ? "" : auth_database
|
3964
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3697
3965
|
@connect_to_replica = connect_to_replica == nil ? false : connect_to_replica
|
3698
3966
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3699
3967
|
@healthy = healthy == nil ? false : healthy
|
@@ -3721,6 +3989,8 @@ module SDM
|
|
3721
3989
|
|
3722
3990
|
class MongoShardedCluster
|
3723
3991
|
attr_accessor :auth_database
|
3992
|
+
# Bind interface
|
3993
|
+
attr_accessor :bind_interface
|
3724
3994
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3725
3995
|
attr_accessor :egress_filter
|
3726
3996
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -3746,6 +4016,7 @@ module SDM
|
|
3746
4016
|
|
3747
4017
|
def initialize(
|
3748
4018
|
auth_database: nil,
|
4019
|
+
bind_interface: nil,
|
3749
4020
|
egress_filter: nil,
|
3750
4021
|
healthy: nil,
|
3751
4022
|
hostname: nil,
|
@@ -3759,6 +4030,7 @@ module SDM
|
|
3759
4030
|
username: nil
|
3760
4031
|
)
|
3761
4032
|
@auth_database = auth_database == nil ? "" : auth_database
|
4033
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3762
4034
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3763
4035
|
@healthy = healthy == nil ? false : healthy
|
3764
4036
|
@hostname = hostname == nil ? "" : hostname
|
@@ -3782,6 +4054,9 @@ module SDM
|
|
3782
4054
|
end
|
3783
4055
|
|
3784
4056
|
class Mysql
|
4057
|
+
# Bind interface
|
4058
|
+
attr_accessor :bind_interface
|
4059
|
+
|
3785
4060
|
attr_accessor :database
|
3786
4061
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3787
4062
|
attr_accessor :egress_filter
|
@@ -3807,6 +4082,7 @@ module SDM
|
|
3807
4082
|
attr_accessor :username
|
3808
4083
|
|
3809
4084
|
def initialize(
|
4085
|
+
bind_interface: nil,
|
3810
4086
|
database: nil,
|
3811
4087
|
egress_filter: nil,
|
3812
4088
|
healthy: nil,
|
@@ -3820,6 +4096,7 @@ module SDM
|
|
3820
4096
|
tags: nil,
|
3821
4097
|
username: nil
|
3822
4098
|
)
|
4099
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3823
4100
|
@database = database == nil ? "" : database
|
3824
4101
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3825
4102
|
@healthy = healthy == nil ? false : healthy
|
@@ -3844,6 +4121,8 @@ module SDM
|
|
3844
4121
|
end
|
3845
4122
|
|
3846
4123
|
class Neptune
|
4124
|
+
# Bind interface
|
4125
|
+
attr_accessor :bind_interface
|
3847
4126
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3848
4127
|
attr_accessor :egress_filter
|
3849
4128
|
|
@@ -3864,6 +4143,7 @@ module SDM
|
|
3864
4143
|
attr_accessor :tags
|
3865
4144
|
|
3866
4145
|
def initialize(
|
4146
|
+
bind_interface: nil,
|
3867
4147
|
egress_filter: nil,
|
3868
4148
|
endpoint: nil,
|
3869
4149
|
healthy: nil,
|
@@ -3874,6 +4154,7 @@ module SDM
|
|
3874
4154
|
secret_store_id: nil,
|
3875
4155
|
tags: nil
|
3876
4156
|
)
|
4157
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3877
4158
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3878
4159
|
@endpoint = endpoint == nil ? "" : endpoint
|
3879
4160
|
@healthy = healthy == nil ? false : healthy
|
@@ -3896,6 +4177,8 @@ module SDM
|
|
3896
4177
|
|
3897
4178
|
class NeptuneIAM
|
3898
4179
|
attr_accessor :access_key
|
4180
|
+
# Bind interface
|
4181
|
+
attr_accessor :bind_interface
|
3899
4182
|
# A filter applied to the routing logic to pin datasource to nodes.
|
3900
4183
|
attr_accessor :egress_filter
|
3901
4184
|
|
@@ -3925,6 +4208,7 @@ module SDM
|
|
3925
4208
|
|
3926
4209
|
def initialize(
|
3927
4210
|
access_key: nil,
|
4211
|
+
bind_interface: nil,
|
3928
4212
|
egress_filter: nil,
|
3929
4213
|
endpoint: nil,
|
3930
4214
|
healthy: nil,
|
@@ -3940,6 +4224,7 @@ module SDM
|
|
3940
4224
|
tags: nil
|
3941
4225
|
)
|
3942
4226
|
@access_key = access_key == nil ? "" : access_key
|
4227
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
3943
4228
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
3944
4229
|
@endpoint = endpoint == nil ? "" : endpoint
|
3945
4230
|
@healthy = healthy == nil ? false : healthy
|
@@ -4079,6 +4364,9 @@ module SDM
|
|
4079
4364
|
end
|
4080
4365
|
|
4081
4366
|
class Oracle
|
4367
|
+
# Bind interface
|
4368
|
+
attr_accessor :bind_interface
|
4369
|
+
|
4082
4370
|
attr_accessor :database
|
4083
4371
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4084
4372
|
attr_accessor :egress_filter
|
@@ -4106,6 +4394,7 @@ module SDM
|
|
4106
4394
|
attr_accessor :username
|
4107
4395
|
|
4108
4396
|
def initialize(
|
4397
|
+
bind_interface: nil,
|
4109
4398
|
database: nil,
|
4110
4399
|
egress_filter: nil,
|
4111
4400
|
healthy: nil,
|
@@ -4120,6 +4409,7 @@ module SDM
|
|
4120
4409
|
tls_required: nil,
|
4121
4410
|
username: nil
|
4122
4411
|
)
|
4412
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4123
4413
|
@database = database == nil ? "" : database
|
4124
4414
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4125
4415
|
@healthy = healthy == nil ? false : healthy
|
@@ -4145,6 +4435,9 @@ module SDM
|
|
4145
4435
|
end
|
4146
4436
|
|
4147
4437
|
class Postgres
|
4438
|
+
# Bind interface
|
4439
|
+
attr_accessor :bind_interface
|
4440
|
+
|
4148
4441
|
attr_accessor :database
|
4149
4442
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4150
4443
|
attr_accessor :egress_filter
|
@@ -4172,6 +4465,7 @@ module SDM
|
|
4172
4465
|
attr_accessor :username
|
4173
4466
|
|
4174
4467
|
def initialize(
|
4468
|
+
bind_interface: nil,
|
4175
4469
|
database: nil,
|
4176
4470
|
egress_filter: nil,
|
4177
4471
|
healthy: nil,
|
@@ -4186,6 +4480,7 @@ module SDM
|
|
4186
4480
|
tags: nil,
|
4187
4481
|
username: nil
|
4188
4482
|
)
|
4483
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4189
4484
|
@database = database == nil ? "" : database
|
4190
4485
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4191
4486
|
@healthy = healthy == nil ? false : healthy
|
@@ -4211,6 +4506,9 @@ module SDM
|
|
4211
4506
|
end
|
4212
4507
|
|
4213
4508
|
class Presto
|
4509
|
+
# Bind interface
|
4510
|
+
attr_accessor :bind_interface
|
4511
|
+
|
4214
4512
|
attr_accessor :database
|
4215
4513
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4216
4514
|
attr_accessor :egress_filter
|
@@ -4238,6 +4536,7 @@ module SDM
|
|
4238
4536
|
attr_accessor :username
|
4239
4537
|
|
4240
4538
|
def initialize(
|
4539
|
+
bind_interface: nil,
|
4241
4540
|
database: nil,
|
4242
4541
|
egress_filter: nil,
|
4243
4542
|
healthy: nil,
|
@@ -4252,6 +4551,7 @@ module SDM
|
|
4252
4551
|
tls_required: nil,
|
4253
4552
|
username: nil
|
4254
4553
|
)
|
4554
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4255
4555
|
@database = database == nil ? "" : database
|
4256
4556
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4257
4557
|
@healthy = healthy == nil ? false : healthy
|
@@ -4277,6 +4577,9 @@ module SDM
|
|
4277
4577
|
end
|
4278
4578
|
|
4279
4579
|
class RDP
|
4580
|
+
# Bind interface
|
4581
|
+
attr_accessor :bind_interface
|
4582
|
+
|
4280
4583
|
attr_accessor :downgrade_nla_connections
|
4281
4584
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4282
4585
|
attr_accessor :egress_filter
|
@@ -4302,6 +4605,7 @@ module SDM
|
|
4302
4605
|
attr_accessor :username
|
4303
4606
|
|
4304
4607
|
def initialize(
|
4608
|
+
bind_interface: nil,
|
4305
4609
|
downgrade_nla_connections: nil,
|
4306
4610
|
egress_filter: nil,
|
4307
4611
|
healthy: nil,
|
@@ -4315,6 +4619,7 @@ module SDM
|
|
4315
4619
|
tags: nil,
|
4316
4620
|
username: nil
|
4317
4621
|
)
|
4622
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4318
4623
|
@downgrade_nla_connections = downgrade_nla_connections == nil ? false : downgrade_nla_connections
|
4319
4624
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4320
4625
|
@healthy = healthy == nil ? false : healthy
|
@@ -4339,6 +4644,8 @@ module SDM
|
|
4339
4644
|
end
|
4340
4645
|
|
4341
4646
|
class RabbitMQAMQP091
|
4647
|
+
# Bind interface
|
4648
|
+
attr_accessor :bind_interface
|
4342
4649
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4343
4650
|
attr_accessor :egress_filter
|
4344
4651
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -4365,6 +4672,7 @@ module SDM
|
|
4365
4672
|
attr_accessor :username
|
4366
4673
|
|
4367
4674
|
def initialize(
|
4675
|
+
bind_interface: nil,
|
4368
4676
|
egress_filter: nil,
|
4369
4677
|
healthy: nil,
|
4370
4678
|
hostname: nil,
|
@@ -4378,6 +4686,7 @@ module SDM
|
|
4378
4686
|
tls_required: nil,
|
4379
4687
|
username: nil
|
4380
4688
|
)
|
4689
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4381
4690
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4382
4691
|
@healthy = healthy == nil ? false : healthy
|
4383
4692
|
@hostname = hostname == nil ? "" : hostname
|
@@ -4437,6 +4746,8 @@ module SDM
|
|
4437
4746
|
end
|
4438
4747
|
|
4439
4748
|
class RawTCP
|
4749
|
+
# Bind interface
|
4750
|
+
attr_accessor :bind_interface
|
4440
4751
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4441
4752
|
attr_accessor :egress_filter
|
4442
4753
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -4457,6 +4768,7 @@ module SDM
|
|
4457
4768
|
attr_accessor :tags
|
4458
4769
|
|
4459
4770
|
def initialize(
|
4771
|
+
bind_interface: nil,
|
4460
4772
|
egress_filter: nil,
|
4461
4773
|
healthy: nil,
|
4462
4774
|
hostname: nil,
|
@@ -4467,6 +4779,7 @@ module SDM
|
|
4467
4779
|
secret_store_id: nil,
|
4468
4780
|
tags: nil
|
4469
4781
|
)
|
4782
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4470
4783
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4471
4784
|
@healthy = healthy == nil ? false : healthy
|
4472
4785
|
@hostname = hostname == nil ? "" : hostname
|
@@ -4488,6 +4801,8 @@ module SDM
|
|
4488
4801
|
end
|
4489
4802
|
|
4490
4803
|
class Redis
|
4804
|
+
# Bind interface
|
4805
|
+
attr_accessor :bind_interface
|
4491
4806
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4492
4807
|
attr_accessor :egress_filter
|
4493
4808
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -4510,6 +4825,7 @@ module SDM
|
|
4510
4825
|
attr_accessor :tags
|
4511
4826
|
|
4512
4827
|
def initialize(
|
4828
|
+
bind_interface: nil,
|
4513
4829
|
egress_filter: nil,
|
4514
4830
|
healthy: nil,
|
4515
4831
|
hostname: nil,
|
@@ -4521,6 +4837,7 @@ module SDM
|
|
4521
4837
|
secret_store_id: nil,
|
4522
4838
|
tags: nil
|
4523
4839
|
)
|
4840
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4524
4841
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4525
4842
|
@healthy = healthy == nil ? false : healthy
|
4526
4843
|
@hostname = hostname == nil ? "" : hostname
|
@@ -4543,6 +4860,9 @@ module SDM
|
|
4543
4860
|
end
|
4544
4861
|
|
4545
4862
|
class Redshift
|
4863
|
+
# Bind interface
|
4864
|
+
attr_accessor :bind_interface
|
4865
|
+
|
4546
4866
|
attr_accessor :database
|
4547
4867
|
# A filter applied to the routing logic to pin datasource to nodes.
|
4548
4868
|
attr_accessor :egress_filter
|
@@ -4570,6 +4890,7 @@ module SDM
|
|
4570
4890
|
attr_accessor :username
|
4571
4891
|
|
4572
4892
|
def initialize(
|
4893
|
+
bind_interface: nil,
|
4573
4894
|
database: nil,
|
4574
4895
|
egress_filter: nil,
|
4575
4896
|
healthy: nil,
|
@@ -4584,6 +4905,7 @@ module SDM
|
|
4584
4905
|
tags: nil,
|
4585
4906
|
username: nil
|
4586
4907
|
)
|
4908
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
4587
4909
|
@database = database == nil ? "" : database
|
4588
4910
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
4589
4911
|
@healthy = healthy == nil ? false : healthy
|
@@ -4647,6 +4969,200 @@ module SDM
|
|
4647
4969
|
end
|
4648
4970
|
end
|
4649
4971
|
|
4972
|
+
# RemoteIdentities define the username to be used for a specific account
|
4973
|
+
# when connecting to a remote resource using that group.
|
4974
|
+
class RemoteIdentity
|
4975
|
+
# The account for this remote identity.
|
4976
|
+
attr_accessor :account_id
|
4977
|
+
# Unique identifier of the RemoteIdentity.
|
4978
|
+
attr_accessor :id
|
4979
|
+
# The remote identity group.
|
4980
|
+
attr_accessor :remote_identity_group_id
|
4981
|
+
# The username to be used as the remote identity for this account.
|
4982
|
+
attr_accessor :username
|
4983
|
+
|
4984
|
+
def initialize(
|
4985
|
+
account_id: nil,
|
4986
|
+
id: nil,
|
4987
|
+
remote_identity_group_id: nil,
|
4988
|
+
username: nil
|
4989
|
+
)
|
4990
|
+
@account_id = account_id == nil ? "" : account_id
|
4991
|
+
@id = id == nil ? "" : id
|
4992
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
4993
|
+
@username = username == nil ? "" : username
|
4994
|
+
end
|
4995
|
+
|
4996
|
+
def to_json(options = {})
|
4997
|
+
hash = {}
|
4998
|
+
self.instance_variables.each do |var|
|
4999
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5000
|
+
end
|
5001
|
+
hash.to_json
|
5002
|
+
end
|
5003
|
+
end
|
5004
|
+
|
5005
|
+
# RemoteIdentityCreateResponse reports how the RemoteIdentities were created in the system.
|
5006
|
+
class RemoteIdentityCreateResponse
|
5007
|
+
# Reserved for future use.
|
5008
|
+
attr_accessor :meta
|
5009
|
+
# Rate limit information.
|
5010
|
+
attr_accessor :rate_limit
|
5011
|
+
# The created RemoteIdentity.
|
5012
|
+
attr_accessor :remote_identity
|
5013
|
+
|
5014
|
+
def initialize(
|
5015
|
+
meta: nil,
|
5016
|
+
rate_limit: nil,
|
5017
|
+
remote_identity: nil
|
5018
|
+
)
|
5019
|
+
@meta = meta == nil ? nil : meta
|
5020
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
5021
|
+
@remote_identity = remote_identity == nil ? nil : remote_identity
|
5022
|
+
end
|
5023
|
+
|
5024
|
+
def to_json(options = {})
|
5025
|
+
hash = {}
|
5026
|
+
self.instance_variables.each do |var|
|
5027
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5028
|
+
end
|
5029
|
+
hash.to_json
|
5030
|
+
end
|
5031
|
+
end
|
5032
|
+
|
5033
|
+
# RemoteIdentityDeleteResponse returns information about a RemoteIdentity that was deleted.
|
5034
|
+
class RemoteIdentityDeleteResponse
|
5035
|
+
# Reserved for future use.
|
5036
|
+
attr_accessor :meta
|
5037
|
+
# Rate limit information.
|
5038
|
+
attr_accessor :rate_limit
|
5039
|
+
|
5040
|
+
def initialize(
|
5041
|
+
meta: nil,
|
5042
|
+
rate_limit: nil
|
5043
|
+
)
|
5044
|
+
@meta = meta == nil ? nil : meta
|
5045
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
5046
|
+
end
|
5047
|
+
|
5048
|
+
def to_json(options = {})
|
5049
|
+
hash = {}
|
5050
|
+
self.instance_variables.each do |var|
|
5051
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5052
|
+
end
|
5053
|
+
hash.to_json
|
5054
|
+
end
|
5055
|
+
end
|
5056
|
+
|
5057
|
+
# RemoteIdentityGetResponse returns a requested RemoteIdentity.
|
5058
|
+
class RemoteIdentityGetResponse
|
5059
|
+
# Reserved for future use.
|
5060
|
+
attr_accessor :meta
|
5061
|
+
# Rate limit information.
|
5062
|
+
attr_accessor :rate_limit
|
5063
|
+
# The requested RemoteIdentity.
|
5064
|
+
attr_accessor :remote_identity
|
5065
|
+
|
5066
|
+
def initialize(
|
5067
|
+
meta: nil,
|
5068
|
+
rate_limit: nil,
|
5069
|
+
remote_identity: nil
|
5070
|
+
)
|
5071
|
+
@meta = meta == nil ? nil : meta
|
5072
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
5073
|
+
@remote_identity = remote_identity == nil ? nil : remote_identity
|
5074
|
+
end
|
5075
|
+
|
5076
|
+
def to_json(options = {})
|
5077
|
+
hash = {}
|
5078
|
+
self.instance_variables.each do |var|
|
5079
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5080
|
+
end
|
5081
|
+
hash.to_json
|
5082
|
+
end
|
5083
|
+
end
|
5084
|
+
|
5085
|
+
# A RemoteIdentityGroup defines a group of remote identities.
|
5086
|
+
class RemoteIdentityGroup
|
5087
|
+
# Unique identifier of the RemoteIdentityGroup.
|
5088
|
+
attr_accessor :id
|
5089
|
+
# Unique human-readable name of the RemoteIdentityGroup.
|
5090
|
+
attr_accessor :name
|
5091
|
+
|
5092
|
+
def initialize(
|
5093
|
+
id: nil,
|
5094
|
+
name: nil
|
5095
|
+
)
|
5096
|
+
@id = id == nil ? "" : id
|
5097
|
+
@name = name == nil ? "" : name
|
5098
|
+
end
|
5099
|
+
|
5100
|
+
def to_json(options = {})
|
5101
|
+
hash = {}
|
5102
|
+
self.instance_variables.each do |var|
|
5103
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5104
|
+
end
|
5105
|
+
hash.to_json
|
5106
|
+
end
|
5107
|
+
end
|
5108
|
+
|
5109
|
+
# RemoteIdentityGroupGetResponse returns a requested RemoteIdentityGroup.
|
5110
|
+
class RemoteIdentityGroupGetResponse
|
5111
|
+
# Reserved for future use.
|
5112
|
+
attr_accessor :meta
|
5113
|
+
# Rate limit information.
|
5114
|
+
attr_accessor :rate_limit
|
5115
|
+
# The requested RemoteIdentityGroup.
|
5116
|
+
attr_accessor :remote_identity_group
|
5117
|
+
|
5118
|
+
def initialize(
|
5119
|
+
meta: nil,
|
5120
|
+
rate_limit: nil,
|
5121
|
+
remote_identity_group: nil
|
5122
|
+
)
|
5123
|
+
@meta = meta == nil ? nil : meta
|
5124
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
5125
|
+
@remote_identity_group = remote_identity_group == nil ? nil : remote_identity_group
|
5126
|
+
end
|
5127
|
+
|
5128
|
+
def to_json(options = {})
|
5129
|
+
hash = {}
|
5130
|
+
self.instance_variables.each do |var|
|
5131
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5132
|
+
end
|
5133
|
+
hash.to_json
|
5134
|
+
end
|
5135
|
+
end
|
5136
|
+
|
5137
|
+
# RemoteIdentityUpdateResponse returns the fields of a RemoteIdentity after it has been updated by
|
5138
|
+
# a RemoteIdentityUpdateRequest.
|
5139
|
+
class RemoteIdentityUpdateResponse
|
5140
|
+
# Reserved for future use.
|
5141
|
+
attr_accessor :meta
|
5142
|
+
# Rate limit information.
|
5143
|
+
attr_accessor :rate_limit
|
5144
|
+
# The updated RemoteIdentity.
|
5145
|
+
attr_accessor :remote_identity
|
5146
|
+
|
5147
|
+
def initialize(
|
5148
|
+
meta: nil,
|
5149
|
+
rate_limit: nil,
|
5150
|
+
remote_identity: nil
|
5151
|
+
)
|
5152
|
+
@meta = meta == nil ? nil : meta
|
5153
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
5154
|
+
@remote_identity = remote_identity == nil ? nil : remote_identity
|
5155
|
+
end
|
5156
|
+
|
5157
|
+
def to_json(options = {})
|
5158
|
+
hash = {}
|
5159
|
+
self.instance_variables.each do |var|
|
5160
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5161
|
+
end
|
5162
|
+
hash.to_json
|
5163
|
+
end
|
5164
|
+
end
|
5165
|
+
|
4650
5166
|
# ResourceCreateResponse reports how the Resources were created in the system.
|
4651
5167
|
class ResourceCreateResponse
|
4652
5168
|
# Reserved for future use.
|
@@ -5140,6 +5656,9 @@ module SDM
|
|
5140
5656
|
end
|
5141
5657
|
|
5142
5658
|
class SQLServer
|
5659
|
+
# Bind interface
|
5660
|
+
attr_accessor :bind_interface
|
5661
|
+
|
5143
5662
|
attr_accessor :database
|
5144
5663
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5145
5664
|
attr_accessor :egress_filter
|
@@ -5169,6 +5688,7 @@ module SDM
|
|
5169
5688
|
attr_accessor :username
|
5170
5689
|
|
5171
5690
|
def initialize(
|
5691
|
+
bind_interface: nil,
|
5172
5692
|
database: nil,
|
5173
5693
|
egress_filter: nil,
|
5174
5694
|
healthy: nil,
|
@@ -5184,6 +5704,7 @@ module SDM
|
|
5184
5704
|
tags: nil,
|
5185
5705
|
username: nil
|
5186
5706
|
)
|
5707
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5187
5708
|
@database = database == nil ? "" : database
|
5188
5709
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5189
5710
|
@healthy = healthy == nil ? false : healthy
|
@@ -5211,6 +5732,8 @@ module SDM
|
|
5211
5732
|
|
5212
5733
|
class SSH
|
5213
5734
|
attr_accessor :allow_deprecated_key_exchanges
|
5735
|
+
# Bind interface
|
5736
|
+
attr_accessor :bind_interface
|
5214
5737
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5215
5738
|
attr_accessor :egress_filter
|
5216
5739
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5226,6 +5749,8 @@ module SDM
|
|
5226
5749
|
|
5227
5750
|
attr_accessor :port_forwarding
|
5228
5751
|
|
5752
|
+
attr_accessor :port_override
|
5753
|
+
|
5229
5754
|
attr_accessor :public_key
|
5230
5755
|
# ID of the secret store containing credentials for this resource, if any.
|
5231
5756
|
attr_accessor :secret_store_id
|
@@ -5236,6 +5761,7 @@ module SDM
|
|
5236
5761
|
|
5237
5762
|
def initialize(
|
5238
5763
|
allow_deprecated_key_exchanges: nil,
|
5764
|
+
bind_interface: nil,
|
5239
5765
|
egress_filter: nil,
|
5240
5766
|
healthy: nil,
|
5241
5767
|
hostname: nil,
|
@@ -5243,12 +5769,14 @@ module SDM
|
|
5243
5769
|
name: nil,
|
5244
5770
|
port: nil,
|
5245
5771
|
port_forwarding: nil,
|
5772
|
+
port_override: nil,
|
5246
5773
|
public_key: nil,
|
5247
5774
|
secret_store_id: nil,
|
5248
5775
|
tags: nil,
|
5249
5776
|
username: nil
|
5250
5777
|
)
|
5251
5778
|
@allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
|
5779
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5252
5780
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5253
5781
|
@healthy = healthy == nil ? false : healthy
|
5254
5782
|
@hostname = hostname == nil ? "" : hostname
|
@@ -5256,6 +5784,7 @@ module SDM
|
|
5256
5784
|
@name = name == nil ? "" : name
|
5257
5785
|
@port = port == nil ? 0 : port
|
5258
5786
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
5787
|
+
@port_override = port_override == nil ? 0 : port_override
|
5259
5788
|
@public_key = public_key == nil ? "" : public_key
|
5260
5789
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5261
5790
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5273,6 +5802,8 @@ module SDM
|
|
5273
5802
|
|
5274
5803
|
class SSHCert
|
5275
5804
|
attr_accessor :allow_deprecated_key_exchanges
|
5805
|
+
# Bind interface
|
5806
|
+
attr_accessor :bind_interface
|
5276
5807
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5277
5808
|
attr_accessor :egress_filter
|
5278
5809
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5287,6 +5818,12 @@ module SDM
|
|
5287
5818
|
attr_accessor :port
|
5288
5819
|
|
5289
5820
|
attr_accessor :port_forwarding
|
5821
|
+
|
5822
|
+
attr_accessor :port_override
|
5823
|
+
|
5824
|
+
attr_accessor :remote_identity_group_id
|
5825
|
+
|
5826
|
+
attr_accessor :remote_identity_healthcheck_username
|
5290
5827
|
# ID of the secret store containing credentials for this resource, if any.
|
5291
5828
|
attr_accessor :secret_store_id
|
5292
5829
|
# Tags is a map of key, value pairs.
|
@@ -5296,6 +5833,7 @@ module SDM
|
|
5296
5833
|
|
5297
5834
|
def initialize(
|
5298
5835
|
allow_deprecated_key_exchanges: nil,
|
5836
|
+
bind_interface: nil,
|
5299
5837
|
egress_filter: nil,
|
5300
5838
|
healthy: nil,
|
5301
5839
|
hostname: nil,
|
@@ -5303,11 +5841,15 @@ module SDM
|
|
5303
5841
|
name: nil,
|
5304
5842
|
port: nil,
|
5305
5843
|
port_forwarding: nil,
|
5844
|
+
port_override: nil,
|
5845
|
+
remote_identity_group_id: nil,
|
5846
|
+
remote_identity_healthcheck_username: nil,
|
5306
5847
|
secret_store_id: nil,
|
5307
5848
|
tags: nil,
|
5308
5849
|
username: nil
|
5309
5850
|
)
|
5310
5851
|
@allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
|
5852
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5311
5853
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5312
5854
|
@healthy = healthy == nil ? false : healthy
|
5313
5855
|
@hostname = hostname == nil ? "" : hostname
|
@@ -5315,6 +5857,9 @@ module SDM
|
|
5315
5857
|
@name = name == nil ? "" : name
|
5316
5858
|
@port = port == nil ? 0 : port
|
5317
5859
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
5860
|
+
@port_override = port_override == nil ? 0 : port_override
|
5861
|
+
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
5862
|
+
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
5318
5863
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5319
5864
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5320
5865
|
@username = username == nil ? "" : username
|
@@ -5331,6 +5876,8 @@ module SDM
|
|
5331
5876
|
|
5332
5877
|
class SSHCustomerKey
|
5333
5878
|
attr_accessor :allow_deprecated_key_exchanges
|
5879
|
+
# Bind interface
|
5880
|
+
attr_accessor :bind_interface
|
5334
5881
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5335
5882
|
attr_accessor :egress_filter
|
5336
5883
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5346,6 +5893,8 @@ module SDM
|
|
5346
5893
|
|
5347
5894
|
attr_accessor :port_forwarding
|
5348
5895
|
|
5896
|
+
attr_accessor :port_override
|
5897
|
+
|
5349
5898
|
attr_accessor :private_key
|
5350
5899
|
# ID of the secret store containing credentials for this resource, if any.
|
5351
5900
|
attr_accessor :secret_store_id
|
@@ -5356,6 +5905,7 @@ module SDM
|
|
5356
5905
|
|
5357
5906
|
def initialize(
|
5358
5907
|
allow_deprecated_key_exchanges: nil,
|
5908
|
+
bind_interface: nil,
|
5359
5909
|
egress_filter: nil,
|
5360
5910
|
healthy: nil,
|
5361
5911
|
hostname: nil,
|
@@ -5363,12 +5913,14 @@ module SDM
|
|
5363
5913
|
name: nil,
|
5364
5914
|
port: nil,
|
5365
5915
|
port_forwarding: nil,
|
5916
|
+
port_override: nil,
|
5366
5917
|
private_key: nil,
|
5367
5918
|
secret_store_id: nil,
|
5368
5919
|
tags: nil,
|
5369
5920
|
username: nil
|
5370
5921
|
)
|
5371
5922
|
@allow_deprecated_key_exchanges = allow_deprecated_key_exchanges == nil ? false : allow_deprecated_key_exchanges
|
5923
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5372
5924
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5373
5925
|
@healthy = healthy == nil ? false : healthy
|
5374
5926
|
@hostname = hostname == nil ? "" : hostname
|
@@ -5376,6 +5928,7 @@ module SDM
|
|
5376
5928
|
@name = name == nil ? "" : name
|
5377
5929
|
@port = port == nil ? 0 : port
|
5378
5930
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
5931
|
+
@port_override = port_override == nil ? 0 : port_override
|
5379
5932
|
@private_key = private_key == nil ? "" : private_key
|
5380
5933
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5381
5934
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5534,6 +6087,9 @@ module SDM
|
|
5534
6087
|
end
|
5535
6088
|
|
5536
6089
|
class SingleStore
|
6090
|
+
# Bind interface
|
6091
|
+
attr_accessor :bind_interface
|
6092
|
+
|
5537
6093
|
attr_accessor :database
|
5538
6094
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5539
6095
|
attr_accessor :egress_filter
|
@@ -5559,6 +6115,7 @@ module SDM
|
|
5559
6115
|
attr_accessor :username
|
5560
6116
|
|
5561
6117
|
def initialize(
|
6118
|
+
bind_interface: nil,
|
5562
6119
|
database: nil,
|
5563
6120
|
egress_filter: nil,
|
5564
6121
|
healthy: nil,
|
@@ -5572,6 +6129,7 @@ module SDM
|
|
5572
6129
|
tags: nil,
|
5573
6130
|
username: nil
|
5574
6131
|
)
|
6132
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5575
6133
|
@database = database == nil ? "" : database
|
5576
6134
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5577
6135
|
@healthy = healthy == nil ? false : healthy
|
@@ -5596,6 +6154,9 @@ module SDM
|
|
5596
6154
|
end
|
5597
6155
|
|
5598
6156
|
class Snowflake
|
6157
|
+
# Bind interface
|
6158
|
+
attr_accessor :bind_interface
|
6159
|
+
|
5599
6160
|
attr_accessor :database
|
5600
6161
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5601
6162
|
attr_accessor :egress_filter
|
@@ -5621,6 +6182,7 @@ module SDM
|
|
5621
6182
|
attr_accessor :username
|
5622
6183
|
|
5623
6184
|
def initialize(
|
6185
|
+
bind_interface: nil,
|
5624
6186
|
database: nil,
|
5625
6187
|
egress_filter: nil,
|
5626
6188
|
healthy: nil,
|
@@ -5634,6 +6196,7 @@ module SDM
|
|
5634
6196
|
tags: nil,
|
5635
6197
|
username: nil
|
5636
6198
|
)
|
6199
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5637
6200
|
@database = database == nil ? "" : database
|
5638
6201
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5639
6202
|
@healthy = healthy == nil ? false : healthy
|
@@ -5658,6 +6221,8 @@ module SDM
|
|
5658
6221
|
end
|
5659
6222
|
|
5660
6223
|
class Sybase
|
6224
|
+
# Bind interface
|
6225
|
+
attr_accessor :bind_interface
|
5661
6226
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5662
6227
|
attr_accessor :egress_filter
|
5663
6228
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5682,6 +6247,7 @@ module SDM
|
|
5682
6247
|
attr_accessor :username
|
5683
6248
|
|
5684
6249
|
def initialize(
|
6250
|
+
bind_interface: nil,
|
5685
6251
|
egress_filter: nil,
|
5686
6252
|
healthy: nil,
|
5687
6253
|
hostname: nil,
|
@@ -5694,6 +6260,7 @@ module SDM
|
|
5694
6260
|
tags: nil,
|
5695
6261
|
username: nil
|
5696
6262
|
)
|
6263
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5697
6264
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5698
6265
|
@healthy = healthy == nil ? false : healthy
|
5699
6266
|
@hostname = hostname == nil ? "" : hostname
|
@@ -5717,6 +6284,8 @@ module SDM
|
|
5717
6284
|
end
|
5718
6285
|
|
5719
6286
|
class SybaseIQ
|
6287
|
+
# Bind interface
|
6288
|
+
attr_accessor :bind_interface
|
5720
6289
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5721
6290
|
attr_accessor :egress_filter
|
5722
6291
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5741,6 +6310,7 @@ module SDM
|
|
5741
6310
|
attr_accessor :username
|
5742
6311
|
|
5743
6312
|
def initialize(
|
6313
|
+
bind_interface: nil,
|
5744
6314
|
egress_filter: nil,
|
5745
6315
|
healthy: nil,
|
5746
6316
|
hostname: nil,
|
@@ -5753,6 +6323,7 @@ module SDM
|
|
5753
6323
|
tags: nil,
|
5754
6324
|
username: nil
|
5755
6325
|
)
|
6326
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5756
6327
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5757
6328
|
@healthy = healthy == nil ? false : healthy
|
5758
6329
|
@hostname = hostname == nil ? "" : hostname
|
@@ -5798,6 +6369,8 @@ module SDM
|
|
5798
6369
|
end
|
5799
6370
|
|
5800
6371
|
class Teradata
|
6372
|
+
# Bind interface
|
6373
|
+
attr_accessor :bind_interface
|
5801
6374
|
# A filter applied to the routing logic to pin datasource to nodes.
|
5802
6375
|
attr_accessor :egress_filter
|
5803
6376
|
# True if the datasource is reachable and the credentials are valid.
|
@@ -5822,6 +6395,7 @@ module SDM
|
|
5822
6395
|
attr_accessor :username
|
5823
6396
|
|
5824
6397
|
def initialize(
|
6398
|
+
bind_interface: nil,
|
5825
6399
|
egress_filter: nil,
|
5826
6400
|
healthy: nil,
|
5827
6401
|
hostname: nil,
|
@@ -5834,6 +6408,7 @@ module SDM
|
|
5834
6408
|
tags: nil,
|
5835
6409
|
username: nil
|
5836
6410
|
)
|
6411
|
+
@bind_interface = bind_interface == nil ? "" : bind_interface
|
5837
6412
|
@egress_filter = egress_filter == nil ? "" : egress_filter
|
5838
6413
|
@healthy = healthy == nil ? false : healthy
|
5839
6414
|
@hostname = hostname == nil ? "" : hostname
|