strongdm 11.11.2 → 11.13.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-4dde319aaa2b09f4fc9dd335ac200bda5af273d3.idx → pack-82916d03563873b7bd12c4dc7c0ee9dcd593c652.idx} +0 -0
- data/.git/objects/pack/{pack-4dde319aaa2b09f4fc9dd335ac200bda5af273d3.pack → pack-82916d03563873b7bd12c4dc7c0ee9dcd593c652.pack} +0 -0
- data/.git/packed-refs +4 -2
- data/.git/refs/heads/master +1 -1
- data/lib/constants.rb +6 -0
- data/lib/grpc/plumbing.rb +174 -0
- data/lib/models/porcelain.rb +348 -0
- data/lib/strongdm.rb +1 -1
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +4 -4
data/lib/models/porcelain.rb
CHANGED
@@ -53,6 +53,8 @@ module SDM
|
|
53
53
|
attr_accessor :port
|
54
54
|
# The local port used by clients to connect to this resource.
|
55
55
|
attr_accessor :port_override
|
56
|
+
# ID of the proxy cluster for this resource, if any.
|
57
|
+
attr_accessor :proxy_cluster_id
|
56
58
|
# ID of the secret store containing credentials for this resource, if any.
|
57
59
|
attr_accessor :secret_store_id
|
58
60
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -78,6 +80,7 @@ module SDM
|
|
78
80
|
name: nil,
|
79
81
|
port: nil,
|
80
82
|
port_override: nil,
|
83
|
+
proxy_cluster_id: nil,
|
81
84
|
secret_store_id: nil,
|
82
85
|
subdomain: nil,
|
83
86
|
tags: nil
|
@@ -99,6 +102,7 @@ module SDM
|
|
99
102
|
@name = name == nil ? "" : name
|
100
103
|
@port = port == nil ? 0 : port
|
101
104
|
@port_override = port_override == nil ? 0 : port_override
|
105
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
102
106
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
103
107
|
@subdomain = subdomain == nil ? "" : subdomain
|
104
108
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -135,6 +139,8 @@ module SDM
|
|
135
139
|
attr_accessor :port
|
136
140
|
# The local port used by clients to connect to this resource.
|
137
141
|
attr_accessor :port_override
|
142
|
+
# ID of the proxy cluster for this resource, if any.
|
143
|
+
attr_accessor :proxy_cluster_id
|
138
144
|
# ID of the secret store containing credentials for this resource, if any.
|
139
145
|
attr_accessor :secret_store_id
|
140
146
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -155,6 +161,7 @@ module SDM
|
|
155
161
|
password: nil,
|
156
162
|
port: nil,
|
157
163
|
port_override: nil,
|
164
|
+
proxy_cluster_id: nil,
|
158
165
|
secret_store_id: nil,
|
159
166
|
subdomain: nil,
|
160
167
|
tags: nil,
|
@@ -170,6 +177,7 @@ module SDM
|
|
170
177
|
@password = password == nil ? "" : password
|
171
178
|
@port = port == nil ? 0 : port
|
172
179
|
@port_override = port_override == nil ? 0 : port_override
|
180
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
173
181
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
174
182
|
@subdomain = subdomain == nil ? "" : subdomain
|
175
183
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -216,6 +224,8 @@ module SDM
|
|
216
224
|
attr_accessor :port
|
217
225
|
# The local port used by clients to connect to this resource.
|
218
226
|
attr_accessor :port_override
|
227
|
+
# ID of the proxy cluster for this resource, if any.
|
228
|
+
attr_accessor :proxy_cluster_id
|
219
229
|
# ID of the secret store containing credentials for this resource, if any.
|
220
230
|
attr_accessor :secret_store_id
|
221
231
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -240,6 +250,7 @@ module SDM
|
|
240
250
|
name: nil,
|
241
251
|
port: nil,
|
242
252
|
port_override: nil,
|
253
|
+
proxy_cluster_id: nil,
|
243
254
|
secret_store_id: nil,
|
244
255
|
subdomain: nil,
|
245
256
|
tags: nil,
|
@@ -259,6 +270,7 @@ module SDM
|
|
259
270
|
@name = name == nil ? "" : name
|
260
271
|
@port = port == nil ? 0 : port
|
261
272
|
@port_override = port_override == nil ? 0 : port_override
|
273
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
262
274
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
263
275
|
@subdomain = subdomain == nil ? "" : subdomain
|
264
276
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -293,6 +305,8 @@ module SDM
|
|
293
305
|
attr_accessor :port
|
294
306
|
# The local port used by clients to connect to this resource.
|
295
307
|
attr_accessor :port_override
|
308
|
+
# ID of the proxy cluster for this resource, if any.
|
309
|
+
attr_accessor :proxy_cluster_id
|
296
310
|
# ID of the secret store containing credentials for this resource, if any.
|
297
311
|
attr_accessor :secret_store_id
|
298
312
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -312,6 +326,7 @@ module SDM
|
|
312
326
|
name: nil,
|
313
327
|
port: nil,
|
314
328
|
port_override: nil,
|
329
|
+
proxy_cluster_id: nil,
|
315
330
|
secret_store_id: nil,
|
316
331
|
subdomain: nil,
|
317
332
|
tags: nil,
|
@@ -326,6 +341,7 @@ module SDM
|
|
326
341
|
@name = name == nil ? "" : name
|
327
342
|
@port = port == nil ? 0 : port
|
328
343
|
@port_override = port_override == nil ? 0 : port_override
|
344
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
329
345
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
330
346
|
@subdomain = subdomain == nil ? "" : subdomain
|
331
347
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -366,6 +382,8 @@ module SDM
|
|
366
382
|
attr_accessor :port
|
367
383
|
# The local port used by clients to connect to this resource.
|
368
384
|
attr_accessor :port_override
|
385
|
+
# ID of the proxy cluster for this resource, if any.
|
386
|
+
attr_accessor :proxy_cluster_id
|
369
387
|
# ID of the secret store containing credentials for this resource, if any.
|
370
388
|
attr_accessor :secret_store_id
|
371
389
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -386,6 +404,7 @@ module SDM
|
|
386
404
|
name: nil,
|
387
405
|
port: nil,
|
388
406
|
port_override: nil,
|
407
|
+
proxy_cluster_id: nil,
|
389
408
|
secret_store_id: nil,
|
390
409
|
subdomain: nil,
|
391
410
|
tags: nil
|
@@ -402,6 +421,7 @@ module SDM
|
|
402
421
|
@name = name == nil ? "" : name
|
403
422
|
@port = port == nil ? 0 : port
|
404
423
|
@port_override = port_override == nil ? 0 : port_override
|
424
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
405
425
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
406
426
|
@subdomain = subdomain == nil ? "" : subdomain
|
407
427
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -433,6 +453,8 @@ module SDM
|
|
433
453
|
attr_accessor :name
|
434
454
|
# The local port used by clients to connect to this resource.
|
435
455
|
attr_accessor :port_override
|
456
|
+
# ID of the proxy cluster for this resource, if any.
|
457
|
+
attr_accessor :proxy_cluster_id
|
436
458
|
# The role to assume after logging in.
|
437
459
|
attr_accessor :role_arn
|
438
460
|
# The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
|
@@ -455,6 +477,7 @@ module SDM
|
|
455
477
|
id: nil,
|
456
478
|
name: nil,
|
457
479
|
port_override: nil,
|
480
|
+
proxy_cluster_id: nil,
|
458
481
|
role_arn: nil,
|
459
482
|
role_external_id: nil,
|
460
483
|
secret_access_key: nil,
|
@@ -470,6 +493,7 @@ module SDM
|
|
470
493
|
@id = id == nil ? "" : id
|
471
494
|
@name = name == nil ? "" : name
|
472
495
|
@port_override = port_override == nil ? 0 : port_override
|
496
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
473
497
|
@role_arn = role_arn == nil ? "" : role_arn
|
474
498
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
475
499
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
@@ -553,6 +577,8 @@ module SDM
|
|
553
577
|
attr_accessor :name
|
554
578
|
# The local port used by clients to connect to this resource.
|
555
579
|
attr_accessor :port_override
|
580
|
+
# ID of the proxy cluster for this resource, if any.
|
581
|
+
attr_accessor :proxy_cluster_id
|
556
582
|
# The AWS region to connect to.
|
557
583
|
attr_accessor :region
|
558
584
|
# The role to assume after logging in.
|
@@ -578,6 +604,7 @@ module SDM
|
|
578
604
|
identity_set_id: nil,
|
579
605
|
name: nil,
|
580
606
|
port_override: nil,
|
607
|
+
proxy_cluster_id: nil,
|
581
608
|
region: nil,
|
582
609
|
role_arn: nil,
|
583
610
|
role_external_id: nil,
|
@@ -595,6 +622,7 @@ module SDM
|
|
595
622
|
@identity_set_id = identity_set_id == nil ? "" : identity_set_id
|
596
623
|
@name = name == nil ? "" : name
|
597
624
|
@port_override = port_override == nil ? 0 : port_override
|
625
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
598
626
|
@region = region == nil ? "" : region
|
599
627
|
@role_arn = role_arn == nil ? "" : role_arn
|
600
628
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -632,6 +660,8 @@ module SDM
|
|
632
660
|
attr_accessor :name
|
633
661
|
# The local port used by clients to connect to this resource.
|
634
662
|
attr_accessor :port_override
|
663
|
+
# ID of the proxy cluster for this resource, if any.
|
664
|
+
attr_accessor :proxy_cluster_id
|
635
665
|
# The AWS region to connect to.
|
636
666
|
attr_accessor :region
|
637
667
|
# The role to assume after logging in.
|
@@ -659,6 +689,7 @@ module SDM
|
|
659
689
|
identity_set_id: nil,
|
660
690
|
name: nil,
|
661
691
|
port_override: nil,
|
692
|
+
proxy_cluster_id: nil,
|
662
693
|
region: nil,
|
663
694
|
role_arn: nil,
|
664
695
|
role_external_id: nil,
|
@@ -677,6 +708,7 @@ module SDM
|
|
677
708
|
@identity_set_id = identity_set_id == nil ? "" : identity_set_id
|
678
709
|
@name = name == nil ? "" : name
|
679
710
|
@port_override = port_override == nil ? 0 : port_override
|
711
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
680
712
|
@region = region == nil ? "" : region
|
681
713
|
@role_arn = role_arn == nil ? "" : role_arn
|
682
714
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -1764,6 +1796,8 @@ module SDM
|
|
1764
1796
|
attr_accessor :name
|
1765
1797
|
# The local port used by clients to connect to this resource.
|
1766
1798
|
attr_accessor :port_override
|
1799
|
+
# ID of the proxy cluster for this resource, if any.
|
1800
|
+
attr_accessor :proxy_cluster_id
|
1767
1801
|
# The AWS region to connect to e.g. us-east-1.
|
1768
1802
|
attr_accessor :region
|
1769
1803
|
# The role to assume after logging in.
|
@@ -1796,6 +1830,7 @@ module SDM
|
|
1796
1830
|
identity_set_id: nil,
|
1797
1831
|
name: nil,
|
1798
1832
|
port_override: nil,
|
1833
|
+
proxy_cluster_id: nil,
|
1799
1834
|
region: nil,
|
1800
1835
|
role_arn: nil,
|
1801
1836
|
role_external_id: nil,
|
@@ -1820,6 +1855,7 @@ module SDM
|
|
1820
1855
|
@identity_set_id = identity_set_id == nil ? "" : identity_set_id
|
1821
1856
|
@name = name == nil ? "" : name
|
1822
1857
|
@port_override = port_override == nil ? 0 : port_override
|
1858
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
1823
1859
|
@region = region == nil ? "" : region
|
1824
1860
|
@role_arn = role_arn == nil ? "" : role_arn
|
1825
1861
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -1871,6 +1907,8 @@ module SDM
|
|
1871
1907
|
attr_accessor :name
|
1872
1908
|
# The local port used by clients to connect to this resource.
|
1873
1909
|
attr_accessor :port_override
|
1910
|
+
# ID of the proxy cluster for this resource, if any.
|
1911
|
+
attr_accessor :proxy_cluster_id
|
1874
1912
|
# The AWS region to connect to e.g. us-east-1.
|
1875
1913
|
attr_accessor :region
|
1876
1914
|
# The role to assume after logging in.
|
@@ -1900,6 +1938,7 @@ module SDM
|
|
1900
1938
|
identity_set_id: nil,
|
1901
1939
|
name: nil,
|
1902
1940
|
port_override: nil,
|
1941
|
+
proxy_cluster_id: nil,
|
1903
1942
|
region: nil,
|
1904
1943
|
role_arn: nil,
|
1905
1944
|
role_external_id: nil,
|
@@ -1922,6 +1961,7 @@ module SDM
|
|
1922
1961
|
@identity_set_id = identity_set_id == nil ? "" : identity_set_id
|
1923
1962
|
@name = name == nil ? "" : name
|
1924
1963
|
@port_override = port_override == nil ? 0 : port_override
|
1964
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
1925
1965
|
@region = region == nil ? "" : region
|
1926
1966
|
@role_arn = role_arn == nil ? "" : role_arn
|
1927
1967
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -1960,6 +2000,8 @@ module SDM
|
|
1960
2000
|
attr_accessor :name
|
1961
2001
|
# The local port used by clients to connect to this resource.
|
1962
2002
|
attr_accessor :port_override
|
2003
|
+
# ID of the proxy cluster for this resource, if any.
|
2004
|
+
attr_accessor :proxy_cluster_id
|
1963
2005
|
# The AWS region to connect to e.g. us-east-1.
|
1964
2006
|
attr_accessor :region
|
1965
2007
|
# The role to assume after logging in.
|
@@ -1984,6 +2026,7 @@ module SDM
|
|
1984
2026
|
id: nil,
|
1985
2027
|
name: nil,
|
1986
2028
|
port_override: nil,
|
2029
|
+
proxy_cluster_id: nil,
|
1987
2030
|
region: nil,
|
1988
2031
|
role_arn: nil,
|
1989
2032
|
role_external_id: nil,
|
@@ -2001,6 +2044,7 @@ module SDM
|
|
2001
2044
|
@id = id == nil ? "" : id
|
2002
2045
|
@name = name == nil ? "" : name
|
2003
2046
|
@port_override = port_override == nil ? 0 : port_override
|
2047
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2004
2048
|
@region = region == nil ? "" : region
|
2005
2049
|
@role_arn = role_arn == nil ? "" : role_arn
|
2006
2050
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -2041,6 +2085,8 @@ module SDM
|
|
2041
2085
|
attr_accessor :name
|
2042
2086
|
# The local port used by clients to connect to this resource.
|
2043
2087
|
attr_accessor :port_override
|
2088
|
+
# ID of the proxy cluster for this resource, if any.
|
2089
|
+
attr_accessor :proxy_cluster_id
|
2044
2090
|
# The AWS region to connect to e.g. us-east-1.
|
2045
2091
|
attr_accessor :region
|
2046
2092
|
# The role to assume after logging in.
|
@@ -2068,6 +2114,7 @@ module SDM
|
|
2068
2114
|
id: nil,
|
2069
2115
|
name: nil,
|
2070
2116
|
port_override: nil,
|
2117
|
+
proxy_cluster_id: nil,
|
2071
2118
|
region: nil,
|
2072
2119
|
role_arn: nil,
|
2073
2120
|
role_external_id: nil,
|
@@ -2087,6 +2134,7 @@ module SDM
|
|
2087
2134
|
@id = id == nil ? "" : id
|
2088
2135
|
@name = name == nil ? "" : name
|
2089
2136
|
@port_override = port_override == nil ? 0 : port_override
|
2137
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2090
2138
|
@region = region == nil ? "" : region
|
2091
2139
|
@role_arn = role_arn == nil ? "" : role_arn
|
2092
2140
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -2122,6 +2170,8 @@ module SDM
|
|
2122
2170
|
attr_accessor :name
|
2123
2171
|
# The local port used by clients to connect to this resource.
|
2124
2172
|
attr_accessor :port_override
|
2173
|
+
# ID of the proxy cluster for this resource, if any.
|
2174
|
+
attr_accessor :proxy_cluster_id
|
2125
2175
|
# The AWS region to connect to e.g. us-east-1.
|
2126
2176
|
attr_accessor :region
|
2127
2177
|
# The role to assume after logging in.
|
@@ -2146,6 +2196,7 @@ module SDM
|
|
2146
2196
|
id: nil,
|
2147
2197
|
name: nil,
|
2148
2198
|
port_override: nil,
|
2199
|
+
proxy_cluster_id: nil,
|
2149
2200
|
region: nil,
|
2150
2201
|
role_arn: nil,
|
2151
2202
|
role_external_id: nil,
|
@@ -2162,6 +2213,7 @@ module SDM
|
|
2162
2213
|
@id = id == nil ? "" : id
|
2163
2214
|
@name = name == nil ? "" : name
|
2164
2215
|
@port_override = port_override == nil ? 0 : port_override
|
2216
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2165
2217
|
@region = region == nil ? "" : region
|
2166
2218
|
@role_arn = role_arn == nil ? "" : role_arn
|
2167
2219
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -2199,6 +2251,8 @@ module SDM
|
|
2199
2251
|
attr_accessor :port
|
2200
2252
|
# The local port used by clients to connect to this resource.
|
2201
2253
|
attr_accessor :port_override
|
2254
|
+
# ID of the proxy cluster for this resource, if any.
|
2255
|
+
attr_accessor :proxy_cluster_id
|
2202
2256
|
# ID of the secret store containing credentials for this resource, if any.
|
2203
2257
|
attr_accessor :secret_store_id
|
2204
2258
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -2220,6 +2274,7 @@ module SDM
|
|
2220
2274
|
password: nil,
|
2221
2275
|
port: nil,
|
2222
2276
|
port_override: nil,
|
2277
|
+
proxy_cluster_id: nil,
|
2223
2278
|
secret_store_id: nil,
|
2224
2279
|
subdomain: nil,
|
2225
2280
|
tags: nil,
|
@@ -2235,6 +2290,7 @@ module SDM
|
|
2235
2290
|
@password = password == nil ? "" : password
|
2236
2291
|
@port = port == nil ? 0 : port
|
2237
2292
|
@port_override = port_override == nil ? 0 : port_override
|
2293
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2238
2294
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2239
2295
|
@subdomain = subdomain == nil ? "" : subdomain
|
2240
2296
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -2782,6 +2838,8 @@ module SDM
|
|
2782
2838
|
attr_accessor :output
|
2783
2839
|
# The local port used by clients to connect to this resource.
|
2784
2840
|
attr_accessor :port_override
|
2841
|
+
# ID of the proxy cluster for this resource, if any.
|
2842
|
+
attr_accessor :proxy_cluster_id
|
2785
2843
|
# The AWS region to connect to e.g. us-east-1.
|
2786
2844
|
attr_accessor :region
|
2787
2845
|
# The role to assume after logging in.
|
@@ -2806,6 +2864,7 @@ module SDM
|
|
2806
2864
|
name: nil,
|
2807
2865
|
output: nil,
|
2808
2866
|
port_override: nil,
|
2867
|
+
proxy_cluster_id: nil,
|
2809
2868
|
region: nil,
|
2810
2869
|
role_arn: nil,
|
2811
2870
|
role_external_id: nil,
|
@@ -2822,6 +2881,7 @@ module SDM
|
|
2822
2881
|
@name = name == nil ? "" : name
|
2823
2882
|
@output = output == nil ? "" : output
|
2824
2883
|
@port_override = port_override == nil ? 0 : port_override
|
2884
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2825
2885
|
@region = region == nil ? "" : region
|
2826
2886
|
@role_arn = role_arn == nil ? "" : role_arn
|
2827
2887
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -2861,6 +2921,8 @@ module SDM
|
|
2861
2921
|
attr_accessor :port
|
2862
2922
|
# The local port used by clients to connect to this resource.
|
2863
2923
|
attr_accessor :port_override
|
2924
|
+
# ID of the proxy cluster for this resource, if any.
|
2925
|
+
attr_accessor :proxy_cluster_id
|
2864
2926
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
2865
2927
|
attr_accessor :require_native_auth
|
2866
2928
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -2885,6 +2947,7 @@ module SDM
|
|
2885
2947
|
password: nil,
|
2886
2948
|
port: nil,
|
2887
2949
|
port_override: nil,
|
2950
|
+
proxy_cluster_id: nil,
|
2888
2951
|
require_native_auth: nil,
|
2889
2952
|
secret_store_id: nil,
|
2890
2953
|
subdomain: nil,
|
@@ -2902,6 +2965,7 @@ module SDM
|
|
2902
2965
|
@password = password == nil ? "" : password
|
2903
2966
|
@port = port == nil ? 0 : port
|
2904
2967
|
@port_override = port_override == nil ? 0 : port_override
|
2968
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2905
2969
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
2906
2970
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2907
2971
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -2942,6 +3006,8 @@ module SDM
|
|
2942
3006
|
attr_accessor :port
|
2943
3007
|
# The local port used by clients to connect to this resource.
|
2944
3008
|
attr_accessor :port_override
|
3009
|
+
# ID of the proxy cluster for this resource, if any.
|
3010
|
+
attr_accessor :proxy_cluster_id
|
2945
3011
|
# ID of the secret store containing credentials for this resource, if any.
|
2946
3012
|
attr_accessor :secret_store_id
|
2947
3013
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -2963,6 +3029,7 @@ module SDM
|
|
2963
3029
|
password: nil,
|
2964
3030
|
port: nil,
|
2965
3031
|
port_override: nil,
|
3032
|
+
proxy_cluster_id: nil,
|
2966
3033
|
secret_store_id: nil,
|
2967
3034
|
subdomain: nil,
|
2968
3035
|
tags: nil,
|
@@ -2979,6 +3046,7 @@ module SDM
|
|
2979
3046
|
@password = password == nil ? "" : password
|
2980
3047
|
@port = port == nil ? 0 : port
|
2981
3048
|
@port_override = port_override == nil ? 0 : port_override
|
3049
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
2982
3050
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2983
3051
|
@subdomain = subdomain == nil ? "" : subdomain
|
2984
3052
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3015,6 +3083,8 @@ module SDM
|
|
3015
3083
|
attr_accessor :port
|
3016
3084
|
# The local port used by clients to connect to this resource.
|
3017
3085
|
attr_accessor :port_override
|
3086
|
+
# ID of the proxy cluster for this resource, if any.
|
3087
|
+
attr_accessor :proxy_cluster_id
|
3018
3088
|
# The AWS region to connect to.
|
3019
3089
|
attr_accessor :region
|
3020
3090
|
# If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
@@ -3039,6 +3109,7 @@ module SDM
|
|
3039
3109
|
override_database: nil,
|
3040
3110
|
port: nil,
|
3041
3111
|
port_override: nil,
|
3112
|
+
proxy_cluster_id: nil,
|
3042
3113
|
region: nil,
|
3043
3114
|
role_assumption_arn: nil,
|
3044
3115
|
secret_store_id: nil,
|
@@ -3056,6 +3127,7 @@ module SDM
|
|
3056
3127
|
@override_database = override_database == nil ? false : override_database
|
3057
3128
|
@port = port == nil ? 0 : port
|
3058
3129
|
@port_override = port_override == nil ? 0 : port_override
|
3130
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3059
3131
|
@region = region == nil ? "" : region
|
3060
3132
|
@role_assumption_arn = role_assumption_arn == nil ? "" : role_assumption_arn
|
3061
3133
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
@@ -3090,6 +3162,8 @@ module SDM
|
|
3090
3162
|
attr_accessor :password
|
3091
3163
|
# The local port used by clients to connect to this resource.
|
3092
3164
|
attr_accessor :port_override
|
3165
|
+
# ID of the proxy cluster for this resource, if any.
|
3166
|
+
attr_accessor :proxy_cluster_id
|
3093
3167
|
# ID of the secret store containing credentials for this resource, if any.
|
3094
3168
|
attr_accessor :secret_store_id
|
3095
3169
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3108,6 +3182,7 @@ module SDM
|
|
3108
3182
|
name: nil,
|
3109
3183
|
password: nil,
|
3110
3184
|
port_override: nil,
|
3185
|
+
proxy_cluster_id: nil,
|
3111
3186
|
secret_store_id: nil,
|
3112
3187
|
subdomain: nil,
|
3113
3188
|
tags: nil,
|
@@ -3121,6 +3196,7 @@ module SDM
|
|
3121
3196
|
@name = name == nil ? "" : name
|
3122
3197
|
@password = password == nil ? "" : password
|
3123
3198
|
@port_override = port_override == nil ? 0 : port_override
|
3199
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3124
3200
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3125
3201
|
@subdomain = subdomain == nil ? "" : subdomain
|
3126
3202
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3153,6 +3229,8 @@ module SDM
|
|
3153
3229
|
attr_accessor :name
|
3154
3230
|
# The local port used by clients to connect to this resource.
|
3155
3231
|
attr_accessor :port_override
|
3232
|
+
# ID of the proxy cluster for this resource, if any.
|
3233
|
+
attr_accessor :proxy_cluster_id
|
3156
3234
|
# ID of the secret store containing credentials for this resource, if any.
|
3157
3235
|
attr_accessor :secret_store_id
|
3158
3236
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3171,6 +3249,7 @@ module SDM
|
|
3171
3249
|
id: nil,
|
3172
3250
|
name: nil,
|
3173
3251
|
port_override: nil,
|
3252
|
+
proxy_cluster_id: nil,
|
3174
3253
|
secret_store_id: nil,
|
3175
3254
|
subdomain: nil,
|
3176
3255
|
tags: nil,
|
@@ -3184,6 +3263,7 @@ module SDM
|
|
3184
3263
|
@id = id == nil ? "" : id
|
3185
3264
|
@name = name == nil ? "" : name
|
3186
3265
|
@port_override = port_override == nil ? 0 : port_override
|
3266
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3187
3267
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3188
3268
|
@subdomain = subdomain == nil ? "" : subdomain
|
3189
3269
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3220,6 +3300,8 @@ module SDM
|
|
3220
3300
|
attr_accessor :port
|
3221
3301
|
# The local port used by clients to connect to this resource.
|
3222
3302
|
attr_accessor :port_override
|
3303
|
+
# ID of the proxy cluster for this resource, if any.
|
3304
|
+
attr_accessor :proxy_cluster_id
|
3223
3305
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
3224
3306
|
attr_accessor :require_native_auth
|
3225
3307
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -3244,6 +3326,7 @@ module SDM
|
|
3244
3326
|
password: nil,
|
3245
3327
|
port: nil,
|
3246
3328
|
port_override: nil,
|
3329
|
+
proxy_cluster_id: nil,
|
3247
3330
|
require_native_auth: nil,
|
3248
3331
|
secret_store_id: nil,
|
3249
3332
|
subdomain: nil,
|
@@ -3261,6 +3344,7 @@ module SDM
|
|
3261
3344
|
@password = password == nil ? "" : password
|
3262
3345
|
@port = port == nil ? 0 : port
|
3263
3346
|
@port_override = port_override == nil ? 0 : port_override
|
3347
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3264
3348
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
3265
3349
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3266
3350
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -3301,6 +3385,8 @@ module SDM
|
|
3301
3385
|
attr_accessor :port
|
3302
3386
|
# The local port used by clients to connect to this resource.
|
3303
3387
|
attr_accessor :port_override
|
3388
|
+
# ID of the proxy cluster for this resource, if any.
|
3389
|
+
attr_accessor :proxy_cluster_id
|
3304
3390
|
# ID of the secret store containing credentials for this resource, if any.
|
3305
3391
|
attr_accessor :secret_store_id
|
3306
3392
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3322,6 +3408,7 @@ module SDM
|
|
3322
3408
|
password: nil,
|
3323
3409
|
port: nil,
|
3324
3410
|
port_override: nil,
|
3411
|
+
proxy_cluster_id: nil,
|
3325
3412
|
secret_store_id: nil,
|
3326
3413
|
subdomain: nil,
|
3327
3414
|
tags: nil,
|
@@ -3338,6 +3425,7 @@ module SDM
|
|
3338
3425
|
@password = password == nil ? "" : password
|
3339
3426
|
@port = port == nil ? 0 : port
|
3340
3427
|
@port_override = port_override == nil ? 0 : port_override
|
3428
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3341
3429
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3342
3430
|
@subdomain = subdomain == nil ? "" : subdomain
|
3343
3431
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3376,6 +3464,8 @@ module SDM
|
|
3376
3464
|
attr_accessor :port
|
3377
3465
|
# The local port used by clients to connect to this resource.
|
3378
3466
|
attr_accessor :port_override
|
3467
|
+
# ID of the proxy cluster for this resource, if any.
|
3468
|
+
attr_accessor :proxy_cluster_id
|
3379
3469
|
# ID of the secret store containing credentials for this resource, if any.
|
3380
3470
|
attr_accessor :secret_store_id
|
3381
3471
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3399,6 +3489,7 @@ module SDM
|
|
3399
3489
|
password: nil,
|
3400
3490
|
port: nil,
|
3401
3491
|
port_override: nil,
|
3492
|
+
proxy_cluster_id: nil,
|
3402
3493
|
secret_store_id: nil,
|
3403
3494
|
subdomain: nil,
|
3404
3495
|
tags: nil,
|
@@ -3416,6 +3507,7 @@ module SDM
|
|
3416
3507
|
@password = password == nil ? "" : password
|
3417
3508
|
@port = port == nil ? 0 : port
|
3418
3509
|
@port_override = port_override == nil ? 0 : port_override
|
3510
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3419
3511
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3420
3512
|
@subdomain = subdomain == nil ? "" : subdomain
|
3421
3513
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3482,6 +3574,8 @@ module SDM
|
|
3482
3574
|
attr_accessor :private_key
|
3483
3575
|
# The project to connect to.
|
3484
3576
|
attr_accessor :project
|
3577
|
+
# ID of the proxy cluster for this resource, if any.
|
3578
|
+
attr_accessor :proxy_cluster_id
|
3485
3579
|
# ID of the secret store containing credentials for this resource, if any.
|
3486
3580
|
attr_accessor :secret_store_id
|
3487
3581
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3501,6 +3595,7 @@ module SDM
|
|
3501
3595
|
port_override: nil,
|
3502
3596
|
private_key: nil,
|
3503
3597
|
project: nil,
|
3598
|
+
proxy_cluster_id: nil,
|
3504
3599
|
secret_store_id: nil,
|
3505
3600
|
subdomain: nil,
|
3506
3601
|
tags: nil,
|
@@ -3515,6 +3610,7 @@ module SDM
|
|
3515
3610
|
@port_override = port_override == nil ? 0 : port_override
|
3516
3611
|
@private_key = private_key == nil ? "" : private_key
|
3517
3612
|
@project = project == nil ? "" : project
|
3613
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3518
3614
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3519
3615
|
@subdomain = subdomain == nil ? "" : subdomain
|
3520
3616
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3549,6 +3645,8 @@ module SDM
|
|
3549
3645
|
attr_accessor :port
|
3550
3646
|
# The local port used by clients to connect to this resource.
|
3551
3647
|
attr_accessor :port_override
|
3648
|
+
# ID of the proxy cluster for this resource, if any.
|
3649
|
+
attr_accessor :proxy_cluster_id
|
3552
3650
|
# ID of the secret store containing credentials for this resource, if any.
|
3553
3651
|
attr_accessor :secret_store_id
|
3554
3652
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3570,6 +3668,7 @@ module SDM
|
|
3570
3668
|
password: nil,
|
3571
3669
|
port: nil,
|
3572
3670
|
port_override: nil,
|
3671
|
+
proxy_cluster_id: nil,
|
3573
3672
|
secret_store_id: nil,
|
3574
3673
|
subdomain: nil,
|
3575
3674
|
tags: nil,
|
@@ -3585,6 +3684,7 @@ module SDM
|
|
3585
3684
|
@password = password == nil ? "" : password
|
3586
3685
|
@port = port == nil ? 0 : port
|
3587
3686
|
@port_override = port_override == nil ? 0 : port_override
|
3687
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3588
3688
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3589
3689
|
@subdomain = subdomain == nil ? "" : subdomain
|
3590
3690
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3624,6 +3724,8 @@ module SDM
|
|
3624
3724
|
attr_accessor :port
|
3625
3725
|
# The local port used by clients to connect to this resource.
|
3626
3726
|
attr_accessor :port_override
|
3727
|
+
# ID of the proxy cluster for this resource, if any.
|
3728
|
+
attr_accessor :proxy_cluster_id
|
3627
3729
|
# ID of the secret store containing credentials for this resource, if any.
|
3628
3730
|
attr_accessor :secret_store_id
|
3629
3731
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3645,6 +3747,7 @@ module SDM
|
|
3645
3747
|
password: nil,
|
3646
3748
|
port: nil,
|
3647
3749
|
port_override: nil,
|
3750
|
+
proxy_cluster_id: nil,
|
3648
3751
|
secret_store_id: nil,
|
3649
3752
|
subdomain: nil,
|
3650
3753
|
tags: nil,
|
@@ -3661,6 +3764,7 @@ module SDM
|
|
3661
3764
|
@password = password == nil ? "" : password
|
3662
3765
|
@port = port == nil ? 0 : port
|
3663
3766
|
@port_override = port_override == nil ? 0 : port_override
|
3767
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3664
3768
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3665
3769
|
@subdomain = subdomain == nil ? "" : subdomain
|
3666
3770
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3697,6 +3801,8 @@ module SDM
|
|
3697
3801
|
attr_accessor :port
|
3698
3802
|
# The local port used by clients to connect to this resource.
|
3699
3803
|
attr_accessor :port_override
|
3804
|
+
# ID of the proxy cluster for this resource, if any.
|
3805
|
+
attr_accessor :proxy_cluster_id
|
3700
3806
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
3701
3807
|
attr_accessor :require_native_auth
|
3702
3808
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -3721,6 +3827,7 @@ module SDM
|
|
3721
3827
|
password: nil,
|
3722
3828
|
port: nil,
|
3723
3829
|
port_override: nil,
|
3830
|
+
proxy_cluster_id: nil,
|
3724
3831
|
require_native_auth: nil,
|
3725
3832
|
secret_store_id: nil,
|
3726
3833
|
subdomain: nil,
|
@@ -3738,6 +3845,7 @@ module SDM
|
|
3738
3845
|
@password = password == nil ? "" : password
|
3739
3846
|
@port = port == nil ? 0 : port
|
3740
3847
|
@port_override = port_override == nil ? 0 : port_override
|
3848
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3741
3849
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
3742
3850
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3743
3851
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -3778,6 +3886,8 @@ module SDM
|
|
3778
3886
|
attr_accessor :port
|
3779
3887
|
# The local port used by clients to connect to this resource.
|
3780
3888
|
attr_accessor :port_override
|
3889
|
+
# ID of the proxy cluster for this resource, if any.
|
3890
|
+
attr_accessor :proxy_cluster_id
|
3781
3891
|
# ID of the secret store containing credentials for this resource, if any.
|
3782
3892
|
attr_accessor :secret_store_id
|
3783
3893
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3799,6 +3909,7 @@ module SDM
|
|
3799
3909
|
password: nil,
|
3800
3910
|
port: nil,
|
3801
3911
|
port_override: nil,
|
3912
|
+
proxy_cluster_id: nil,
|
3802
3913
|
secret_store_id: nil,
|
3803
3914
|
subdomain: nil,
|
3804
3915
|
tags: nil,
|
@@ -3815,6 +3926,7 @@ module SDM
|
|
3815
3926
|
@password = password == nil ? "" : password
|
3816
3927
|
@port = port == nil ? 0 : port
|
3817
3928
|
@port_override = port_override == nil ? 0 : port_override
|
3929
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3818
3930
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3819
3931
|
@subdomain = subdomain == nil ? "" : subdomain
|
3820
3932
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -3939,6 +4051,8 @@ module SDM
|
|
3939
4051
|
attr_accessor :port
|
3940
4052
|
# The local port used by clients to connect to this resource.
|
3941
4053
|
attr_accessor :port_override
|
4054
|
+
# ID of the proxy cluster for this resource, if any.
|
4055
|
+
attr_accessor :proxy_cluster_id
|
3942
4056
|
# ID of the secret store containing credentials for this resource, if any.
|
3943
4057
|
attr_accessor :secret_store_id
|
3944
4058
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -3961,6 +4075,7 @@ module SDM
|
|
3961
4075
|
password: nil,
|
3962
4076
|
port: nil,
|
3963
4077
|
port_override: nil,
|
4078
|
+
proxy_cluster_id: nil,
|
3964
4079
|
secret_store_id: nil,
|
3965
4080
|
subdomain: nil,
|
3966
4081
|
tags: nil,
|
@@ -3977,6 +4092,7 @@ module SDM
|
|
3977
4092
|
@password = password == nil ? "" : password
|
3978
4093
|
@port = port == nil ? 0 : port
|
3979
4094
|
@port_override = port_override == nil ? 0 : port_override
|
4095
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
3980
4096
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3981
4097
|
@subdomain = subdomain == nil ? "" : subdomain
|
3982
4098
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4008,6 +4124,8 @@ module SDM
|
|
4008
4124
|
attr_accessor :password
|
4009
4125
|
# The local port used by clients to connect to this resource.
|
4010
4126
|
attr_accessor :port_override
|
4127
|
+
# ID of the proxy cluster for this resource, if any.
|
4128
|
+
attr_accessor :proxy_cluster_id
|
4011
4129
|
# ID of the secret store containing credentials for this resource, if any.
|
4012
4130
|
attr_accessor :secret_store_id
|
4013
4131
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4027,6 +4145,7 @@ module SDM
|
|
4027
4145
|
name: nil,
|
4028
4146
|
password: nil,
|
4029
4147
|
port_override: nil,
|
4148
|
+
proxy_cluster_id: nil,
|
4030
4149
|
secret_store_id: nil,
|
4031
4150
|
subdomain: nil,
|
4032
4151
|
tags: nil,
|
@@ -4040,6 +4159,7 @@ module SDM
|
|
4040
4159
|
@name = name == nil ? "" : name
|
4041
4160
|
@password = password == nil ? "" : password
|
4042
4161
|
@port_override = port_override == nil ? 0 : port_override
|
4162
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4043
4163
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4044
4164
|
@subdomain = subdomain == nil ? "" : subdomain
|
4045
4165
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4183,6 +4303,8 @@ module SDM
|
|
4183
4303
|
attr_accessor :port
|
4184
4304
|
# The local port used by clients to connect to this resource.
|
4185
4305
|
attr_accessor :port_override
|
4306
|
+
# ID of the proxy cluster for this resource, if any.
|
4307
|
+
attr_accessor :proxy_cluster_id
|
4186
4308
|
# ID of the secret store containing credentials for this resource, if any.
|
4187
4309
|
attr_accessor :secret_store_id
|
4188
4310
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4204,6 +4326,7 @@ module SDM
|
|
4204
4326
|
password: nil,
|
4205
4327
|
port: nil,
|
4206
4328
|
port_override: nil,
|
4329
|
+
proxy_cluster_id: nil,
|
4207
4330
|
secret_store_id: nil,
|
4208
4331
|
subdomain: nil,
|
4209
4332
|
tags: nil,
|
@@ -4219,6 +4342,7 @@ module SDM
|
|
4219
4342
|
@password = password == nil ? "" : password
|
4220
4343
|
@port = port == nil ? 0 : port
|
4221
4344
|
@port_override = port_override == nil ? 0 : port_override
|
4345
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4222
4346
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4223
4347
|
@subdomain = subdomain == nil ? "" : subdomain
|
4224
4348
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4256,6 +4380,8 @@ module SDM
|
|
4256
4380
|
attr_accessor :port
|
4257
4381
|
# The local port used by clients to connect to this resource.
|
4258
4382
|
attr_accessor :port_override
|
4383
|
+
# ID of the proxy cluster for this resource, if any.
|
4384
|
+
attr_accessor :proxy_cluster_id
|
4259
4385
|
# ID of the secret store containing credentials for this resource, if any.
|
4260
4386
|
attr_accessor :secret_store_id
|
4261
4387
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4276,6 +4402,7 @@ module SDM
|
|
4276
4402
|
password: nil,
|
4277
4403
|
port: nil,
|
4278
4404
|
port_override: nil,
|
4405
|
+
proxy_cluster_id: nil,
|
4279
4406
|
secret_store_id: nil,
|
4280
4407
|
subdomain: nil,
|
4281
4408
|
tags: nil,
|
@@ -4291,6 +4418,7 @@ module SDM
|
|
4291
4418
|
@password = password == nil ? "" : password
|
4292
4419
|
@port = port == nil ? 0 : port
|
4293
4420
|
@port_override = port_override == nil ? 0 : port_override
|
4421
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4294
4422
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4295
4423
|
@subdomain = subdomain == nil ? "" : subdomain
|
4296
4424
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4376,6 +4504,8 @@ module SDM
|
|
4376
4504
|
attr_accessor :port
|
4377
4505
|
# The local port used by clients to connect to this resource.
|
4378
4506
|
attr_accessor :port_override
|
4507
|
+
# ID of the proxy cluster for this resource, if any.
|
4508
|
+
attr_accessor :proxy_cluster_id
|
4379
4509
|
# ID of the secret store containing credentials for this resource, if any.
|
4380
4510
|
attr_accessor :secret_store_id
|
4381
4511
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4396,6 +4526,7 @@ module SDM
|
|
4396
4526
|
password: nil,
|
4397
4527
|
port: nil,
|
4398
4528
|
port_override: nil,
|
4529
|
+
proxy_cluster_id: nil,
|
4399
4530
|
secret_store_id: nil,
|
4400
4531
|
subdomain: nil,
|
4401
4532
|
tags: nil,
|
@@ -4411,6 +4542,7 @@ module SDM
|
|
4411
4542
|
@password = password == nil ? "" : password
|
4412
4543
|
@port = port == nil ? 0 : port
|
4413
4544
|
@port_override = port_override == nil ? 0 : port_override
|
4545
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4414
4546
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4415
4547
|
@subdomain = subdomain == nil ? "" : subdomain
|
4416
4548
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4447,6 +4579,8 @@ module SDM
|
|
4447
4579
|
attr_accessor :password
|
4448
4580
|
# The local port used by clients to connect to this resource.
|
4449
4581
|
attr_accessor :port_override
|
4582
|
+
# ID of the proxy cluster for this resource, if any.
|
4583
|
+
attr_accessor :proxy_cluster_id
|
4450
4584
|
# The name of the mongo replicaset.
|
4451
4585
|
attr_accessor :replica_set
|
4452
4586
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -4469,6 +4603,7 @@ module SDM
|
|
4469
4603
|
name: nil,
|
4470
4604
|
password: nil,
|
4471
4605
|
port_override: nil,
|
4606
|
+
proxy_cluster_id: nil,
|
4472
4607
|
replica_set: nil,
|
4473
4608
|
secret_store_id: nil,
|
4474
4609
|
subdomain: nil,
|
@@ -4485,6 +4620,7 @@ module SDM
|
|
4485
4620
|
@name = name == nil ? "" : name
|
4486
4621
|
@password = password == nil ? "" : password
|
4487
4622
|
@port_override = port_override == nil ? 0 : port_override
|
4623
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4488
4624
|
@replica_set = replica_set == nil ? "" : replica_set
|
4489
4625
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4490
4626
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -4520,6 +4656,8 @@ module SDM
|
|
4520
4656
|
attr_accessor :port
|
4521
4657
|
# The local port used by clients to connect to this resource.
|
4522
4658
|
attr_accessor :port_override
|
4659
|
+
# ID of the proxy cluster for this resource, if any.
|
4660
|
+
attr_accessor :proxy_cluster_id
|
4523
4661
|
# ID of the secret store containing credentials for this resource, if any.
|
4524
4662
|
attr_accessor :secret_store_id
|
4525
4663
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4539,6 +4677,7 @@ module SDM
|
|
4539
4677
|
password: nil,
|
4540
4678
|
port: nil,
|
4541
4679
|
port_override: nil,
|
4680
|
+
proxy_cluster_id: nil,
|
4542
4681
|
secret_store_id: nil,
|
4543
4682
|
subdomain: nil,
|
4544
4683
|
tags: nil,
|
@@ -4553,6 +4692,7 @@ module SDM
|
|
4553
4692
|
@password = password == nil ? "" : password
|
4554
4693
|
@port = port == nil ? 0 : port
|
4555
4694
|
@port_override = port_override == nil ? 0 : port_override
|
4695
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4556
4696
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4557
4697
|
@subdomain = subdomain == nil ? "" : subdomain
|
4558
4698
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4585,6 +4725,8 @@ module SDM
|
|
4585
4725
|
attr_accessor :name
|
4586
4726
|
# The local port used by clients to connect to this resource.
|
4587
4727
|
attr_accessor :port_override
|
4728
|
+
# ID of the proxy cluster for this resource, if any.
|
4729
|
+
attr_accessor :proxy_cluster_id
|
4588
4730
|
# The region to authenticate requests against e.g. us-east-1
|
4589
4731
|
attr_accessor :region
|
4590
4732
|
# The role to assume after logging in.
|
@@ -4609,6 +4751,7 @@ module SDM
|
|
4609
4751
|
id: nil,
|
4610
4752
|
name: nil,
|
4611
4753
|
port_override: nil,
|
4754
|
+
proxy_cluster_id: nil,
|
4612
4755
|
region: nil,
|
4613
4756
|
role_arn: nil,
|
4614
4757
|
role_external_id: nil,
|
@@ -4625,6 +4768,7 @@ module SDM
|
|
4625
4768
|
@id = id == nil ? "" : id
|
4626
4769
|
@name = name == nil ? "" : name
|
4627
4770
|
@port_override = port_override == nil ? 0 : port_override
|
4771
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4628
4772
|
@region = region == nil ? "" : region
|
4629
4773
|
@role_arn = role_arn == nil ? "" : role_arn
|
4630
4774
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -4662,6 +4806,8 @@ module SDM
|
|
4662
4806
|
attr_accessor :port
|
4663
4807
|
# The local port used by clients to connect to this resource.
|
4664
4808
|
attr_accessor :port_override
|
4809
|
+
# ID of the proxy cluster for this resource, if any.
|
4810
|
+
attr_accessor :proxy_cluster_id
|
4665
4811
|
# ID of the secret store containing credentials for this resource, if any.
|
4666
4812
|
attr_accessor :secret_store_id
|
4667
4813
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4683,6 +4829,7 @@ module SDM
|
|
4683
4829
|
password: nil,
|
4684
4830
|
port: nil,
|
4685
4831
|
port_override: nil,
|
4832
|
+
proxy_cluster_id: nil,
|
4686
4833
|
secret_store_id: nil,
|
4687
4834
|
subdomain: nil,
|
4688
4835
|
tags: nil,
|
@@ -4698,6 +4845,7 @@ module SDM
|
|
4698
4845
|
@password = password == nil ? "" : password
|
4699
4846
|
@port = port == nil ? 0 : port
|
4700
4847
|
@port_override = port_override == nil ? 0 : port_override
|
4848
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4701
4849
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4702
4850
|
@subdomain = subdomain == nil ? "" : subdomain
|
4703
4851
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4733,6 +4881,8 @@ module SDM
|
|
4733
4881
|
attr_accessor :port
|
4734
4882
|
# The local port used by clients to connect to this resource.
|
4735
4883
|
attr_accessor :port_override
|
4884
|
+
# ID of the proxy cluster for this resource, if any.
|
4885
|
+
attr_accessor :proxy_cluster_id
|
4736
4886
|
# ID of the secret store containing credentials for this resource, if any.
|
4737
4887
|
attr_accessor :secret_store_id
|
4738
4888
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -4754,6 +4904,7 @@ module SDM
|
|
4754
4904
|
password: nil,
|
4755
4905
|
port: nil,
|
4756
4906
|
port_override: nil,
|
4907
|
+
proxy_cluster_id: nil,
|
4757
4908
|
secret_store_id: nil,
|
4758
4909
|
subdomain: nil,
|
4759
4910
|
tags: nil,
|
@@ -4769,6 +4920,7 @@ module SDM
|
|
4769
4920
|
@password = password == nil ? "" : password
|
4770
4921
|
@port = port == nil ? 0 : port
|
4771
4922
|
@port_override = port_override == nil ? 0 : port_override
|
4923
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4772
4924
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4773
4925
|
@subdomain = subdomain == nil ? "" : subdomain
|
4774
4926
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -4800,6 +4952,8 @@ module SDM
|
|
4800
4952
|
attr_accessor :name
|
4801
4953
|
# The local port used by clients to connect to this resource.
|
4802
4954
|
attr_accessor :port_override
|
4955
|
+
# ID of the proxy cluster for this resource, if any.
|
4956
|
+
attr_accessor :proxy_cluster_id
|
4803
4957
|
# Space separated scopes that this login should assume into when authenticating.
|
4804
4958
|
attr_accessor :scopes
|
4805
4959
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -4817,6 +4971,7 @@ module SDM
|
|
4817
4971
|
keyfile: nil,
|
4818
4972
|
name: nil,
|
4819
4973
|
port_override: nil,
|
4974
|
+
proxy_cluster_id: nil,
|
4820
4975
|
scopes: nil,
|
4821
4976
|
secret_store_id: nil,
|
4822
4977
|
subdomain: nil,
|
@@ -4829,6 +4984,7 @@ module SDM
|
|
4829
4984
|
@keyfile = keyfile == nil ? "" : keyfile
|
4830
4985
|
@name = name == nil ? "" : name
|
4831
4986
|
@port_override = port_override == nil ? 0 : port_override
|
4987
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
4832
4988
|
@scopes = scopes == nil ? "" : scopes
|
4833
4989
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4834
4990
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -5059,6 +5215,8 @@ module SDM
|
|
5059
5215
|
attr_accessor :name
|
5060
5216
|
# The local port used by clients to connect to this resource.
|
5061
5217
|
attr_accessor :port_override
|
5218
|
+
# ID of the proxy cluster for this resource, if any.
|
5219
|
+
attr_accessor :proxy_cluster_id
|
5062
5220
|
# ID of the secret store containing credentials for this resource, if any.
|
5063
5221
|
attr_accessor :secret_store_id
|
5064
5222
|
# The service account key to authenticate with.
|
@@ -5083,6 +5241,7 @@ module SDM
|
|
5083
5241
|
identity_set_id: nil,
|
5084
5242
|
name: nil,
|
5085
5243
|
port_override: nil,
|
5244
|
+
proxy_cluster_id: nil,
|
5086
5245
|
secret_store_id: nil,
|
5087
5246
|
service_account_key: nil,
|
5088
5247
|
subdomain: nil,
|
@@ -5102,6 +5261,7 @@ module SDM
|
|
5102
5261
|
@identity_set_id = identity_set_id == nil ? "" : identity_set_id
|
5103
5262
|
@name = name == nil ? "" : name
|
5104
5263
|
@port_override = port_override == nil ? 0 : port_override
|
5264
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5105
5265
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5106
5266
|
@service_account_key = service_account_key == nil ? "" : service_account_key
|
5107
5267
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -5136,6 +5296,8 @@ module SDM
|
|
5136
5296
|
attr_accessor :name
|
5137
5297
|
# The local port used by clients to connect to this resource.
|
5138
5298
|
attr_accessor :port_override
|
5299
|
+
# ID of the proxy cluster for this resource, if any.
|
5300
|
+
attr_accessor :proxy_cluster_id
|
5139
5301
|
# ID of the secret store containing credentials for this resource, if any.
|
5140
5302
|
attr_accessor :secret_store_id
|
5141
5303
|
# The service account key to authenticate with.
|
@@ -5155,6 +5317,7 @@ module SDM
|
|
5155
5317
|
id: nil,
|
5156
5318
|
name: nil,
|
5157
5319
|
port_override: nil,
|
5320
|
+
proxy_cluster_id: nil,
|
5158
5321
|
secret_store_id: nil,
|
5159
5322
|
service_account_key: nil,
|
5160
5323
|
subdomain: nil,
|
@@ -5169,6 +5332,7 @@ module SDM
|
|
5169
5332
|
@id = id == nil ? "" : id
|
5170
5333
|
@name = name == nil ? "" : name
|
5171
5334
|
@port_override = port_override == nil ? 0 : port_override
|
5335
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5172
5336
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5173
5337
|
@service_account_key = service_account_key == nil ? "" : service_account_key
|
5174
5338
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -5207,6 +5371,8 @@ module SDM
|
|
5207
5371
|
attr_accessor :port
|
5208
5372
|
# The local port used by clients to connect to this resource.
|
5209
5373
|
attr_accessor :port_override
|
5374
|
+
# ID of the proxy cluster for this resource, if any.
|
5375
|
+
attr_accessor :proxy_cluster_id
|
5210
5376
|
# ID of the secret store containing credentials for this resource, if any.
|
5211
5377
|
attr_accessor :secret_store_id
|
5212
5378
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -5228,6 +5394,7 @@ module SDM
|
|
5228
5394
|
password: nil,
|
5229
5395
|
port: nil,
|
5230
5396
|
port_override: nil,
|
5397
|
+
proxy_cluster_id: nil,
|
5231
5398
|
secret_store_id: nil,
|
5232
5399
|
subdomain: nil,
|
5233
5400
|
tags: nil,
|
@@ -5244,6 +5411,7 @@ module SDM
|
|
5244
5411
|
@password = password == nil ? "" : password
|
5245
5412
|
@port = port == nil ? 0 : port
|
5246
5413
|
@port_override = port_override == nil ? 0 : port_override
|
5414
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5247
5415
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5248
5416
|
@subdomain = subdomain == nil ? "" : subdomain
|
5249
5417
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5280,6 +5448,8 @@ module SDM
|
|
5280
5448
|
attr_accessor :id
|
5281
5449
|
# Unique human-readable name of the Resource.
|
5282
5450
|
attr_accessor :name
|
5451
|
+
# ID of the proxy cluster for this resource, if any.
|
5452
|
+
attr_accessor :proxy_cluster_id
|
5283
5453
|
# ID of the secret store containing credentials for this resource, if any.
|
5284
5454
|
attr_accessor :secret_store_id
|
5285
5455
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -5300,6 +5470,7 @@ module SDM
|
|
5300
5470
|
host_override: nil,
|
5301
5471
|
id: nil,
|
5302
5472
|
name: nil,
|
5473
|
+
proxy_cluster_id: nil,
|
5303
5474
|
secret_store_id: nil,
|
5304
5475
|
subdomain: nil,
|
5305
5476
|
tags: nil,
|
@@ -5315,6 +5486,7 @@ module SDM
|
|
5315
5486
|
@host_override = host_override == nil ? "" : host_override
|
5316
5487
|
@id = id == nil ? "" : id
|
5317
5488
|
@name = name == nil ? "" : name
|
5489
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5318
5490
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5319
5491
|
@subdomain = subdomain == nil ? "" : subdomain
|
5320
5492
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5351,6 +5523,8 @@ module SDM
|
|
5351
5523
|
attr_accessor :name
|
5352
5524
|
# The password to authenticate with.
|
5353
5525
|
attr_accessor :password
|
5526
|
+
# ID of the proxy cluster for this resource, if any.
|
5527
|
+
attr_accessor :proxy_cluster_id
|
5354
5528
|
# ID of the secret store containing credentials for this resource, if any.
|
5355
5529
|
attr_accessor :secret_store_id
|
5356
5530
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -5373,6 +5547,7 @@ module SDM
|
|
5373
5547
|
id: nil,
|
5374
5548
|
name: nil,
|
5375
5549
|
password: nil,
|
5550
|
+
proxy_cluster_id: nil,
|
5376
5551
|
secret_store_id: nil,
|
5377
5552
|
subdomain: nil,
|
5378
5553
|
tags: nil,
|
@@ -5389,6 +5564,7 @@ module SDM
|
|
5389
5564
|
@id = id == nil ? "" : id
|
5390
5565
|
@name = name == nil ? "" : name
|
5391
5566
|
@password = password == nil ? "" : password
|
5567
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5392
5568
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5393
5569
|
@subdomain = subdomain == nil ? "" : subdomain
|
5394
5570
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5424,6 +5600,8 @@ module SDM
|
|
5424
5600
|
attr_accessor :id
|
5425
5601
|
# Unique human-readable name of the Resource.
|
5426
5602
|
attr_accessor :name
|
5603
|
+
# ID of the proxy cluster for this resource, if any.
|
5604
|
+
attr_accessor :proxy_cluster_id
|
5427
5605
|
# ID of the secret store containing credentials for this resource, if any.
|
5428
5606
|
attr_accessor :secret_store_id
|
5429
5607
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -5443,6 +5621,7 @@ module SDM
|
|
5443
5621
|
host_override: nil,
|
5444
5622
|
id: nil,
|
5445
5623
|
name: nil,
|
5624
|
+
proxy_cluster_id: nil,
|
5446
5625
|
secret_store_id: nil,
|
5447
5626
|
subdomain: nil,
|
5448
5627
|
tags: nil,
|
@@ -5457,6 +5636,7 @@ module SDM
|
|
5457
5636
|
@host_override = host_override == nil ? "" : host_override
|
5458
5637
|
@id = id == nil ? "" : id
|
5459
5638
|
@name = name == nil ? "" : name
|
5639
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
5460
5640
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5461
5641
|
@subdomain = subdomain == nil ? "" : subdomain
|
5462
5642
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -5993,6 +6173,8 @@ module SDM
|
|
5993
6173
|
attr_accessor :port
|
5994
6174
|
# The local port used by clients to connect to this resource.
|
5995
6175
|
attr_accessor :port_override
|
6176
|
+
# ID of the proxy cluster for this resource, if any.
|
6177
|
+
attr_accessor :proxy_cluster_id
|
5996
6178
|
# ID of the secret store containing credentials for this resource, if any.
|
5997
6179
|
attr_accessor :secret_store_id
|
5998
6180
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6018,6 +6200,7 @@ module SDM
|
|
6018
6200
|
name: nil,
|
6019
6201
|
port: nil,
|
6020
6202
|
port_override: nil,
|
6203
|
+
proxy_cluster_id: nil,
|
6021
6204
|
secret_store_id: nil,
|
6022
6205
|
subdomain: nil,
|
6023
6206
|
tags: nil
|
@@ -6039,6 +6222,7 @@ module SDM
|
|
6039
6222
|
@name = name == nil ? "" : name
|
6040
6223
|
@port = port == nil ? 0 : port
|
6041
6224
|
@port_override = port_override == nil ? 0 : port_override
|
6225
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6042
6226
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6043
6227
|
@subdomain = subdomain == nil ? "" : subdomain
|
6044
6228
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6075,6 +6259,8 @@ module SDM
|
|
6075
6259
|
attr_accessor :port
|
6076
6260
|
# The local port used by clients to connect to this resource.
|
6077
6261
|
attr_accessor :port_override
|
6262
|
+
# ID of the proxy cluster for this resource, if any.
|
6263
|
+
attr_accessor :proxy_cluster_id
|
6078
6264
|
# ID of the secret store containing credentials for this resource, if any.
|
6079
6265
|
attr_accessor :secret_store_id
|
6080
6266
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6095,6 +6281,7 @@ module SDM
|
|
6095
6281
|
password: nil,
|
6096
6282
|
port: nil,
|
6097
6283
|
port_override: nil,
|
6284
|
+
proxy_cluster_id: nil,
|
6098
6285
|
secret_store_id: nil,
|
6099
6286
|
subdomain: nil,
|
6100
6287
|
tags: nil,
|
@@ -6110,6 +6297,7 @@ module SDM
|
|
6110
6297
|
@password = password == nil ? "" : password
|
6111
6298
|
@port = port == nil ? 0 : port
|
6112
6299
|
@port_override = port_override == nil ? 0 : port_override
|
6300
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6113
6301
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6114
6302
|
@subdomain = subdomain == nil ? "" : subdomain
|
6115
6303
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6156,6 +6344,8 @@ module SDM
|
|
6156
6344
|
attr_accessor :port
|
6157
6345
|
# The local port used by clients to connect to this resource.
|
6158
6346
|
attr_accessor :port_override
|
6347
|
+
# ID of the proxy cluster for this resource, if any.
|
6348
|
+
attr_accessor :proxy_cluster_id
|
6159
6349
|
# ID of the secret store containing credentials for this resource, if any.
|
6160
6350
|
attr_accessor :secret_store_id
|
6161
6351
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6180,6 +6370,7 @@ module SDM
|
|
6180
6370
|
name: nil,
|
6181
6371
|
port: nil,
|
6182
6372
|
port_override: nil,
|
6373
|
+
proxy_cluster_id: nil,
|
6183
6374
|
secret_store_id: nil,
|
6184
6375
|
subdomain: nil,
|
6185
6376
|
tags: nil,
|
@@ -6199,6 +6390,7 @@ module SDM
|
|
6199
6390
|
@name = name == nil ? "" : name
|
6200
6391
|
@port = port == nil ? 0 : port
|
6201
6392
|
@port_override = port_override == nil ? 0 : port_override
|
6393
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6202
6394
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6203
6395
|
@subdomain = subdomain == nil ? "" : subdomain
|
6204
6396
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6233,6 +6425,8 @@ module SDM
|
|
6233
6425
|
attr_accessor :port
|
6234
6426
|
# The local port used by clients to connect to this resource.
|
6235
6427
|
attr_accessor :port_override
|
6428
|
+
# ID of the proxy cluster for this resource, if any.
|
6429
|
+
attr_accessor :proxy_cluster_id
|
6236
6430
|
# ID of the secret store containing credentials for this resource, if any.
|
6237
6431
|
attr_accessor :secret_store_id
|
6238
6432
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6252,6 +6446,7 @@ module SDM
|
|
6252
6446
|
name: nil,
|
6253
6447
|
port: nil,
|
6254
6448
|
port_override: nil,
|
6449
|
+
proxy_cluster_id: nil,
|
6255
6450
|
secret_store_id: nil,
|
6256
6451
|
subdomain: nil,
|
6257
6452
|
tags: nil,
|
@@ -6266,6 +6461,7 @@ module SDM
|
|
6266
6461
|
@name = name == nil ? "" : name
|
6267
6462
|
@port = port == nil ? 0 : port
|
6268
6463
|
@port_override = port_override == nil ? 0 : port_override
|
6464
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6269
6465
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6270
6466
|
@subdomain = subdomain == nil ? "" : subdomain
|
6271
6467
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6306,6 +6502,8 @@ module SDM
|
|
6306
6502
|
attr_accessor :port
|
6307
6503
|
# The local port used by clients to connect to this resource.
|
6308
6504
|
attr_accessor :port_override
|
6505
|
+
# ID of the proxy cluster for this resource, if any.
|
6506
|
+
attr_accessor :proxy_cluster_id
|
6309
6507
|
# ID of the secret store containing credentials for this resource, if any.
|
6310
6508
|
attr_accessor :secret_store_id
|
6311
6509
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6326,6 +6524,7 @@ module SDM
|
|
6326
6524
|
name: nil,
|
6327
6525
|
port: nil,
|
6328
6526
|
port_override: nil,
|
6527
|
+
proxy_cluster_id: nil,
|
6329
6528
|
secret_store_id: nil,
|
6330
6529
|
subdomain: nil,
|
6331
6530
|
tags: nil
|
@@ -6342,6 +6541,7 @@ module SDM
|
|
6342
6541
|
@name = name == nil ? "" : name
|
6343
6542
|
@port = port == nil ? 0 : port
|
6344
6543
|
@port_override = port_override == nil ? 0 : port_override
|
6544
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6345
6545
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6346
6546
|
@subdomain = subdomain == nil ? "" : subdomain
|
6347
6547
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6384,6 +6584,8 @@ module SDM
|
|
6384
6584
|
attr_accessor :port
|
6385
6585
|
# The local port used by clients to connect to this resource.
|
6386
6586
|
attr_accessor :port_override
|
6587
|
+
# ID of the proxy cluster for this resource, if any.
|
6588
|
+
attr_accessor :proxy_cluster_id
|
6387
6589
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
6388
6590
|
attr_accessor :require_native_auth
|
6389
6591
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -6413,6 +6615,7 @@ module SDM
|
|
6413
6615
|
password: nil,
|
6414
6616
|
port: nil,
|
6415
6617
|
port_override: nil,
|
6618
|
+
proxy_cluster_id: nil,
|
6416
6619
|
require_native_auth: nil,
|
6417
6620
|
secret_store_id: nil,
|
6418
6621
|
server_name: nil,
|
@@ -6434,6 +6637,7 @@ module SDM
|
|
6434
6637
|
@password = password == nil ? "" : password
|
6435
6638
|
@port = port == nil ? 0 : port
|
6436
6639
|
@port_override = port_override == nil ? 0 : port_override
|
6640
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6437
6641
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
6438
6642
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6439
6643
|
@server_name = server_name == nil ? "" : server_name
|
@@ -6481,6 +6685,8 @@ module SDM
|
|
6481
6685
|
attr_accessor :port
|
6482
6686
|
# The local port used by clients to connect to this resource.
|
6483
6687
|
attr_accessor :port_override
|
6688
|
+
# ID of the proxy cluster for this resource, if any.
|
6689
|
+
attr_accessor :proxy_cluster_id
|
6484
6690
|
# ID of the secret store containing credentials for this resource, if any.
|
6485
6691
|
attr_accessor :secret_store_id
|
6486
6692
|
# Server name for TLS verification (unverified by StrongDM if empty)
|
@@ -6507,6 +6713,7 @@ module SDM
|
|
6507
6713
|
password: nil,
|
6508
6714
|
port: nil,
|
6509
6715
|
port_override: nil,
|
6716
|
+
proxy_cluster_id: nil,
|
6510
6717
|
secret_store_id: nil,
|
6511
6718
|
server_name: nil,
|
6512
6719
|
subdomain: nil,
|
@@ -6527,6 +6734,7 @@ module SDM
|
|
6527
6734
|
@password = password == nil ? "" : password
|
6528
6735
|
@port = port == nil ? 0 : port
|
6529
6736
|
@port_override = port_override == nil ? 0 : port_override
|
6737
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6530
6738
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6531
6739
|
@server_name = server_name == nil ? "" : server_name
|
6532
6740
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -6564,6 +6772,8 @@ module SDM
|
|
6564
6772
|
attr_accessor :port
|
6565
6773
|
# The local port used by clients to connect to this resource.
|
6566
6774
|
attr_accessor :port_override
|
6775
|
+
# ID of the proxy cluster for this resource, if any.
|
6776
|
+
attr_accessor :proxy_cluster_id
|
6567
6777
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
6568
6778
|
attr_accessor :require_native_auth
|
6569
6779
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -6588,6 +6798,7 @@ module SDM
|
|
6588
6798
|
password: nil,
|
6589
6799
|
port: nil,
|
6590
6800
|
port_override: nil,
|
6801
|
+
proxy_cluster_id: nil,
|
6591
6802
|
require_native_auth: nil,
|
6592
6803
|
secret_store_id: nil,
|
6593
6804
|
subdomain: nil,
|
@@ -6605,6 +6816,7 @@ module SDM
|
|
6605
6816
|
@password = password == nil ? "" : password
|
6606
6817
|
@port = port == nil ? 0 : port
|
6607
6818
|
@port_override = port_override == nil ? 0 : port_override
|
6819
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6608
6820
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
6609
6821
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6610
6822
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -6639,6 +6851,8 @@ module SDM
|
|
6639
6851
|
attr_accessor :port
|
6640
6852
|
# The local port used by clients to connect to this resource.
|
6641
6853
|
attr_accessor :port_override
|
6854
|
+
# ID of the proxy cluster for this resource, if any.
|
6855
|
+
attr_accessor :proxy_cluster_id
|
6642
6856
|
# ID of the secret store containing credentials for this resource, if any.
|
6643
6857
|
attr_accessor :secret_store_id
|
6644
6858
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6655,6 +6869,7 @@ module SDM
|
|
6655
6869
|
name: nil,
|
6656
6870
|
port: nil,
|
6657
6871
|
port_override: nil,
|
6872
|
+
proxy_cluster_id: nil,
|
6658
6873
|
secret_store_id: nil,
|
6659
6874
|
subdomain: nil,
|
6660
6875
|
tags: nil
|
@@ -6667,6 +6882,7 @@ module SDM
|
|
6667
6882
|
@name = name == nil ? "" : name
|
6668
6883
|
@port = port == nil ? 0 : port
|
6669
6884
|
@port_override = port_override == nil ? 0 : port_override
|
6885
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6670
6886
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6671
6887
|
@subdomain = subdomain == nil ? "" : subdomain
|
6672
6888
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6702,6 +6918,8 @@ module SDM
|
|
6702
6918
|
attr_accessor :port
|
6703
6919
|
# The local port used by clients to connect to this resource.
|
6704
6920
|
attr_accessor :port_override
|
6921
|
+
# ID of the proxy cluster for this resource, if any.
|
6922
|
+
attr_accessor :proxy_cluster_id
|
6705
6923
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
6706
6924
|
attr_accessor :require_native_auth
|
6707
6925
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -6726,6 +6944,7 @@ module SDM
|
|
6726
6944
|
password: nil,
|
6727
6945
|
port: nil,
|
6728
6946
|
port_override: nil,
|
6947
|
+
proxy_cluster_id: nil,
|
6729
6948
|
require_native_auth: nil,
|
6730
6949
|
secret_store_id: nil,
|
6731
6950
|
subdomain: nil,
|
@@ -6743,6 +6962,7 @@ module SDM
|
|
6743
6962
|
@password = password == nil ? "" : password
|
6744
6963
|
@port = port == nil ? 0 : port
|
6745
6964
|
@port_override = port_override == nil ? 0 : port_override
|
6965
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6746
6966
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
6747
6967
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6748
6968
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -6781,6 +7001,8 @@ module SDM
|
|
6781
7001
|
attr_accessor :port
|
6782
7002
|
# The local port used by clients to connect to this resource.
|
6783
7003
|
attr_accessor :port_override
|
7004
|
+
# ID of the proxy cluster for this resource, if any.
|
7005
|
+
attr_accessor :proxy_cluster_id
|
6784
7006
|
# ID of the secret store containing credentials for this resource, if any.
|
6785
7007
|
attr_accessor :secret_store_id
|
6786
7008
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6803,6 +7025,7 @@ module SDM
|
|
6803
7025
|
password: nil,
|
6804
7026
|
port: nil,
|
6805
7027
|
port_override: nil,
|
7028
|
+
proxy_cluster_id: nil,
|
6806
7029
|
secret_store_id: nil,
|
6807
7030
|
subdomain: nil,
|
6808
7031
|
tags: nil,
|
@@ -6819,6 +7042,7 @@ module SDM
|
|
6819
7042
|
@password = password == nil ? "" : password
|
6820
7043
|
@port = port == nil ? 0 : port
|
6821
7044
|
@port_override = port_override == nil ? 0 : port_override
|
7045
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6822
7046
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6823
7047
|
@subdomain = subdomain == nil ? "" : subdomain
|
6824
7048
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6857,6 +7081,8 @@ module SDM
|
|
6857
7081
|
attr_accessor :port
|
6858
7082
|
# The local port used by clients to connect to this resource.
|
6859
7083
|
attr_accessor :port_override
|
7084
|
+
# ID of the proxy cluster for this resource, if any.
|
7085
|
+
attr_accessor :proxy_cluster_id
|
6860
7086
|
# ID of the secret store containing credentials for this resource, if any.
|
6861
7087
|
attr_accessor :secret_store_id
|
6862
7088
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -6879,6 +7105,7 @@ module SDM
|
|
6879
7105
|
password: nil,
|
6880
7106
|
port: nil,
|
6881
7107
|
port_override: nil,
|
7108
|
+
proxy_cluster_id: nil,
|
6882
7109
|
secret_store_id: nil,
|
6883
7110
|
subdomain: nil,
|
6884
7111
|
tags: nil,
|
@@ -6895,6 +7122,7 @@ module SDM
|
|
6895
7122
|
@password = password == nil ? "" : password
|
6896
7123
|
@port = port == nil ? 0 : port
|
6897
7124
|
@port_override = port_override == nil ? 0 : port_override
|
7125
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6898
7126
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6899
7127
|
@subdomain = subdomain == nil ? "" : subdomain
|
6900
7128
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -6935,6 +7163,8 @@ module SDM
|
|
6935
7163
|
attr_accessor :port
|
6936
7164
|
# The local port used by clients to connect to this resource.
|
6937
7165
|
attr_accessor :port_override
|
7166
|
+
# ID of the proxy cluster for this resource, if any.
|
7167
|
+
attr_accessor :proxy_cluster_id
|
6938
7168
|
# The name of the mongo replicaset.
|
6939
7169
|
attr_accessor :replica_set
|
6940
7170
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -6960,6 +7190,7 @@ module SDM
|
|
6960
7190
|
password: nil,
|
6961
7191
|
port: nil,
|
6962
7192
|
port_override: nil,
|
7193
|
+
proxy_cluster_id: nil,
|
6963
7194
|
replica_set: nil,
|
6964
7195
|
secret_store_id: nil,
|
6965
7196
|
subdomain: nil,
|
@@ -6978,6 +7209,7 @@ module SDM
|
|
6978
7209
|
@password = password == nil ? "" : password
|
6979
7210
|
@port = port == nil ? 0 : port
|
6980
7211
|
@port_override = port_override == nil ? 0 : port_override
|
7212
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
6981
7213
|
@replica_set = replica_set == nil ? "" : replica_set
|
6982
7214
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6983
7215
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -7018,6 +7250,8 @@ module SDM
|
|
7018
7250
|
attr_accessor :port
|
7019
7251
|
# The local port used by clients to connect to this resource.
|
7020
7252
|
attr_accessor :port_override
|
7253
|
+
# ID of the proxy cluster for this resource, if any.
|
7254
|
+
attr_accessor :proxy_cluster_id
|
7021
7255
|
# The name of the mongo replicaset.
|
7022
7256
|
attr_accessor :replica_set
|
7023
7257
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -7043,6 +7277,7 @@ module SDM
|
|
7043
7277
|
password: nil,
|
7044
7278
|
port: nil,
|
7045
7279
|
port_override: nil,
|
7280
|
+
proxy_cluster_id: nil,
|
7046
7281
|
replica_set: nil,
|
7047
7282
|
secret_store_id: nil,
|
7048
7283
|
subdomain: nil,
|
@@ -7061,6 +7296,7 @@ module SDM
|
|
7061
7296
|
@password = password == nil ? "" : password
|
7062
7297
|
@port = port == nil ? 0 : port
|
7063
7298
|
@port_override = port_override == nil ? 0 : port_override
|
7299
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7064
7300
|
@replica_set = replica_set == nil ? "" : replica_set
|
7065
7301
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7066
7302
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -7097,6 +7333,8 @@ module SDM
|
|
7097
7333
|
attr_accessor :password
|
7098
7334
|
# The local port used by clients to connect to this resource.
|
7099
7335
|
attr_accessor :port_override
|
7336
|
+
# ID of the proxy cluster for this resource, if any.
|
7337
|
+
attr_accessor :proxy_cluster_id
|
7100
7338
|
# ID of the secret store containing credentials for this resource, if any.
|
7101
7339
|
attr_accessor :secret_store_id
|
7102
7340
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -7118,6 +7356,7 @@ module SDM
|
|
7118
7356
|
name: nil,
|
7119
7357
|
password: nil,
|
7120
7358
|
port_override: nil,
|
7359
|
+
proxy_cluster_id: nil,
|
7121
7360
|
secret_store_id: nil,
|
7122
7361
|
subdomain: nil,
|
7123
7362
|
tags: nil,
|
@@ -7133,6 +7372,7 @@ module SDM
|
|
7133
7372
|
@name = name == nil ? "" : name
|
7134
7373
|
@password = password == nil ? "" : password
|
7135
7374
|
@port_override = port_override == nil ? 0 : port_override
|
7375
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7136
7376
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7137
7377
|
@subdomain = subdomain == nil ? "" : subdomain
|
7138
7378
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -7170,6 +7410,8 @@ module SDM
|
|
7170
7410
|
attr_accessor :port
|
7171
7411
|
# The local port used by clients to connect to this resource.
|
7172
7412
|
attr_accessor :port_override
|
7413
|
+
# ID of the proxy cluster for this resource, if any.
|
7414
|
+
attr_accessor :proxy_cluster_id
|
7173
7415
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
7174
7416
|
attr_accessor :require_native_auth
|
7175
7417
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -7194,6 +7436,7 @@ module SDM
|
|
7194
7436
|
password: nil,
|
7195
7437
|
port: nil,
|
7196
7438
|
port_override: nil,
|
7439
|
+
proxy_cluster_id: nil,
|
7197
7440
|
require_native_auth: nil,
|
7198
7441
|
secret_store_id: nil,
|
7199
7442
|
subdomain: nil,
|
@@ -7211,6 +7454,7 @@ module SDM
|
|
7211
7454
|
@password = password == nil ? "" : password
|
7212
7455
|
@port = port == nil ? 0 : port
|
7213
7456
|
@port_override = port_override == nil ? 0 : port_override
|
7457
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7214
7458
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
7215
7459
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7216
7460
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -7245,6 +7489,8 @@ module SDM
|
|
7245
7489
|
attr_accessor :port
|
7246
7490
|
# The local port used by clients to connect to this resource.
|
7247
7491
|
attr_accessor :port_override
|
7492
|
+
# ID of the proxy cluster for this resource, if any.
|
7493
|
+
attr_accessor :proxy_cluster_id
|
7248
7494
|
# ID of the secret store containing credentials for this resource, if any.
|
7249
7495
|
attr_accessor :secret_store_id
|
7250
7496
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -7261,6 +7507,7 @@ module SDM
|
|
7261
7507
|
name: nil,
|
7262
7508
|
port: nil,
|
7263
7509
|
port_override: nil,
|
7510
|
+
proxy_cluster_id: nil,
|
7264
7511
|
secret_store_id: nil,
|
7265
7512
|
subdomain: nil,
|
7266
7513
|
tags: nil
|
@@ -7273,6 +7520,7 @@ module SDM
|
|
7273
7520
|
@name = name == nil ? "" : name
|
7274
7521
|
@port = port == nil ? 0 : port
|
7275
7522
|
@port_override = port_override == nil ? 0 : port_override
|
7523
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7276
7524
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7277
7525
|
@subdomain = subdomain == nil ? "" : subdomain
|
7278
7526
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -7306,6 +7554,8 @@ module SDM
|
|
7306
7554
|
attr_accessor :port
|
7307
7555
|
# The local port used by clients to connect to this resource.
|
7308
7556
|
attr_accessor :port_override
|
7557
|
+
# ID of the proxy cluster for this resource, if any.
|
7558
|
+
attr_accessor :proxy_cluster_id
|
7309
7559
|
# The AWS region to connect to.
|
7310
7560
|
attr_accessor :region
|
7311
7561
|
# The role to assume after logging in.
|
@@ -7331,6 +7581,7 @@ module SDM
|
|
7331
7581
|
name: nil,
|
7332
7582
|
port: nil,
|
7333
7583
|
port_override: nil,
|
7584
|
+
proxy_cluster_id: nil,
|
7334
7585
|
region: nil,
|
7335
7586
|
role_arn: nil,
|
7336
7587
|
role_external_id: nil,
|
@@ -7348,6 +7599,7 @@ module SDM
|
|
7348
7599
|
@name = name == nil ? "" : name
|
7349
7600
|
@port = port == nil ? 0 : port
|
7350
7601
|
@port_override = port_override == nil ? 0 : port_override
|
7602
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7351
7603
|
@region = region == nil ? "" : region
|
7352
7604
|
@role_arn = role_arn == nil ? "" : role_arn
|
7353
7605
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
@@ -7568,6 +7820,8 @@ module SDM
|
|
7568
7820
|
attr_accessor :port
|
7569
7821
|
# The local port used by clients to connect to this resource.
|
7570
7822
|
attr_accessor :port_override
|
7823
|
+
# ID of the proxy cluster for this resource, if any.
|
7824
|
+
attr_accessor :proxy_cluster_id
|
7571
7825
|
# ID of the secret store containing credentials for this resource, if any.
|
7572
7826
|
attr_accessor :secret_store_id
|
7573
7827
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -7590,6 +7844,7 @@ module SDM
|
|
7590
7844
|
password: nil,
|
7591
7845
|
port: nil,
|
7592
7846
|
port_override: nil,
|
7847
|
+
proxy_cluster_id: nil,
|
7593
7848
|
secret_store_id: nil,
|
7594
7849
|
subdomain: nil,
|
7595
7850
|
tags: nil,
|
@@ -7606,6 +7861,7 @@ module SDM
|
|
7606
7861
|
@password = password == nil ? "" : password
|
7607
7862
|
@port = port == nil ? 0 : port
|
7608
7863
|
@port_override = port_override == nil ? 0 : port_override
|
7864
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
7609
7865
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7610
7866
|
@subdomain = subdomain == nil ? "" : subdomain
|
7611
7867
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -8417,6 +8673,8 @@ module SDM
|
|
8417
8673
|
attr_accessor :port
|
8418
8674
|
# The local port used by clients to connect to this resource.
|
8419
8675
|
attr_accessor :port_override
|
8676
|
+
# ID of the proxy cluster for this resource, if any.
|
8677
|
+
attr_accessor :proxy_cluster_id
|
8420
8678
|
# ID of the secret store containing credentials for this resource, if any.
|
8421
8679
|
attr_accessor :secret_store_id
|
8422
8680
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -8438,6 +8696,7 @@ module SDM
|
|
8438
8696
|
password: nil,
|
8439
8697
|
port: nil,
|
8440
8698
|
port_override: nil,
|
8699
|
+
proxy_cluster_id: nil,
|
8441
8700
|
secret_store_id: nil,
|
8442
8701
|
subdomain: nil,
|
8443
8702
|
tags: nil,
|
@@ -8454,6 +8713,7 @@ module SDM
|
|
8454
8713
|
@password = password == nil ? "" : password
|
8455
8714
|
@port = port == nil ? 0 : port
|
8456
8715
|
@port_override = port_override == nil ? 0 : port_override
|
8716
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
8457
8717
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
8458
8718
|
@subdomain = subdomain == nil ? "" : subdomain
|
8459
8719
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -8490,6 +8750,8 @@ module SDM
|
|
8490
8750
|
attr_accessor :port
|
8491
8751
|
# The local port used by clients to connect to this resource.
|
8492
8752
|
attr_accessor :port_override
|
8753
|
+
# ID of the proxy cluster for this resource, if any.
|
8754
|
+
attr_accessor :proxy_cluster_id
|
8493
8755
|
# ID of the secret store containing credentials for this resource, if any.
|
8494
8756
|
attr_accessor :secret_store_id
|
8495
8757
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -8512,6 +8774,7 @@ module SDM
|
|
8512
8774
|
password: nil,
|
8513
8775
|
port: nil,
|
8514
8776
|
port_override: nil,
|
8777
|
+
proxy_cluster_id: nil,
|
8515
8778
|
secret_store_id: nil,
|
8516
8779
|
subdomain: nil,
|
8517
8780
|
tags: nil,
|
@@ -8528,6 +8791,7 @@ module SDM
|
|
8528
8791
|
@password = password == nil ? "" : password
|
8529
8792
|
@port = port == nil ? 0 : port
|
8530
8793
|
@port_override = port_override == nil ? 0 : port_override
|
8794
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
8531
8795
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
8532
8796
|
@subdomain = subdomain == nil ? "" : subdomain
|
8533
8797
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -8948,6 +9212,8 @@ module SDM
|
|
8948
9212
|
attr_accessor :port
|
8949
9213
|
# The local port used by clients to connect to this resource.
|
8950
9214
|
attr_accessor :port_override
|
9215
|
+
# ID of the proxy cluster for this resource, if any.
|
9216
|
+
attr_accessor :proxy_cluster_id
|
8951
9217
|
# ID of the secret store containing credentials for this resource, if any.
|
8952
9218
|
attr_accessor :secret_store_id
|
8953
9219
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -8969,6 +9235,7 @@ module SDM
|
|
8969
9235
|
password: nil,
|
8970
9236
|
port: nil,
|
8971
9237
|
port_override: nil,
|
9238
|
+
proxy_cluster_id: nil,
|
8972
9239
|
secret_store_id: nil,
|
8973
9240
|
subdomain: nil,
|
8974
9241
|
tags: nil,
|
@@ -8985,6 +9252,7 @@ module SDM
|
|
8985
9252
|
@password = password == nil ? "" : password
|
8986
9253
|
@port = port == nil ? 0 : port
|
8987
9254
|
@port_override = port_override == nil ? 0 : port_override
|
9255
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
8988
9256
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
8989
9257
|
@subdomain = subdomain == nil ? "" : subdomain
|
8990
9258
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -9021,6 +9289,8 @@ module SDM
|
|
9021
9289
|
attr_accessor :port
|
9022
9290
|
# The local port used by clients to connect to this resource.
|
9023
9291
|
attr_accessor :port_override
|
9292
|
+
# ID of the proxy cluster for this resource, if any.
|
9293
|
+
attr_accessor :proxy_cluster_id
|
9024
9294
|
# ID of the secret store containing credentials for this resource, if any.
|
9025
9295
|
attr_accessor :secret_store_id
|
9026
9296
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -9041,6 +9311,7 @@ module SDM
|
|
9041
9311
|
name: nil,
|
9042
9312
|
port: nil,
|
9043
9313
|
port_override: nil,
|
9314
|
+
proxy_cluster_id: nil,
|
9044
9315
|
secret_store_id: nil,
|
9045
9316
|
subdomain: nil,
|
9046
9317
|
tags: nil,
|
@@ -9056,6 +9327,7 @@ module SDM
|
|
9056
9327
|
@name = name == nil ? "" : name
|
9057
9328
|
@port = port == nil ? 0 : port
|
9058
9329
|
@port_override = port_override == nil ? 0 : port_override
|
9330
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9059
9331
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
9060
9332
|
@subdomain = subdomain == nil ? "" : subdomain
|
9061
9333
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -9092,6 +9364,8 @@ module SDM
|
|
9092
9364
|
attr_accessor :port
|
9093
9365
|
# The local port used by clients to connect to this resource.
|
9094
9366
|
attr_accessor :port_override
|
9367
|
+
# ID of the proxy cluster for this resource, if any.
|
9368
|
+
attr_accessor :proxy_cluster_id
|
9095
9369
|
# The AWS region to connect to.
|
9096
9370
|
attr_accessor :region
|
9097
9371
|
# If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
|
@@ -9116,6 +9390,7 @@ module SDM
|
|
9116
9390
|
override_database: nil,
|
9117
9391
|
port: nil,
|
9118
9392
|
port_override: nil,
|
9393
|
+
proxy_cluster_id: nil,
|
9119
9394
|
region: nil,
|
9120
9395
|
role_assumption_arn: nil,
|
9121
9396
|
secret_store_id: nil,
|
@@ -9133,6 +9408,7 @@ module SDM
|
|
9133
9408
|
@override_database = override_database == nil ? false : override_database
|
9134
9409
|
@port = port == nil ? 0 : port
|
9135
9410
|
@port_override = port_override == nil ? 0 : port_override
|
9411
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9136
9412
|
@region = region == nil ? "" : region
|
9137
9413
|
@role_assumption_arn = role_assumption_arn == nil ? "" : role_assumption_arn
|
9138
9414
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
@@ -9169,6 +9445,8 @@ module SDM
|
|
9169
9445
|
attr_accessor :port
|
9170
9446
|
# The local port used by clients to connect to this resource.
|
9171
9447
|
attr_accessor :port_override
|
9448
|
+
# ID of the proxy cluster for this resource, if any.
|
9449
|
+
attr_accessor :proxy_cluster_id
|
9172
9450
|
# ID of the secret store containing credentials for this resource, if any.
|
9173
9451
|
attr_accessor :secret_store_id
|
9174
9452
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -9190,6 +9468,7 @@ module SDM
|
|
9190
9468
|
password: nil,
|
9191
9469
|
port: nil,
|
9192
9470
|
port_override: nil,
|
9471
|
+
proxy_cluster_id: nil,
|
9193
9472
|
secret_store_id: nil,
|
9194
9473
|
subdomain: nil,
|
9195
9474
|
tags: nil,
|
@@ -9205,6 +9484,7 @@ module SDM
|
|
9205
9484
|
@password = password == nil ? "" : password
|
9206
9485
|
@port = port == nil ? 0 : port
|
9207
9486
|
@port_override = port_override == nil ? 0 : port_override
|
9487
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9208
9488
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
9209
9489
|
@subdomain = subdomain == nil ? "" : subdomain
|
9210
9490
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -9273,6 +9553,8 @@ module SDM
|
|
9273
9553
|
attr_accessor :port
|
9274
9554
|
# The local port used by clients to connect to this resource.
|
9275
9555
|
attr_accessor :port_override
|
9556
|
+
# ID of the proxy cluster for this resource, if any.
|
9557
|
+
attr_accessor :proxy_cluster_id
|
9276
9558
|
# ID of the secret store containing credentials for this resource, if any.
|
9277
9559
|
attr_accessor :secret_store_id
|
9278
9560
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -9289,6 +9571,7 @@ module SDM
|
|
9289
9571
|
name: nil,
|
9290
9572
|
port: nil,
|
9291
9573
|
port_override: nil,
|
9574
|
+
proxy_cluster_id: nil,
|
9292
9575
|
secret_store_id: nil,
|
9293
9576
|
subdomain: nil,
|
9294
9577
|
tags: nil
|
@@ -9301,6 +9584,7 @@ module SDM
|
|
9301
9584
|
@name = name == nil ? "" : name
|
9302
9585
|
@port = port == nil ? 0 : port
|
9303
9586
|
@port_override = port_override == nil ? 0 : port_override
|
9587
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9304
9588
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
9305
9589
|
@subdomain = subdomain == nil ? "" : subdomain
|
9306
9590
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -9334,6 +9618,8 @@ module SDM
|
|
9334
9618
|
attr_accessor :port
|
9335
9619
|
# The local port used by clients to connect to this resource.
|
9336
9620
|
attr_accessor :port_override
|
9621
|
+
# ID of the proxy cluster for this resource, if any.
|
9622
|
+
attr_accessor :proxy_cluster_id
|
9337
9623
|
# ID of the secret store containing credentials for this resource, if any.
|
9338
9624
|
attr_accessor :secret_store_id
|
9339
9625
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -9355,6 +9641,7 @@ module SDM
|
|
9355
9641
|
password: nil,
|
9356
9642
|
port: nil,
|
9357
9643
|
port_override: nil,
|
9644
|
+
proxy_cluster_id: nil,
|
9358
9645
|
secret_store_id: nil,
|
9359
9646
|
subdomain: nil,
|
9360
9647
|
tags: nil,
|
@@ -9370,6 +9657,7 @@ module SDM
|
|
9370
9657
|
@password = password == nil ? "" : password
|
9371
9658
|
@port = port == nil ? 0 : port
|
9372
9659
|
@port_override = port_override == nil ? 0 : port_override
|
9660
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9373
9661
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
9374
9662
|
@subdomain = subdomain == nil ? "" : subdomain
|
9375
9663
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -9409,6 +9697,8 @@ module SDM
|
|
9409
9697
|
attr_accessor :port
|
9410
9698
|
# The local port used by clients to connect to this resource.
|
9411
9699
|
attr_accessor :port_override
|
9700
|
+
# ID of the proxy cluster for this resource, if any.
|
9701
|
+
attr_accessor :proxy_cluster_id
|
9412
9702
|
# ID of the secret store containing credentials for this resource, if any.
|
9413
9703
|
attr_accessor :secret_store_id
|
9414
9704
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -9430,6 +9720,7 @@ module SDM
|
|
9430
9720
|
password: nil,
|
9431
9721
|
port: nil,
|
9432
9722
|
port_override: nil,
|
9723
|
+
proxy_cluster_id: nil,
|
9433
9724
|
secret_store_id: nil,
|
9434
9725
|
subdomain: nil,
|
9435
9726
|
tags: nil,
|
@@ -9446,6 +9737,7 @@ module SDM
|
|
9446
9737
|
@password = password == nil ? "" : password
|
9447
9738
|
@port = port == nil ? 0 : port
|
9448
9739
|
@port_override = port_override == nil ? 0 : port_override
|
9740
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
9449
9741
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
9450
9742
|
@subdomain = subdomain == nil ? "" : subdomain
|
9451
9743
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -10348,6 +10640,8 @@ module SDM
|
|
10348
10640
|
attr_accessor :port
|
10349
10641
|
# The local port used by clients to connect to this resource.
|
10350
10642
|
attr_accessor :port_override
|
10643
|
+
# ID of the proxy cluster for this resource, if any.
|
10644
|
+
attr_accessor :proxy_cluster_id
|
10351
10645
|
# The Schema to use to direct initial requests.
|
10352
10646
|
attr_accessor :schema
|
10353
10647
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -10372,6 +10666,7 @@ module SDM
|
|
10372
10666
|
password: nil,
|
10373
10667
|
port: nil,
|
10374
10668
|
port_override: nil,
|
10669
|
+
proxy_cluster_id: nil,
|
10375
10670
|
schema: nil,
|
10376
10671
|
secret_store_id: nil,
|
10377
10672
|
subdomain: nil,
|
@@ -10390,6 +10685,7 @@ module SDM
|
|
10390
10685
|
@password = password == nil ? "" : password
|
10391
10686
|
@port = port == nil ? 0 : port
|
10392
10687
|
@port_override = port_override == nil ? 0 : port_override
|
10688
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10393
10689
|
@schema = schema == nil ? "" : schema
|
10394
10690
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
10395
10691
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -10432,6 +10728,8 @@ module SDM
|
|
10432
10728
|
attr_accessor :port
|
10433
10729
|
# The local port used by clients to connect to this resource.
|
10434
10730
|
attr_accessor :port_override
|
10731
|
+
# ID of the proxy cluster for this resource, if any.
|
10732
|
+
attr_accessor :proxy_cluster_id
|
10435
10733
|
# The Schema to use to direct initial requests.
|
10436
10734
|
attr_accessor :schema
|
10437
10735
|
# The Azure AD client secret (application password) with which to authenticate.
|
@@ -10458,6 +10756,7 @@ module SDM
|
|
10458
10756
|
override_database: nil,
|
10459
10757
|
port: nil,
|
10460
10758
|
port_override: nil,
|
10759
|
+
proxy_cluster_id: nil,
|
10461
10760
|
schema: nil,
|
10462
10761
|
secret: nil,
|
10463
10762
|
secret_store_id: nil,
|
@@ -10477,6 +10776,7 @@ module SDM
|
|
10477
10776
|
@override_database = override_database == nil ? false : override_database
|
10478
10777
|
@port = port == nil ? 0 : port
|
10479
10778
|
@port_override = port_override == nil ? 0 : port_override
|
10779
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10480
10780
|
@schema = schema == nil ? "" : schema
|
10481
10781
|
@secret = secret == nil ? "" : secret
|
10482
10782
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
@@ -10522,6 +10822,8 @@ module SDM
|
|
10522
10822
|
attr_accessor :port
|
10523
10823
|
# The local port used by clients to connect to this resource.
|
10524
10824
|
attr_accessor :port_override
|
10825
|
+
# ID of the proxy cluster for this resource, if any.
|
10826
|
+
attr_accessor :proxy_cluster_id
|
10525
10827
|
# The Active Directory domain (realm) to which the configured username belongs.
|
10526
10828
|
attr_accessor :realm
|
10527
10829
|
# The Schema to use to direct initial requests.
|
@@ -10551,6 +10853,7 @@ module SDM
|
|
10551
10853
|
override_database: nil,
|
10552
10854
|
port: nil,
|
10553
10855
|
port_override: nil,
|
10856
|
+
proxy_cluster_id: nil,
|
10554
10857
|
realm: nil,
|
10555
10858
|
schema: nil,
|
10556
10859
|
secret_store_id: nil,
|
@@ -10572,6 +10875,7 @@ module SDM
|
|
10572
10875
|
@override_database = override_database == nil ? false : override_database
|
10573
10876
|
@port = port == nil ? 0 : port
|
10574
10877
|
@port_override = port_override == nil ? 0 : port_override
|
10878
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10575
10879
|
@realm = realm == nil ? "" : realm
|
10576
10880
|
@schema = schema == nil ? "" : schema
|
10577
10881
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
@@ -10613,6 +10917,8 @@ module SDM
|
|
10613
10917
|
attr_accessor :port_forwarding
|
10614
10918
|
# The local port used by clients to connect to this resource.
|
10615
10919
|
attr_accessor :port_override
|
10920
|
+
# ID of the proxy cluster for this resource, if any.
|
10921
|
+
attr_accessor :proxy_cluster_id
|
10616
10922
|
# The public key to append to a server's authorized keys. This will be generated after resource creation.
|
10617
10923
|
attr_accessor :public_key
|
10618
10924
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -10636,6 +10942,7 @@ module SDM
|
|
10636
10942
|
port: nil,
|
10637
10943
|
port_forwarding: nil,
|
10638
10944
|
port_override: nil,
|
10945
|
+
proxy_cluster_id: nil,
|
10639
10946
|
public_key: nil,
|
10640
10947
|
secret_store_id: nil,
|
10641
10948
|
subdomain: nil,
|
@@ -10653,6 +10960,7 @@ module SDM
|
|
10653
10960
|
@port = port == nil ? 0 : port
|
10654
10961
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
10655
10962
|
@port_override = port_override == nil ? 0 : port_override
|
10963
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10656
10964
|
@public_key = public_key == nil ? "" : public_key
|
10657
10965
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
10658
10966
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -10696,6 +11004,8 @@ module SDM
|
|
10696
11004
|
attr_accessor :port_forwarding
|
10697
11005
|
# The local port used by clients to connect to this resource.
|
10698
11006
|
attr_accessor :port_override
|
11007
|
+
# ID of the proxy cluster for this resource, if any.
|
11008
|
+
attr_accessor :proxy_cluster_id
|
10699
11009
|
# ID of the secret store containing credentials for this resource, if any.
|
10700
11010
|
attr_accessor :secret_store_id
|
10701
11011
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -10719,6 +11029,7 @@ module SDM
|
|
10719
11029
|
port: nil,
|
10720
11030
|
port_forwarding: nil,
|
10721
11031
|
port_override: nil,
|
11032
|
+
proxy_cluster_id: nil,
|
10722
11033
|
secret_store_id: nil,
|
10723
11034
|
subdomain: nil,
|
10724
11035
|
tags: nil,
|
@@ -10737,6 +11048,7 @@ module SDM
|
|
10737
11048
|
@port = port == nil ? 0 : port
|
10738
11049
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
10739
11050
|
@port_override = port_override == nil ? 0 : port_override
|
11051
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10740
11052
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
10741
11053
|
@subdomain = subdomain == nil ? "" : subdomain
|
10742
11054
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -10775,6 +11087,8 @@ module SDM
|
|
10775
11087
|
attr_accessor :port_override
|
10776
11088
|
# The private key used to authenticate with the server.
|
10777
11089
|
attr_accessor :private_key
|
11090
|
+
# ID of the proxy cluster for this resource, if any.
|
11091
|
+
attr_accessor :proxy_cluster_id
|
10778
11092
|
# ID of the secret store containing credentials for this resource, if any.
|
10779
11093
|
attr_accessor :secret_store_id
|
10780
11094
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -10796,6 +11110,7 @@ module SDM
|
|
10796
11110
|
port_forwarding: nil,
|
10797
11111
|
port_override: nil,
|
10798
11112
|
private_key: nil,
|
11113
|
+
proxy_cluster_id: nil,
|
10799
11114
|
secret_store_id: nil,
|
10800
11115
|
subdomain: nil,
|
10801
11116
|
tags: nil,
|
@@ -10812,6 +11127,7 @@ module SDM
|
|
10812
11127
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
10813
11128
|
@port_override = port_override == nil ? 0 : port_override
|
10814
11129
|
@private_key = private_key == nil ? "" : private_key
|
11130
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10815
11131
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
10816
11132
|
@subdomain = subdomain == nil ? "" : subdomain
|
10817
11133
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -10851,6 +11167,8 @@ module SDM
|
|
10851
11167
|
attr_accessor :port_forwarding
|
10852
11168
|
# The local port used by clients to connect to this resource.
|
10853
11169
|
attr_accessor :port_override
|
11170
|
+
# ID of the proxy cluster for this resource, if any.
|
11171
|
+
attr_accessor :proxy_cluster_id
|
10854
11172
|
# ID of the secret store containing credentials for this resource, if any.
|
10855
11173
|
attr_accessor :secret_store_id
|
10856
11174
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -10872,6 +11190,7 @@ module SDM
|
|
10872
11190
|
port: nil,
|
10873
11191
|
port_forwarding: nil,
|
10874
11192
|
port_override: nil,
|
11193
|
+
proxy_cluster_id: nil,
|
10875
11194
|
secret_store_id: nil,
|
10876
11195
|
subdomain: nil,
|
10877
11196
|
tags: nil,
|
@@ -10888,6 +11207,7 @@ module SDM
|
|
10888
11207
|
@port = port == nil ? 0 : port
|
10889
11208
|
@port_forwarding = port_forwarding == nil ? false : port_forwarding
|
10890
11209
|
@port_override = port_override == nil ? 0 : port_override
|
11210
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
10891
11211
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
10892
11212
|
@subdomain = subdomain == nil ? "" : subdomain
|
10893
11213
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -11189,6 +11509,8 @@ module SDM
|
|
11189
11509
|
attr_accessor :port
|
11190
11510
|
# The local port used by clients to connect to this resource.
|
11191
11511
|
attr_accessor :port_override
|
11512
|
+
# ID of the proxy cluster for this resource, if any.
|
11513
|
+
attr_accessor :proxy_cluster_id
|
11192
11514
|
# Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
11193
11515
|
attr_accessor :require_native_auth
|
11194
11516
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -11213,6 +11535,7 @@ module SDM
|
|
11213
11535
|
password: nil,
|
11214
11536
|
port: nil,
|
11215
11537
|
port_override: nil,
|
11538
|
+
proxy_cluster_id: nil,
|
11216
11539
|
require_native_auth: nil,
|
11217
11540
|
secret_store_id: nil,
|
11218
11541
|
subdomain: nil,
|
@@ -11230,6 +11553,7 @@ module SDM
|
|
11230
11553
|
@password = password == nil ? "" : password
|
11231
11554
|
@port = port == nil ? 0 : port
|
11232
11555
|
@port_override = port_override == nil ? 0 : port_override
|
11556
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11233
11557
|
@require_native_auth = require_native_auth == nil ? false : require_native_auth
|
11234
11558
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11235
11559
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -11266,6 +11590,8 @@ module SDM
|
|
11266
11590
|
attr_accessor :password
|
11267
11591
|
# The local port used by clients to connect to this resource.
|
11268
11592
|
attr_accessor :port_override
|
11593
|
+
# ID of the proxy cluster for this resource, if any.
|
11594
|
+
attr_accessor :proxy_cluster_id
|
11269
11595
|
# The schema to provide on authentication.
|
11270
11596
|
attr_accessor :schema
|
11271
11597
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -11287,6 +11613,7 @@ module SDM
|
|
11287
11613
|
name: nil,
|
11288
11614
|
password: nil,
|
11289
11615
|
port_override: nil,
|
11616
|
+
proxy_cluster_id: nil,
|
11290
11617
|
schema: nil,
|
11291
11618
|
secret_store_id: nil,
|
11292
11619
|
subdomain: nil,
|
@@ -11302,6 +11629,7 @@ module SDM
|
|
11302
11629
|
@name = name == nil ? "" : name
|
11303
11630
|
@password = password == nil ? "" : password
|
11304
11631
|
@port_override = port_override == nil ? 0 : port_override
|
11632
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11305
11633
|
@schema = schema == nil ? "" : schema
|
11306
11634
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11307
11635
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -11333,6 +11661,8 @@ module SDM
|
|
11333
11661
|
attr_accessor :name
|
11334
11662
|
# The local port used by clients to connect to this resource.
|
11335
11663
|
attr_accessor :port_override
|
11664
|
+
# ID of the proxy cluster for this resource, if any.
|
11665
|
+
attr_accessor :proxy_cluster_id
|
11336
11666
|
# The Metadata for your snowflake IDP integration
|
11337
11667
|
attr_accessor :samlmetadata
|
11338
11668
|
# ID of the secret store containing credentials for this resource, if any.
|
@@ -11350,6 +11680,7 @@ module SDM
|
|
11350
11680
|
id: nil,
|
11351
11681
|
name: nil,
|
11352
11682
|
port_override: nil,
|
11683
|
+
proxy_cluster_id: nil,
|
11353
11684
|
samlmetadata: nil,
|
11354
11685
|
secret_store_id: nil,
|
11355
11686
|
subdomain: nil,
|
@@ -11362,6 +11693,7 @@ module SDM
|
|
11362
11693
|
@id = id == nil ? "" : id
|
11363
11694
|
@name = name == nil ? "" : name
|
11364
11695
|
@port_override = port_override == nil ? 0 : port_override
|
11696
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11365
11697
|
@samlmetadata = samlmetadata == nil ? "" : samlmetadata
|
11366
11698
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11367
11699
|
@subdomain = subdomain == nil ? "" : subdomain
|
@@ -11396,6 +11728,8 @@ module SDM
|
|
11396
11728
|
attr_accessor :port
|
11397
11729
|
# The local port used by clients to connect to this resource.
|
11398
11730
|
attr_accessor :port_override
|
11731
|
+
# ID of the proxy cluster for this resource, if any.
|
11732
|
+
attr_accessor :proxy_cluster_id
|
11399
11733
|
# ID of the secret store containing credentials for this resource, if any.
|
11400
11734
|
attr_accessor :secret_store_id
|
11401
11735
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -11415,6 +11749,7 @@ module SDM
|
|
11415
11749
|
password: nil,
|
11416
11750
|
port: nil,
|
11417
11751
|
port_override: nil,
|
11752
|
+
proxy_cluster_id: nil,
|
11418
11753
|
secret_store_id: nil,
|
11419
11754
|
subdomain: nil,
|
11420
11755
|
tags: nil,
|
@@ -11429,6 +11764,7 @@ module SDM
|
|
11429
11764
|
@password = password == nil ? "" : password
|
11430
11765
|
@port = port == nil ? 0 : port
|
11431
11766
|
@port_override = port_override == nil ? 0 : port_override
|
11767
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11432
11768
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11433
11769
|
@subdomain = subdomain == nil ? "" : subdomain
|
11434
11770
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -11463,6 +11799,8 @@ module SDM
|
|
11463
11799
|
attr_accessor :port
|
11464
11800
|
# The local port used by clients to connect to this resource.
|
11465
11801
|
attr_accessor :port_override
|
11802
|
+
# ID of the proxy cluster for this resource, if any.
|
11803
|
+
attr_accessor :proxy_cluster_id
|
11466
11804
|
# ID of the secret store containing credentials for this resource, if any.
|
11467
11805
|
attr_accessor :secret_store_id
|
11468
11806
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -11482,6 +11820,7 @@ module SDM
|
|
11482
11820
|
password: nil,
|
11483
11821
|
port: nil,
|
11484
11822
|
port_override: nil,
|
11823
|
+
proxy_cluster_id: nil,
|
11485
11824
|
secret_store_id: nil,
|
11486
11825
|
subdomain: nil,
|
11487
11826
|
tags: nil,
|
@@ -11496,6 +11835,7 @@ module SDM
|
|
11496
11835
|
@password = password == nil ? "" : password
|
11497
11836
|
@port = port == nil ? 0 : port
|
11498
11837
|
@port_override = port_override == nil ? 0 : port_override
|
11838
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11499
11839
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11500
11840
|
@subdomain = subdomain == nil ? "" : subdomain
|
11501
11841
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -11553,6 +11893,8 @@ module SDM
|
|
11553
11893
|
attr_accessor :port
|
11554
11894
|
# The local port used by clients to connect to this resource.
|
11555
11895
|
attr_accessor :port_override
|
11896
|
+
# ID of the proxy cluster for this resource, if any.
|
11897
|
+
attr_accessor :proxy_cluster_id
|
11556
11898
|
# ID of the secret store containing credentials for this resource, if any.
|
11557
11899
|
attr_accessor :secret_store_id
|
11558
11900
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -11572,6 +11914,7 @@ module SDM
|
|
11572
11914
|
password: nil,
|
11573
11915
|
port: nil,
|
11574
11916
|
port_override: nil,
|
11917
|
+
proxy_cluster_id: nil,
|
11575
11918
|
secret_store_id: nil,
|
11576
11919
|
subdomain: nil,
|
11577
11920
|
tags: nil,
|
@@ -11586,6 +11929,7 @@ module SDM
|
|
11586
11929
|
@password = password == nil ? "" : password
|
11587
11930
|
@port = port == nil ? 0 : port
|
11588
11931
|
@port_override = port_override == nil ? 0 : port_override
|
11932
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11589
11933
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11590
11934
|
@subdomain = subdomain == nil ? "" : subdomain
|
11591
11935
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
@@ -11676,6 +12020,8 @@ module SDM
|
|
11676
12020
|
attr_accessor :port
|
11677
12021
|
# The local port used by clients to connect to this resource.
|
11678
12022
|
attr_accessor :port_override
|
12023
|
+
# ID of the proxy cluster for this resource, if any.
|
12024
|
+
attr_accessor :proxy_cluster_id
|
11679
12025
|
# ID of the secret store containing credentials for this resource, if any.
|
11680
12026
|
attr_accessor :secret_store_id
|
11681
12027
|
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
@@ -11696,6 +12042,7 @@ module SDM
|
|
11696
12042
|
password: nil,
|
11697
12043
|
port: nil,
|
11698
12044
|
port_override: nil,
|
12045
|
+
proxy_cluster_id: nil,
|
11699
12046
|
secret_store_id: nil,
|
11700
12047
|
subdomain: nil,
|
11701
12048
|
tags: nil,
|
@@ -11711,6 +12058,7 @@ module SDM
|
|
11711
12058
|
@password = password == nil ? "" : password
|
11712
12059
|
@port = port == nil ? 0 : port
|
11713
12060
|
@port_override = port_override == nil ? 0 : port_override
|
12061
|
+
@proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
|
11714
12062
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
11715
12063
|
@subdomain = subdomain == nil ? "" : subdomain
|
11716
12064
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|