@pierskarsenbarg/sdm 1.18.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/resource.d.ts +0 -9
- package/resource.js.map +1 -1
- package/types/input.d.ts +348 -0
- package/types/output.d.ts +697 -1
package/types/input.d.ts
CHANGED
|
@@ -220,6 +220,10 @@ export interface ResourceAks {
|
|
|
220
220
|
* The local port used by clients to connect to this resource.
|
|
221
221
|
*/
|
|
222
222
|
portOverride?: pulumi.Input<number>;
|
|
223
|
+
/**
|
|
224
|
+
* ID of the proxy cluster for this resource, if any.
|
|
225
|
+
*/
|
|
226
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
223
227
|
/**
|
|
224
228
|
* ID of the secret store containing credentials for this resource, if any.
|
|
225
229
|
*/
|
|
@@ -268,6 +272,10 @@ export interface ResourceAksBasicAuth {
|
|
|
268
272
|
* The local port used by clients to connect to this resource.
|
|
269
273
|
*/
|
|
270
274
|
portOverride?: pulumi.Input<number>;
|
|
275
|
+
/**
|
|
276
|
+
* ID of the proxy cluster for this resource, if any.
|
|
277
|
+
*/
|
|
278
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
271
279
|
/**
|
|
272
280
|
* ID of the secret store containing credentials for this resource, if any.
|
|
273
281
|
*/
|
|
@@ -336,6 +344,10 @@ export interface ResourceAksServiceAccount {
|
|
|
336
344
|
* The local port used by clients to connect to this resource.
|
|
337
345
|
*/
|
|
338
346
|
portOverride?: pulumi.Input<number>;
|
|
347
|
+
/**
|
|
348
|
+
* ID of the proxy cluster for this resource, if any.
|
|
349
|
+
*/
|
|
350
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
339
351
|
/**
|
|
340
352
|
* ID of the secret store containing credentials for this resource, if any.
|
|
341
353
|
*/
|
|
@@ -385,6 +397,10 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
385
397
|
* The local port used by clients to connect to this resource.
|
|
386
398
|
*/
|
|
387
399
|
portOverride?: pulumi.Input<number>;
|
|
400
|
+
/**
|
|
401
|
+
* ID of the proxy cluster for this resource, if any.
|
|
402
|
+
*/
|
|
403
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
388
404
|
/**
|
|
389
405
|
* ID of the secret store containing credentials for this resource, if any.
|
|
390
406
|
*/
|
|
@@ -446,6 +462,10 @@ export interface ResourceAksUserImpersonation {
|
|
|
446
462
|
* The local port used by clients to connect to this resource.
|
|
447
463
|
*/
|
|
448
464
|
portOverride?: pulumi.Input<number>;
|
|
465
|
+
/**
|
|
466
|
+
* ID of the proxy cluster for this resource, if any.
|
|
467
|
+
*/
|
|
468
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
449
469
|
/**
|
|
450
470
|
* ID of the secret store containing credentials for this resource, if any.
|
|
451
471
|
*/
|
|
@@ -518,6 +538,10 @@ export interface ResourceAmazonEks {
|
|
|
518
538
|
* The local port used by clients to connect to this resource.
|
|
519
539
|
*/
|
|
520
540
|
portOverride?: pulumi.Input<number>;
|
|
541
|
+
/**
|
|
542
|
+
* ID of the proxy cluster for this resource, if any.
|
|
543
|
+
*/
|
|
544
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
521
545
|
/**
|
|
522
546
|
* The AWS region to connect to.
|
|
523
547
|
*/
|
|
@@ -602,6 +626,10 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
602
626
|
* The local port used by clients to connect to this resource.
|
|
603
627
|
*/
|
|
604
628
|
portOverride?: pulumi.Input<number>;
|
|
629
|
+
/**
|
|
630
|
+
* ID of the proxy cluster for this resource, if any.
|
|
631
|
+
*/
|
|
632
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
605
633
|
/**
|
|
606
634
|
* The AWS region to connect to.
|
|
607
635
|
*/
|
|
@@ -662,6 +690,10 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
662
690
|
* The local port used by clients to connect to this resource.
|
|
663
691
|
*/
|
|
664
692
|
portOverride?: pulumi.Input<number>;
|
|
693
|
+
/**
|
|
694
|
+
* ID of the proxy cluster for this resource, if any.
|
|
695
|
+
*/
|
|
696
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
665
697
|
/**
|
|
666
698
|
* The AWS region to connect to.
|
|
667
699
|
*/
|
|
@@ -726,6 +758,10 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
726
758
|
* The local port used by clients to connect to this resource.
|
|
727
759
|
*/
|
|
728
760
|
portOverride?: pulumi.Input<number>;
|
|
761
|
+
/**
|
|
762
|
+
* ID of the proxy cluster for this resource, if any.
|
|
763
|
+
*/
|
|
764
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
729
765
|
/**
|
|
730
766
|
* The AWS region to connect to.
|
|
731
767
|
*/
|
|
@@ -782,6 +818,10 @@ export interface ResourceAmazonEs {
|
|
|
782
818
|
* The local port used by clients to connect to this resource.
|
|
783
819
|
*/
|
|
784
820
|
portOverride?: pulumi.Input<number>;
|
|
821
|
+
/**
|
|
822
|
+
* ID of the proxy cluster for this resource, if any.
|
|
823
|
+
*/
|
|
824
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
785
825
|
/**
|
|
786
826
|
* The AWS region to connect to.
|
|
787
827
|
*/
|
|
@@ -842,6 +882,10 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
842
882
|
* The local port used by clients to connect to this resource.
|
|
843
883
|
*/
|
|
844
884
|
portOverride?: pulumi.Input<number>;
|
|
885
|
+
/**
|
|
886
|
+
* ID of the proxy cluster for this resource, if any.
|
|
887
|
+
*/
|
|
888
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
845
889
|
/**
|
|
846
890
|
* ID of the secret store containing credentials for this resource, if any.
|
|
847
891
|
*/
|
|
@@ -890,6 +934,10 @@ export interface ResourceAthena {
|
|
|
890
934
|
* The local port used by clients to connect to this resource.
|
|
891
935
|
*/
|
|
892
936
|
portOverride?: pulumi.Input<number>;
|
|
937
|
+
/**
|
|
938
|
+
* ID of the proxy cluster for this resource, if any.
|
|
939
|
+
*/
|
|
940
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
893
941
|
/**
|
|
894
942
|
* The AWS region to connect to.
|
|
895
943
|
*/
|
|
@@ -954,6 +1002,10 @@ export interface ResourceAuroraMysql {
|
|
|
954
1002
|
* The local port used by clients to connect to this resource.
|
|
955
1003
|
*/
|
|
956
1004
|
portOverride?: pulumi.Input<number>;
|
|
1005
|
+
/**
|
|
1006
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1007
|
+
*/
|
|
1008
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
957
1009
|
/**
|
|
958
1010
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
959
1011
|
*/
|
|
@@ -1018,6 +1070,10 @@ export interface ResourceAuroraPostgres {
|
|
|
1018
1070
|
* The local port used by clients to connect to this resource.
|
|
1019
1071
|
*/
|
|
1020
1072
|
portOverride?: pulumi.Input<number>;
|
|
1073
|
+
/**
|
|
1074
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1075
|
+
*/
|
|
1076
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1021
1077
|
/**
|
|
1022
1078
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1023
1079
|
*/
|
|
@@ -1070,6 +1126,10 @@ export interface ResourceAuroraPostgresIam {
|
|
|
1070
1126
|
* The local port used by clients to connect to this resource.
|
|
1071
1127
|
*/
|
|
1072
1128
|
portOverride?: pulumi.Input<number>;
|
|
1129
|
+
/**
|
|
1130
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1131
|
+
*/
|
|
1132
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1073
1133
|
/**
|
|
1074
1134
|
* The AWS region to connect to.
|
|
1075
1135
|
*/
|
|
@@ -1122,6 +1182,10 @@ export interface ResourceAws {
|
|
|
1122
1182
|
* The local port used by clients to connect to this resource.
|
|
1123
1183
|
*/
|
|
1124
1184
|
portOverride?: pulumi.Input<number>;
|
|
1185
|
+
/**
|
|
1186
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1187
|
+
*/
|
|
1188
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1125
1189
|
/**
|
|
1126
1190
|
* The role to assume after logging in.
|
|
1127
1191
|
*/
|
|
@@ -1178,6 +1242,10 @@ export interface ResourceAwsConsole {
|
|
|
1178
1242
|
* The local port used by clients to connect to this resource.
|
|
1179
1243
|
*/
|
|
1180
1244
|
portOverride?: pulumi.Input<number>;
|
|
1245
|
+
/**
|
|
1246
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1247
|
+
*/
|
|
1248
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1181
1249
|
/**
|
|
1182
1250
|
* The AWS region to connect to.
|
|
1183
1251
|
*/
|
|
@@ -1238,6 +1306,10 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
1238
1306
|
* The local port used by clients to connect to this resource.
|
|
1239
1307
|
*/
|
|
1240
1308
|
portOverride?: pulumi.Input<number>;
|
|
1309
|
+
/**
|
|
1310
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1311
|
+
*/
|
|
1312
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1241
1313
|
/**
|
|
1242
1314
|
* The AWS region to connect to.
|
|
1243
1315
|
*/
|
|
@@ -1298,6 +1370,10 @@ export interface ResourceAzure {
|
|
|
1298
1370
|
* The local port used by clients to connect to this resource.
|
|
1299
1371
|
*/
|
|
1300
1372
|
portOverride?: pulumi.Input<number>;
|
|
1373
|
+
/**
|
|
1374
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1375
|
+
*/
|
|
1376
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1301
1377
|
/**
|
|
1302
1378
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1303
1379
|
*/
|
|
@@ -1343,6 +1419,10 @@ export interface ResourceAzureCertificate {
|
|
|
1343
1419
|
* The local port used by clients to connect to this resource.
|
|
1344
1420
|
*/
|
|
1345
1421
|
portOverride?: pulumi.Input<number>;
|
|
1422
|
+
/**
|
|
1423
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1424
|
+
*/
|
|
1425
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1346
1426
|
/**
|
|
1347
1427
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1348
1428
|
*/
|
|
@@ -1396,6 +1476,10 @@ export interface ResourceAzureMysql {
|
|
|
1396
1476
|
* The local port used by clients to connect to this resource.
|
|
1397
1477
|
*/
|
|
1398
1478
|
portOverride?: pulumi.Input<number>;
|
|
1479
|
+
/**
|
|
1480
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1481
|
+
*/
|
|
1482
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1399
1483
|
/**
|
|
1400
1484
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
1401
1485
|
*/
|
|
@@ -1460,6 +1544,10 @@ export interface ResourceAzurePostgres {
|
|
|
1460
1544
|
* The local port used by clients to connect to this resource.
|
|
1461
1545
|
*/
|
|
1462
1546
|
portOverride?: pulumi.Input<number>;
|
|
1547
|
+
/**
|
|
1548
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1549
|
+
*/
|
|
1550
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1463
1551
|
/**
|
|
1464
1552
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1465
1553
|
*/
|
|
@@ -1516,6 +1604,10 @@ export interface ResourceAzurePostgresManagedIdentity {
|
|
|
1516
1604
|
* The local port used by clients to connect to this resource.
|
|
1517
1605
|
*/
|
|
1518
1606
|
portOverride?: pulumi.Input<number>;
|
|
1607
|
+
/**
|
|
1608
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1609
|
+
*/
|
|
1610
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1519
1611
|
/**
|
|
1520
1612
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1521
1613
|
*/
|
|
@@ -1568,6 +1660,10 @@ export interface ResourceBigQuery {
|
|
|
1568
1660
|
* The project to connect to.
|
|
1569
1661
|
*/
|
|
1570
1662
|
project: pulumi.Input<string>;
|
|
1663
|
+
/**
|
|
1664
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1665
|
+
*/
|
|
1666
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1571
1667
|
/**
|
|
1572
1668
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1573
1669
|
*/
|
|
@@ -1616,6 +1712,10 @@ export interface ResourceCassandra {
|
|
|
1616
1712
|
* The local port used by clients to connect to this resource.
|
|
1617
1713
|
*/
|
|
1618
1714
|
portOverride?: pulumi.Input<number>;
|
|
1715
|
+
/**
|
|
1716
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1717
|
+
*/
|
|
1718
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1619
1719
|
/**
|
|
1620
1720
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1621
1721
|
*/
|
|
@@ -1676,6 +1776,10 @@ export interface ResourceCitus {
|
|
|
1676
1776
|
* The local port used by clients to connect to this resource.
|
|
1677
1777
|
*/
|
|
1678
1778
|
portOverride?: pulumi.Input<number>;
|
|
1779
|
+
/**
|
|
1780
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1781
|
+
*/
|
|
1782
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1679
1783
|
/**
|
|
1680
1784
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1681
1785
|
*/
|
|
@@ -1728,6 +1832,10 @@ export interface ResourceClustrix {
|
|
|
1728
1832
|
* The local port used by clients to connect to this resource.
|
|
1729
1833
|
*/
|
|
1730
1834
|
portOverride?: pulumi.Input<number>;
|
|
1835
|
+
/**
|
|
1836
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1837
|
+
*/
|
|
1838
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1731
1839
|
/**
|
|
1732
1840
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
1733
1841
|
*/
|
|
@@ -1792,6 +1900,10 @@ export interface ResourceCockroach {
|
|
|
1792
1900
|
* The local port used by clients to connect to this resource.
|
|
1793
1901
|
*/
|
|
1794
1902
|
portOverride?: pulumi.Input<number>;
|
|
1903
|
+
/**
|
|
1904
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1905
|
+
*/
|
|
1906
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1795
1907
|
/**
|
|
1796
1908
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1797
1909
|
*/
|
|
@@ -1844,6 +1956,10 @@ export interface ResourceCouchbaseDatabase {
|
|
|
1844
1956
|
* The local port used by clients to connect to this resource.
|
|
1845
1957
|
*/
|
|
1846
1958
|
portOverride?: pulumi.Input<number>;
|
|
1959
|
+
/**
|
|
1960
|
+
* ID of the proxy cluster for this resource, if any.
|
|
1961
|
+
*/
|
|
1962
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1847
1963
|
/**
|
|
1848
1964
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1849
1965
|
*/
|
|
@@ -1888,6 +2004,10 @@ export interface ResourceCouchbaseWebUi {
|
|
|
1888
2004
|
* The local port used by clients to connect to this resource.
|
|
1889
2005
|
*/
|
|
1890
2006
|
portOverride?: pulumi.Input<number>;
|
|
2007
|
+
/**
|
|
2008
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2009
|
+
*/
|
|
2010
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1891
2011
|
/**
|
|
1892
2012
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1893
2013
|
*/
|
|
@@ -1941,6 +2061,10 @@ export interface ResourceDb2I {
|
|
|
1941
2061
|
* The local port used by clients to connect to this resource.
|
|
1942
2062
|
*/
|
|
1943
2063
|
portOverride?: pulumi.Input<number>;
|
|
2064
|
+
/**
|
|
2065
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2066
|
+
*/
|
|
2067
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
1944
2068
|
/**
|
|
1945
2069
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1946
2070
|
*/
|
|
@@ -1997,6 +2121,10 @@ export interface ResourceDb2Luw {
|
|
|
1997
2121
|
* The local port used by clients to connect to this resource.
|
|
1998
2122
|
*/
|
|
1999
2123
|
portOverride?: pulumi.Input<number>;
|
|
2124
|
+
/**
|
|
2125
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2126
|
+
*/
|
|
2127
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2000
2128
|
/**
|
|
2001
2129
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2002
2130
|
*/
|
|
@@ -2049,6 +2177,10 @@ export interface ResourceDocumentDbHost {
|
|
|
2049
2177
|
* The local port used by clients to connect to this resource.
|
|
2050
2178
|
*/
|
|
2051
2179
|
portOverride?: pulumi.Input<number>;
|
|
2180
|
+
/**
|
|
2181
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2182
|
+
*/
|
|
2183
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2052
2184
|
/**
|
|
2053
2185
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2054
2186
|
*/
|
|
@@ -2101,6 +2233,10 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
2101
2233
|
* The local port used by clients to connect to this resource.
|
|
2102
2234
|
*/
|
|
2103
2235
|
portOverride?: pulumi.Input<number>;
|
|
2236
|
+
/**
|
|
2237
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2238
|
+
*/
|
|
2239
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2104
2240
|
/**
|
|
2105
2241
|
* The name of the mongo replicaset.
|
|
2106
2242
|
*/
|
|
@@ -2153,6 +2289,10 @@ export interface ResourceDruid {
|
|
|
2153
2289
|
* The local port used by clients to connect to this resource.
|
|
2154
2290
|
*/
|
|
2155
2291
|
portOverride?: pulumi.Input<number>;
|
|
2292
|
+
/**
|
|
2293
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2294
|
+
*/
|
|
2295
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2156
2296
|
/**
|
|
2157
2297
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2158
2298
|
*/
|
|
@@ -2197,6 +2337,10 @@ export interface ResourceDynamoDb {
|
|
|
2197
2337
|
* The local port used by clients to connect to this resource.
|
|
2198
2338
|
*/
|
|
2199
2339
|
portOverride?: pulumi.Input<number>;
|
|
2340
|
+
/**
|
|
2341
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2342
|
+
*/
|
|
2343
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2200
2344
|
/**
|
|
2201
2345
|
* The AWS region to connect to.
|
|
2202
2346
|
*/
|
|
@@ -2257,6 +2401,10 @@ export interface ResourceElastic {
|
|
|
2257
2401
|
* The local port used by clients to connect to this resource.
|
|
2258
2402
|
*/
|
|
2259
2403
|
portOverride?: pulumi.Input<number>;
|
|
2404
|
+
/**
|
|
2405
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2406
|
+
*/
|
|
2407
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2260
2408
|
/**
|
|
2261
2409
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2262
2410
|
*/
|
|
@@ -2309,6 +2457,10 @@ export interface ResourceElasticacheRedis {
|
|
|
2309
2457
|
* The local port used by clients to connect to this resource.
|
|
2310
2458
|
*/
|
|
2311
2459
|
portOverride?: pulumi.Input<number>;
|
|
2460
|
+
/**
|
|
2461
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2462
|
+
*/
|
|
2463
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2312
2464
|
/**
|
|
2313
2465
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2314
2466
|
*/
|
|
@@ -2353,6 +2505,10 @@ export interface ResourceGcp {
|
|
|
2353
2505
|
* The local port used by clients to connect to this resource.
|
|
2354
2506
|
*/
|
|
2355
2507
|
portOverride?: pulumi.Input<number>;
|
|
2508
|
+
/**
|
|
2509
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2510
|
+
*/
|
|
2511
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2356
2512
|
/**
|
|
2357
2513
|
* Space separated scopes that this login should assume into when authenticating.
|
|
2358
2514
|
*/
|
|
@@ -2421,6 +2577,10 @@ export interface ResourceGoogleGke {
|
|
|
2421
2577
|
* The local port used by clients to connect to this resource.
|
|
2422
2578
|
*/
|
|
2423
2579
|
portOverride?: pulumi.Input<number>;
|
|
2580
|
+
/**
|
|
2581
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2582
|
+
*/
|
|
2583
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2424
2584
|
/**
|
|
2425
2585
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2426
2586
|
*/
|
|
@@ -2469,6 +2629,10 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
2469
2629
|
* The local port used by clients to connect to this resource.
|
|
2470
2630
|
*/
|
|
2471
2631
|
portOverride?: pulumi.Input<number>;
|
|
2632
|
+
/**
|
|
2633
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2634
|
+
*/
|
|
2635
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2472
2636
|
/**
|
|
2473
2637
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2474
2638
|
*/
|
|
@@ -2525,6 +2689,10 @@ export interface ResourceGreenplum {
|
|
|
2525
2689
|
* The local port used by clients to connect to this resource.
|
|
2526
2690
|
*/
|
|
2527
2691
|
portOverride?: pulumi.Input<number>;
|
|
2692
|
+
/**
|
|
2693
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2694
|
+
*/
|
|
2695
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2528
2696
|
/**
|
|
2529
2697
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2530
2698
|
*/
|
|
@@ -2577,6 +2745,10 @@ export interface ResourceHttpAuth {
|
|
|
2577
2745
|
* Unique human-readable name of the Resource.
|
|
2578
2746
|
*/
|
|
2579
2747
|
name: pulumi.Input<string>;
|
|
2748
|
+
/**
|
|
2749
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2750
|
+
*/
|
|
2751
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2580
2752
|
/**
|
|
2581
2753
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2582
2754
|
*/
|
|
@@ -2630,6 +2802,10 @@ export interface ResourceHttpBasicAuth {
|
|
|
2630
2802
|
* The password to authenticate with.
|
|
2631
2803
|
*/
|
|
2632
2804
|
password?: pulumi.Input<string>;
|
|
2805
|
+
/**
|
|
2806
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2807
|
+
*/
|
|
2808
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2633
2809
|
/**
|
|
2634
2810
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2635
2811
|
*/
|
|
@@ -2683,6 +2859,10 @@ export interface ResourceHttpNoAuth {
|
|
|
2683
2859
|
* Unique human-readable name of the Resource.
|
|
2684
2860
|
*/
|
|
2685
2861
|
name: pulumi.Input<string>;
|
|
2862
|
+
/**
|
|
2863
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2864
|
+
*/
|
|
2865
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2686
2866
|
/**
|
|
2687
2867
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2688
2868
|
*/
|
|
@@ -2764,6 +2944,10 @@ export interface ResourceKubernetes {
|
|
|
2764
2944
|
* The local port used by clients to connect to this resource.
|
|
2765
2945
|
*/
|
|
2766
2946
|
portOverride?: pulumi.Input<number>;
|
|
2947
|
+
/**
|
|
2948
|
+
* ID of the proxy cluster for this resource, if any.
|
|
2949
|
+
*/
|
|
2950
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2767
2951
|
/**
|
|
2768
2952
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2769
2953
|
*/
|
|
@@ -2812,6 +2996,10 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
2812
2996
|
* The local port used by clients to connect to this resource.
|
|
2813
2997
|
*/
|
|
2814
2998
|
portOverride?: pulumi.Input<number>;
|
|
2999
|
+
/**
|
|
3000
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3001
|
+
*/
|
|
3002
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2815
3003
|
/**
|
|
2816
3004
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2817
3005
|
*/
|
|
@@ -2880,6 +3068,10 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
2880
3068
|
* The local port used by clients to connect to this resource.
|
|
2881
3069
|
*/
|
|
2882
3070
|
portOverride?: pulumi.Input<number>;
|
|
3071
|
+
/**
|
|
3072
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3073
|
+
*/
|
|
3074
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2883
3075
|
/**
|
|
2884
3076
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2885
3077
|
*/
|
|
@@ -2929,6 +3121,10 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
2929
3121
|
* The local port used by clients to connect to this resource.
|
|
2930
3122
|
*/
|
|
2931
3123
|
portOverride?: pulumi.Input<number>;
|
|
3124
|
+
/**
|
|
3125
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3126
|
+
*/
|
|
3127
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2932
3128
|
/**
|
|
2933
3129
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2934
3130
|
*/
|
|
@@ -2990,6 +3186,10 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
2990
3186
|
* The local port used by clients to connect to this resource.
|
|
2991
3187
|
*/
|
|
2992
3188
|
portOverride?: pulumi.Input<number>;
|
|
3189
|
+
/**
|
|
3190
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3191
|
+
*/
|
|
3192
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
2993
3193
|
/**
|
|
2994
3194
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2995
3195
|
*/
|
|
@@ -3038,6 +3238,10 @@ export interface ResourceMaria {
|
|
|
3038
3238
|
* The local port used by clients to connect to this resource.
|
|
3039
3239
|
*/
|
|
3040
3240
|
portOverride?: pulumi.Input<number>;
|
|
3241
|
+
/**
|
|
3242
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3243
|
+
*/
|
|
3244
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3041
3245
|
/**
|
|
3042
3246
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
3043
3247
|
*/
|
|
@@ -3090,6 +3294,10 @@ export interface ResourceMemcached {
|
|
|
3090
3294
|
* The local port used by clients to connect to this resource.
|
|
3091
3295
|
*/
|
|
3092
3296
|
portOverride?: pulumi.Input<number>;
|
|
3297
|
+
/**
|
|
3298
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3299
|
+
*/
|
|
3300
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3093
3301
|
/**
|
|
3094
3302
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3095
3303
|
*/
|
|
@@ -3138,6 +3346,10 @@ export interface ResourceMemsql {
|
|
|
3138
3346
|
* The local port used by clients to connect to this resource.
|
|
3139
3347
|
*/
|
|
3140
3348
|
portOverride?: pulumi.Input<number>;
|
|
3349
|
+
/**
|
|
3350
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3351
|
+
*/
|
|
3352
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3141
3353
|
/**
|
|
3142
3354
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
3143
3355
|
*/
|
|
@@ -3198,6 +3410,10 @@ export interface ResourceMongoHost {
|
|
|
3198
3410
|
* The local port used by clients to connect to this resource.
|
|
3199
3411
|
*/
|
|
3200
3412
|
portOverride?: pulumi.Input<number>;
|
|
3413
|
+
/**
|
|
3414
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3415
|
+
*/
|
|
3416
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3201
3417
|
/**
|
|
3202
3418
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3203
3419
|
*/
|
|
@@ -3254,6 +3470,10 @@ export interface ResourceMongoLegacyHost {
|
|
|
3254
3470
|
* The local port used by clients to connect to this resource.
|
|
3255
3471
|
*/
|
|
3256
3472
|
portOverride?: pulumi.Input<number>;
|
|
3473
|
+
/**
|
|
3474
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3475
|
+
*/
|
|
3476
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3257
3477
|
/**
|
|
3258
3478
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3259
3479
|
*/
|
|
@@ -3314,6 +3534,10 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
3314
3534
|
* The local port used by clients to connect to this resource.
|
|
3315
3535
|
*/
|
|
3316
3536
|
portOverride?: pulumi.Input<number>;
|
|
3537
|
+
/**
|
|
3538
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3539
|
+
*/
|
|
3540
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3317
3541
|
/**
|
|
3318
3542
|
* The name of the mongo replicaset.
|
|
3319
3543
|
*/
|
|
@@ -3378,6 +3602,10 @@ export interface ResourceMongoReplicaSet {
|
|
|
3378
3602
|
* The local port used by clients to connect to this resource.
|
|
3379
3603
|
*/
|
|
3380
3604
|
portOverride?: pulumi.Input<number>;
|
|
3605
|
+
/**
|
|
3606
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3607
|
+
*/
|
|
3608
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3381
3609
|
/**
|
|
3382
3610
|
* The name of the mongo replicaset.
|
|
3383
3611
|
*/
|
|
@@ -3434,6 +3662,10 @@ export interface ResourceMongoShardedCluster {
|
|
|
3434
3662
|
* The local port used by clients to connect to this resource.
|
|
3435
3663
|
*/
|
|
3436
3664
|
portOverride?: pulumi.Input<number>;
|
|
3665
|
+
/**
|
|
3666
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3667
|
+
*/
|
|
3668
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3437
3669
|
/**
|
|
3438
3670
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3439
3671
|
*/
|
|
@@ -3502,6 +3734,10 @@ export interface ResourceMtlsMysql {
|
|
|
3502
3734
|
* The local port used by clients to connect to this resource.
|
|
3503
3735
|
*/
|
|
3504
3736
|
portOverride?: pulumi.Input<number>;
|
|
3737
|
+
/**
|
|
3738
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3739
|
+
*/
|
|
3740
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3505
3741
|
/**
|
|
3506
3742
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
3507
3743
|
*/
|
|
@@ -3582,6 +3818,10 @@ export interface ResourceMtlsPostgres {
|
|
|
3582
3818
|
* The local port used by clients to connect to this resource.
|
|
3583
3819
|
*/
|
|
3584
3820
|
portOverride?: pulumi.Input<number>;
|
|
3821
|
+
/**
|
|
3822
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3823
|
+
*/
|
|
3824
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3585
3825
|
/**
|
|
3586
3826
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3587
3827
|
*/
|
|
@@ -3638,6 +3878,10 @@ export interface ResourceMysql {
|
|
|
3638
3878
|
* The local port used by clients to connect to this resource.
|
|
3639
3879
|
*/
|
|
3640
3880
|
portOverride?: pulumi.Input<number>;
|
|
3881
|
+
/**
|
|
3882
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3883
|
+
*/
|
|
3884
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3641
3885
|
/**
|
|
3642
3886
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
3643
3887
|
*/
|
|
@@ -3690,6 +3934,10 @@ export interface ResourceNeptune {
|
|
|
3690
3934
|
* The local port used by clients to connect to this resource.
|
|
3691
3935
|
*/
|
|
3692
3936
|
portOverride?: pulumi.Input<number>;
|
|
3937
|
+
/**
|
|
3938
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3939
|
+
*/
|
|
3940
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3693
3941
|
/**
|
|
3694
3942
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3695
3943
|
*/
|
|
@@ -3734,6 +3982,10 @@ export interface ResourceNeptuneIam {
|
|
|
3734
3982
|
* The local port used by clients to connect to this resource.
|
|
3735
3983
|
*/
|
|
3736
3984
|
portOverride?: pulumi.Input<number>;
|
|
3985
|
+
/**
|
|
3986
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3987
|
+
*/
|
|
3988
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3737
3989
|
/**
|
|
3738
3990
|
* The AWS region to connect to.
|
|
3739
3991
|
*/
|
|
@@ -3798,6 +4050,10 @@ export interface ResourceOracle {
|
|
|
3798
4050
|
* The local port used by clients to connect to this resource.
|
|
3799
4051
|
*/
|
|
3800
4052
|
portOverride?: pulumi.Input<number>;
|
|
4053
|
+
/**
|
|
4054
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4055
|
+
*/
|
|
4056
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3801
4057
|
/**
|
|
3802
4058
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3803
4059
|
*/
|
|
@@ -3858,6 +4114,10 @@ export interface ResourcePostgres {
|
|
|
3858
4114
|
* The local port used by clients to connect to this resource.
|
|
3859
4115
|
*/
|
|
3860
4116
|
portOverride?: pulumi.Input<number>;
|
|
4117
|
+
/**
|
|
4118
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4119
|
+
*/
|
|
4120
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3861
4121
|
/**
|
|
3862
4122
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3863
4123
|
*/
|
|
@@ -3910,6 +4170,10 @@ export interface ResourcePresto {
|
|
|
3910
4170
|
* The local port used by clients to connect to this resource.
|
|
3911
4171
|
*/
|
|
3912
4172
|
portOverride?: pulumi.Input<number>;
|
|
4173
|
+
/**
|
|
4174
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4175
|
+
*/
|
|
4176
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3913
4177
|
/**
|
|
3914
4178
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3915
4179
|
*/
|
|
@@ -3962,6 +4226,10 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
3962
4226
|
* The local port used by clients to connect to this resource.
|
|
3963
4227
|
*/
|
|
3964
4228
|
portOverride?: pulumi.Input<number>;
|
|
4229
|
+
/**
|
|
4230
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4231
|
+
*/
|
|
4232
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
3965
4233
|
/**
|
|
3966
4234
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3967
4235
|
*/
|
|
@@ -4010,6 +4278,10 @@ export interface ResourceRawTcp {
|
|
|
4010
4278
|
* The local port used by clients to connect to this resource.
|
|
4011
4279
|
*/
|
|
4012
4280
|
portOverride?: pulumi.Input<number>;
|
|
4281
|
+
/**
|
|
4282
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4283
|
+
*/
|
|
4284
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4013
4285
|
/**
|
|
4014
4286
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4015
4287
|
*/
|
|
@@ -4062,6 +4334,10 @@ export interface ResourceRdp {
|
|
|
4062
4334
|
* The local port used by clients to connect to this resource.
|
|
4063
4335
|
*/
|
|
4064
4336
|
portOverride?: pulumi.Input<number>;
|
|
4337
|
+
/**
|
|
4338
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4339
|
+
*/
|
|
4340
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4065
4341
|
/**
|
|
4066
4342
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4067
4343
|
*/
|
|
@@ -4114,6 +4390,10 @@ export interface ResourceRdpCert {
|
|
|
4114
4390
|
* The local port used by clients to connect to this resource.
|
|
4115
4391
|
*/
|
|
4116
4392
|
portOverride?: pulumi.Input<number>;
|
|
4393
|
+
/**
|
|
4394
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4395
|
+
*/
|
|
4396
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4117
4397
|
/**
|
|
4118
4398
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4119
4399
|
*/
|
|
@@ -4166,6 +4446,10 @@ export interface ResourceRdsPostgresIam {
|
|
|
4166
4446
|
* The local port used by clients to connect to this resource.
|
|
4167
4447
|
*/
|
|
4168
4448
|
portOverride?: pulumi.Input<number>;
|
|
4449
|
+
/**
|
|
4450
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4451
|
+
*/
|
|
4452
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4169
4453
|
/**
|
|
4170
4454
|
* The AWS region to connect to.
|
|
4171
4455
|
*/
|
|
@@ -4222,6 +4506,10 @@ export interface ResourceRedis {
|
|
|
4222
4506
|
* The local port used by clients to connect to this resource.
|
|
4223
4507
|
*/
|
|
4224
4508
|
portOverride?: pulumi.Input<number>;
|
|
4509
|
+
/**
|
|
4510
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4511
|
+
*/
|
|
4512
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4225
4513
|
/**
|
|
4226
4514
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4227
4515
|
*/
|
|
@@ -4282,6 +4570,10 @@ export interface ResourceRedshift {
|
|
|
4282
4570
|
* The local port used by clients to connect to this resource.
|
|
4283
4571
|
*/
|
|
4284
4572
|
portOverride?: pulumi.Input<number>;
|
|
4573
|
+
/**
|
|
4574
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4575
|
+
*/
|
|
4576
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4285
4577
|
/**
|
|
4286
4578
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4287
4579
|
*/
|
|
@@ -4334,6 +4626,10 @@ export interface ResourceSingleStore {
|
|
|
4334
4626
|
* The local port used by clients to connect to this resource.
|
|
4335
4627
|
*/
|
|
4336
4628
|
portOverride?: pulumi.Input<number>;
|
|
4629
|
+
/**
|
|
4630
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4631
|
+
*/
|
|
4632
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4337
4633
|
/**
|
|
4338
4634
|
* Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
|
|
4339
4635
|
*/
|
|
@@ -4390,6 +4686,10 @@ export interface ResourceSnowflake {
|
|
|
4390
4686
|
* The local port used by clients to connect to this resource.
|
|
4391
4687
|
*/
|
|
4392
4688
|
portOverride?: pulumi.Input<number>;
|
|
4689
|
+
/**
|
|
4690
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4691
|
+
*/
|
|
4692
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4393
4693
|
/**
|
|
4394
4694
|
* The Schema to use to direct initial requests.
|
|
4395
4695
|
*/
|
|
@@ -4434,6 +4734,10 @@ export interface ResourceSnowsight {
|
|
|
4434
4734
|
* The local port used by clients to connect to this resource.
|
|
4435
4735
|
*/
|
|
4436
4736
|
portOverride?: pulumi.Input<number>;
|
|
4737
|
+
/**
|
|
4738
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4739
|
+
*/
|
|
4740
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4437
4741
|
/**
|
|
4438
4742
|
* The Metadata for your snowflake IDP integration
|
|
4439
4743
|
*/
|
|
@@ -4494,6 +4798,10 @@ export interface ResourceSqlServer {
|
|
|
4494
4798
|
* The local port used by clients to connect to this resource.
|
|
4495
4799
|
*/
|
|
4496
4800
|
portOverride?: pulumi.Input<number>;
|
|
4801
|
+
/**
|
|
4802
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4803
|
+
*/
|
|
4804
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4497
4805
|
/**
|
|
4498
4806
|
* The Schema to use to direct initial requests.
|
|
4499
4807
|
*/
|
|
@@ -4558,6 +4866,10 @@ export interface ResourceSqlServerAzureAd {
|
|
|
4558
4866
|
* The local port used by clients to connect to this resource.
|
|
4559
4867
|
*/
|
|
4560
4868
|
portOverride?: pulumi.Input<number>;
|
|
4869
|
+
/**
|
|
4870
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4871
|
+
*/
|
|
4872
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4561
4873
|
/**
|
|
4562
4874
|
* The Schema to use to direct initial requests.
|
|
4563
4875
|
*/
|
|
@@ -4631,6 +4943,10 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
4631
4943
|
* The local port used by clients to connect to this resource.
|
|
4632
4944
|
*/
|
|
4633
4945
|
portOverride?: pulumi.Input<number>;
|
|
4946
|
+
/**
|
|
4947
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4948
|
+
*/
|
|
4949
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4634
4950
|
/**
|
|
4635
4951
|
* The Active Directory domain (realm) to which the configured username belongs.
|
|
4636
4952
|
*/
|
|
@@ -4699,6 +5015,10 @@ export interface ResourceSsh {
|
|
|
4699
5015
|
* The local port used by clients to connect to this resource.
|
|
4700
5016
|
*/
|
|
4701
5017
|
portOverride?: pulumi.Input<number>;
|
|
5018
|
+
/**
|
|
5019
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5020
|
+
*/
|
|
5021
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4702
5022
|
/**
|
|
4703
5023
|
* The public key to append to a server's authorized keys. This will be generated after resource creation.
|
|
4704
5024
|
*/
|
|
@@ -4767,6 +5087,10 @@ export interface ResourceSshCert {
|
|
|
4767
5087
|
* The local port used by clients to connect to this resource.
|
|
4768
5088
|
*/
|
|
4769
5089
|
portOverride?: pulumi.Input<number>;
|
|
5090
|
+
/**
|
|
5091
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5092
|
+
*/
|
|
5093
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4770
5094
|
/**
|
|
4771
5095
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4772
5096
|
*/
|
|
@@ -4823,6 +5147,10 @@ export interface ResourceSshCustomerKey {
|
|
|
4823
5147
|
* The private key used to authenticate with the server.
|
|
4824
5148
|
*/
|
|
4825
5149
|
privateKey?: pulumi.Input<string>;
|
|
5150
|
+
/**
|
|
5151
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5152
|
+
*/
|
|
5153
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4826
5154
|
/**
|
|
4827
5155
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4828
5156
|
*/
|
|
@@ -4879,6 +5207,10 @@ export interface ResourceSshPassword {
|
|
|
4879
5207
|
* The local port used by clients to connect to this resource.
|
|
4880
5208
|
*/
|
|
4881
5209
|
portOverride?: pulumi.Input<number>;
|
|
5210
|
+
/**
|
|
5211
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5212
|
+
*/
|
|
5213
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4882
5214
|
/**
|
|
4883
5215
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4884
5216
|
*/
|
|
@@ -4927,6 +5259,10 @@ export interface ResourceSybase {
|
|
|
4927
5259
|
* The local port used by clients to connect to this resource.
|
|
4928
5260
|
*/
|
|
4929
5261
|
portOverride?: pulumi.Input<number>;
|
|
5262
|
+
/**
|
|
5263
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5264
|
+
*/
|
|
5265
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4930
5266
|
/**
|
|
4931
5267
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4932
5268
|
*/
|
|
@@ -4975,6 +5311,10 @@ export interface ResourceSybaseIq {
|
|
|
4975
5311
|
* The local port used by clients to connect to this resource.
|
|
4976
5312
|
*/
|
|
4977
5313
|
portOverride?: pulumi.Input<number>;
|
|
5314
|
+
/**
|
|
5315
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5316
|
+
*/
|
|
5317
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4978
5318
|
/**
|
|
4979
5319
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4980
5320
|
*/
|
|
@@ -5023,6 +5363,10 @@ export interface ResourceTeradata {
|
|
|
5023
5363
|
* The local port used by clients to connect to this resource.
|
|
5024
5364
|
*/
|
|
5025
5365
|
portOverride?: pulumi.Input<number>;
|
|
5366
|
+
/**
|
|
5367
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5368
|
+
*/
|
|
5369
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
5026
5370
|
/**
|
|
5027
5371
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5028
5372
|
*/
|
|
@@ -5075,6 +5419,10 @@ export interface ResourceTrino {
|
|
|
5075
5419
|
* The local port used by clients to connect to this resource.
|
|
5076
5420
|
*/
|
|
5077
5421
|
portOverride?: pulumi.Input<number>;
|
|
5422
|
+
/**
|
|
5423
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5424
|
+
*/
|
|
5425
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
5078
5426
|
/**
|
|
5079
5427
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5080
5428
|
*/
|