@pierskarsenbarg/sdm 1.31.0 → 1.32.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/account.d.ts +3 -6
- package/account.js.map +1 -1
- package/accountGroup.d.ts +87 -0
- package/accountGroup.js +84 -0
- package/accountGroup.js.map +1 -0
- package/approvalWorkflow.d.ts +6 -0
- package/approvalWorkflow.js +6 -0
- package/approvalWorkflow.js.map +1 -1
- package/getAccount.d.ts +2 -2
- package/getAccountGroup.d.ts +101 -0
- package/getAccountGroup.js +66 -0
- package/getAccountGroup.js.map +1 -0
- package/getGroup.d.ts +127 -0
- package/getGroup.js +72 -0
- package/getGroup.js.map +1 -0
- package/getGroupRole.d.ts +101 -0
- package/getGroupRole.js +66 -0
- package/getGroupRole.js.map +1 -0
- package/getNode.d.ts +2 -2
- package/getResource.d.ts +2 -2
- package/getSecretEngine.d.ts +74 -2
- package/getSecretEngine.js +12 -0
- package/getSecretEngine.js.map +1 -1
- package/getSecretStore.d.ts +2 -2
- package/getWorkflow.d.ts +32 -0
- package/getWorkflow.js +32 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowRole.d.ts +10 -4
- package/getWorkflowRole.js +10 -4
- package/getWorkflowRole.js.map +1 -1
- package/group.d.ts +110 -0
- package/group.js +79 -0
- package/group.js.map +1 -0
- package/groupRole.d.ts +87 -0
- package/groupRole.js +84 -0
- package/groupRole.js.map +1 -0
- package/index.d.ts +18 -0
- package/index.js +26 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/resource.d.ts +15 -24
- package/resource.js +2 -0
- package/resource.js.map +1 -1
- package/role.d.ts +37 -0
- package/role.js +37 -0
- package/role.js.map +1 -1
- package/secretEngine.d.ts +9 -15
- package/secretEngine.js +2 -0
- package/secretEngine.js.map +1 -1
- package/secretStore.d.ts +3 -6
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +249 -117
- package/types/output.d.ts +539 -225
- package/workflow.d.ts +42 -0
- package/workflow.js +42 -0
- package/workflow.js.map +1 -1
- package/workflowRole.d.ts +6 -2
- package/workflowRole.js +6 -2
- package/workflowRole.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -81,15 +81,19 @@ export interface ApprovalWorkflowApprovalStep {
|
|
|
81
81
|
}
|
|
82
82
|
export interface ApprovalWorkflowApprovalStepApprover {
|
|
83
83
|
/**
|
|
84
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
84
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
85
85
|
*/
|
|
86
86
|
accountId?: pulumi.Input<string>;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
89
|
+
*/
|
|
90
|
+
groupId?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
89
93
|
*/
|
|
90
94
|
reference?: pulumi.Input<string>;
|
|
91
95
|
/**
|
|
92
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
96
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
93
97
|
*/
|
|
94
98
|
roleId?: pulumi.Input<string>;
|
|
95
99
|
}
|
|
@@ -123,29 +127,37 @@ export interface GetApprovalWorkflowApprovalStepArgs {
|
|
|
123
127
|
}
|
|
124
128
|
export interface GetApprovalWorkflowApprovalStepApprover {
|
|
125
129
|
/**
|
|
126
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
130
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
127
131
|
*/
|
|
128
132
|
accountId?: string;
|
|
129
133
|
/**
|
|
130
|
-
*
|
|
134
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
135
|
+
*/
|
|
136
|
+
groupId?: string;
|
|
137
|
+
/**
|
|
138
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
131
139
|
*/
|
|
132
140
|
reference?: string;
|
|
133
141
|
/**
|
|
134
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
142
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
135
143
|
*/
|
|
136
144
|
roleId?: string;
|
|
137
145
|
}
|
|
138
146
|
export interface GetApprovalWorkflowApprovalStepApproverArgs {
|
|
139
147
|
/**
|
|
140
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
148
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
141
149
|
*/
|
|
142
150
|
accountId?: pulumi.Input<string>;
|
|
143
151
|
/**
|
|
144
|
-
*
|
|
152
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
153
|
+
*/
|
|
154
|
+
groupId?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
145
157
|
*/
|
|
146
158
|
reference?: pulumi.Input<string>;
|
|
147
159
|
/**
|
|
148
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
160
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
149
161
|
*/
|
|
150
162
|
roleId?: pulumi.Input<string>;
|
|
151
163
|
}
|
|
@@ -293,7 +305,7 @@ export interface ResourceAerospike {
|
|
|
293
305
|
*/
|
|
294
306
|
secretStoreId?: pulumi.Input<string>;
|
|
295
307
|
/**
|
|
296
|
-
*
|
|
308
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
297
309
|
*/
|
|
298
310
|
subdomain?: pulumi.Input<string>;
|
|
299
311
|
/**
|
|
@@ -381,7 +393,7 @@ export interface ResourceAks {
|
|
|
381
393
|
*/
|
|
382
394
|
secretStoreId?: pulumi.Input<string>;
|
|
383
395
|
/**
|
|
384
|
-
*
|
|
396
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
385
397
|
*/
|
|
386
398
|
subdomain?: pulumi.Input<string>;
|
|
387
399
|
/**
|
|
@@ -433,7 +445,7 @@ export interface ResourceAksBasicAuth {
|
|
|
433
445
|
*/
|
|
434
446
|
secretStoreId?: pulumi.Input<string>;
|
|
435
447
|
/**
|
|
436
|
-
*
|
|
448
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
437
449
|
*/
|
|
438
450
|
subdomain?: pulumi.Input<string>;
|
|
439
451
|
/**
|
|
@@ -505,7 +517,7 @@ export interface ResourceAksServiceAccount {
|
|
|
505
517
|
*/
|
|
506
518
|
secretStoreId?: pulumi.Input<string>;
|
|
507
519
|
/**
|
|
508
|
-
*
|
|
520
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
509
521
|
*/
|
|
510
522
|
subdomain?: pulumi.Input<string>;
|
|
511
523
|
/**
|
|
@@ -558,7 +570,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
558
570
|
*/
|
|
559
571
|
secretStoreId?: pulumi.Input<string>;
|
|
560
572
|
/**
|
|
561
|
-
*
|
|
573
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
562
574
|
*/
|
|
563
575
|
subdomain?: pulumi.Input<string>;
|
|
564
576
|
/**
|
|
@@ -623,7 +635,7 @@ export interface ResourceAksUserImpersonation {
|
|
|
623
635
|
*/
|
|
624
636
|
secretStoreId?: pulumi.Input<string>;
|
|
625
637
|
/**
|
|
626
|
-
*
|
|
638
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
627
639
|
*/
|
|
628
640
|
subdomain?: pulumi.Input<string>;
|
|
629
641
|
/**
|
|
@@ -715,7 +727,7 @@ export interface ResourceAmazonEks {
|
|
|
715
727
|
*/
|
|
716
728
|
secretStoreId?: pulumi.Input<string>;
|
|
717
729
|
/**
|
|
718
|
-
*
|
|
730
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
719
731
|
*/
|
|
720
732
|
subdomain?: pulumi.Input<string>;
|
|
721
733
|
/**
|
|
@@ -799,7 +811,7 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
799
811
|
*/
|
|
800
812
|
secretStoreId?: pulumi.Input<string>;
|
|
801
813
|
/**
|
|
802
|
-
*
|
|
814
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
803
815
|
*/
|
|
804
816
|
subdomain?: pulumi.Input<string>;
|
|
805
817
|
/**
|
|
@@ -863,7 +875,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
863
875
|
*/
|
|
864
876
|
secretStoreId?: pulumi.Input<string>;
|
|
865
877
|
/**
|
|
866
|
-
*
|
|
878
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
867
879
|
*/
|
|
868
880
|
subdomain?: pulumi.Input<string>;
|
|
869
881
|
/**
|
|
@@ -935,7 +947,7 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
935
947
|
*/
|
|
936
948
|
secretStoreId?: pulumi.Input<string>;
|
|
937
949
|
/**
|
|
938
|
-
*
|
|
950
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
939
951
|
*/
|
|
940
952
|
subdomain?: pulumi.Input<string>;
|
|
941
953
|
/**
|
|
@@ -995,7 +1007,7 @@ export interface ResourceAmazonEs {
|
|
|
995
1007
|
*/
|
|
996
1008
|
secretStoreId?: pulumi.Input<string>;
|
|
997
1009
|
/**
|
|
998
|
-
*
|
|
1010
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
999
1011
|
*/
|
|
1000
1012
|
subdomain?: pulumi.Input<string>;
|
|
1001
1013
|
/**
|
|
@@ -1047,7 +1059,7 @@ export interface ResourceAmazonEsiam {
|
|
|
1047
1059
|
*/
|
|
1048
1060
|
secretStoreId?: pulumi.Input<string>;
|
|
1049
1061
|
/**
|
|
1050
|
-
*
|
|
1062
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1051
1063
|
*/
|
|
1052
1064
|
subdomain?: pulumi.Input<string>;
|
|
1053
1065
|
/**
|
|
@@ -1099,7 +1111,7 @@ export interface ResourceAmazonmqAmqp {
|
|
|
1099
1111
|
*/
|
|
1100
1112
|
secretStoreId?: pulumi.Input<string>;
|
|
1101
1113
|
/**
|
|
1102
|
-
*
|
|
1114
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1103
1115
|
*/
|
|
1104
1116
|
subdomain?: pulumi.Input<string>;
|
|
1105
1117
|
/**
|
|
@@ -1155,7 +1167,7 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
1155
1167
|
*/
|
|
1156
1168
|
secretStoreId?: pulumi.Input<string>;
|
|
1157
1169
|
/**
|
|
1158
|
-
*
|
|
1170
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1159
1171
|
*/
|
|
1160
1172
|
subdomain?: pulumi.Input<string>;
|
|
1161
1173
|
/**
|
|
@@ -1223,7 +1235,7 @@ export interface ResourceAthena {
|
|
|
1223
1235
|
*/
|
|
1224
1236
|
secretStoreId?: pulumi.Input<string>;
|
|
1225
1237
|
/**
|
|
1226
|
-
*
|
|
1238
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1227
1239
|
*/
|
|
1228
1240
|
subdomain?: pulumi.Input<string>;
|
|
1229
1241
|
/**
|
|
@@ -1275,7 +1287,7 @@ export interface ResourceAthenaIam {
|
|
|
1275
1287
|
*/
|
|
1276
1288
|
secretStoreId?: pulumi.Input<string>;
|
|
1277
1289
|
/**
|
|
1278
|
-
*
|
|
1290
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1279
1291
|
*/
|
|
1280
1292
|
subdomain?: pulumi.Input<string>;
|
|
1281
1293
|
/**
|
|
@@ -1331,7 +1343,7 @@ export interface ResourceAuroraMysql {
|
|
|
1331
1343
|
*/
|
|
1332
1344
|
secretStoreId?: pulumi.Input<string>;
|
|
1333
1345
|
/**
|
|
1334
|
-
*
|
|
1346
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1335
1347
|
*/
|
|
1336
1348
|
subdomain?: pulumi.Input<string>;
|
|
1337
1349
|
/**
|
|
@@ -1395,7 +1407,7 @@ export interface ResourceAuroraMysqlIam {
|
|
|
1395
1407
|
*/
|
|
1396
1408
|
secretStoreId?: pulumi.Input<string>;
|
|
1397
1409
|
/**
|
|
1398
|
-
*
|
|
1410
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1399
1411
|
*/
|
|
1400
1412
|
subdomain?: pulumi.Input<string>;
|
|
1401
1413
|
/**
|
|
@@ -1455,7 +1467,7 @@ export interface ResourceAuroraPostgres {
|
|
|
1455
1467
|
*/
|
|
1456
1468
|
secretStoreId?: pulumi.Input<string>;
|
|
1457
1469
|
/**
|
|
1458
|
-
*
|
|
1470
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1459
1471
|
*/
|
|
1460
1472
|
subdomain?: pulumi.Input<string>;
|
|
1461
1473
|
/**
|
|
@@ -1519,7 +1531,7 @@ export interface ResourceAuroraPostgresIam {
|
|
|
1519
1531
|
*/
|
|
1520
1532
|
secretStoreId?: pulumi.Input<string>;
|
|
1521
1533
|
/**
|
|
1522
|
-
*
|
|
1534
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1523
1535
|
*/
|
|
1524
1536
|
subdomain?: pulumi.Input<string>;
|
|
1525
1537
|
/**
|
|
@@ -1579,7 +1591,7 @@ export interface ResourceAws {
|
|
|
1579
1591
|
*/
|
|
1580
1592
|
secretStoreId?: pulumi.Input<string>;
|
|
1581
1593
|
/**
|
|
1582
|
-
*
|
|
1594
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1583
1595
|
*/
|
|
1584
1596
|
subdomain?: pulumi.Input<string>;
|
|
1585
1597
|
/**
|
|
@@ -1643,7 +1655,7 @@ export interface ResourceAwsConsole {
|
|
|
1643
1655
|
*/
|
|
1644
1656
|
sessionExpiry?: pulumi.Input<number>;
|
|
1645
1657
|
/**
|
|
1646
|
-
*
|
|
1658
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1647
1659
|
*/
|
|
1648
1660
|
subdomain: pulumi.Input<string>;
|
|
1649
1661
|
/**
|
|
@@ -1711,7 +1723,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
1711
1723
|
*/
|
|
1712
1724
|
sessionExpiry?: pulumi.Input<number>;
|
|
1713
1725
|
/**
|
|
1714
|
-
*
|
|
1726
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1715
1727
|
*/
|
|
1716
1728
|
subdomain: pulumi.Input<string>;
|
|
1717
1729
|
/**
|
|
@@ -1763,7 +1775,7 @@ export interface ResourceAwsInstanceProfile {
|
|
|
1763
1775
|
*/
|
|
1764
1776
|
secretStoreId?: pulumi.Input<string>;
|
|
1765
1777
|
/**
|
|
1766
|
-
*
|
|
1778
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1767
1779
|
*/
|
|
1768
1780
|
subdomain?: pulumi.Input<string>;
|
|
1769
1781
|
/**
|
|
@@ -1807,7 +1819,7 @@ export interface ResourceAzure {
|
|
|
1807
1819
|
*/
|
|
1808
1820
|
secretStoreId?: pulumi.Input<string>;
|
|
1809
1821
|
/**
|
|
1810
|
-
*
|
|
1822
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1811
1823
|
*/
|
|
1812
1824
|
subdomain?: pulumi.Input<string>;
|
|
1813
1825
|
/**
|
|
@@ -1856,7 +1868,7 @@ export interface ResourceAzureCertificate {
|
|
|
1856
1868
|
*/
|
|
1857
1869
|
secretStoreId?: pulumi.Input<string>;
|
|
1858
1870
|
/**
|
|
1859
|
-
*
|
|
1871
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1860
1872
|
*/
|
|
1861
1873
|
subdomain?: pulumi.Input<string>;
|
|
1862
1874
|
/**
|
|
@@ -1917,7 +1929,7 @@ export interface ResourceAzureMysql {
|
|
|
1917
1929
|
*/
|
|
1918
1930
|
secretStoreId?: pulumi.Input<string>;
|
|
1919
1931
|
/**
|
|
1920
|
-
*
|
|
1932
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1921
1933
|
*/
|
|
1922
1934
|
subdomain?: pulumi.Input<string>;
|
|
1923
1935
|
/**
|
|
@@ -1977,7 +1989,7 @@ export interface ResourceAzureMysqlManagedIdentity {
|
|
|
1977
1989
|
*/
|
|
1978
1990
|
secretStoreId?: pulumi.Input<string>;
|
|
1979
1991
|
/**
|
|
1980
|
-
*
|
|
1992
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
1981
1993
|
*/
|
|
1982
1994
|
subdomain?: pulumi.Input<string>;
|
|
1983
1995
|
/**
|
|
@@ -2041,7 +2053,7 @@ export interface ResourceAzurePostgres {
|
|
|
2041
2053
|
*/
|
|
2042
2054
|
secretStoreId?: pulumi.Input<string>;
|
|
2043
2055
|
/**
|
|
2044
|
-
*
|
|
2056
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2045
2057
|
*/
|
|
2046
2058
|
subdomain?: pulumi.Input<string>;
|
|
2047
2059
|
/**
|
|
@@ -2101,7 +2113,7 @@ export interface ResourceAzurePostgresManagedIdentity {
|
|
|
2101
2113
|
*/
|
|
2102
2114
|
secretStoreId?: pulumi.Input<string>;
|
|
2103
2115
|
/**
|
|
2104
|
-
*
|
|
2116
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2105
2117
|
*/
|
|
2106
2118
|
subdomain?: pulumi.Input<string>;
|
|
2107
2119
|
/**
|
|
@@ -2157,7 +2169,7 @@ export interface ResourceBigQuery {
|
|
|
2157
2169
|
*/
|
|
2158
2170
|
secretStoreId?: pulumi.Input<string>;
|
|
2159
2171
|
/**
|
|
2160
|
-
*
|
|
2172
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2161
2173
|
*/
|
|
2162
2174
|
subdomain?: pulumi.Input<string>;
|
|
2163
2175
|
/**
|
|
@@ -2209,7 +2221,7 @@ export interface ResourceCassandra {
|
|
|
2209
2221
|
*/
|
|
2210
2222
|
secretStoreId?: pulumi.Input<string>;
|
|
2211
2223
|
/**
|
|
2212
|
-
*
|
|
2224
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2213
2225
|
*/
|
|
2214
2226
|
subdomain?: pulumi.Input<string>;
|
|
2215
2227
|
/**
|
|
@@ -2273,7 +2285,7 @@ export interface ResourceCitus {
|
|
|
2273
2285
|
*/
|
|
2274
2286
|
secretStoreId?: pulumi.Input<string>;
|
|
2275
2287
|
/**
|
|
2276
|
-
*
|
|
2288
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2277
2289
|
*/
|
|
2278
2290
|
subdomain?: pulumi.Input<string>;
|
|
2279
2291
|
/**
|
|
@@ -2382,7 +2394,7 @@ export interface ResourceClickHouseMySql {
|
|
|
2382
2394
|
*/
|
|
2383
2395
|
secretStoreId?: pulumi.Input<string>;
|
|
2384
2396
|
/**
|
|
2385
|
-
*
|
|
2397
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2386
2398
|
*/
|
|
2387
2399
|
subdomain?: pulumi.Input<string>;
|
|
2388
2400
|
/**
|
|
@@ -2438,7 +2450,7 @@ export interface ResourceClickHouseTcp {
|
|
|
2438
2450
|
*/
|
|
2439
2451
|
secretStoreId?: pulumi.Input<string>;
|
|
2440
2452
|
/**
|
|
2441
|
-
*
|
|
2453
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2442
2454
|
*/
|
|
2443
2455
|
subdomain?: pulumi.Input<string>;
|
|
2444
2456
|
/**
|
|
@@ -2502,7 +2514,7 @@ export interface ResourceClustrix {
|
|
|
2502
2514
|
*/
|
|
2503
2515
|
secretStoreId?: pulumi.Input<string>;
|
|
2504
2516
|
/**
|
|
2505
|
-
*
|
|
2517
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2506
2518
|
*/
|
|
2507
2519
|
subdomain?: pulumi.Input<string>;
|
|
2508
2520
|
/**
|
|
@@ -2566,7 +2578,7 @@ export interface ResourceCockroach {
|
|
|
2566
2578
|
*/
|
|
2567
2579
|
secretStoreId?: pulumi.Input<string>;
|
|
2568
2580
|
/**
|
|
2569
|
-
*
|
|
2581
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2570
2582
|
*/
|
|
2571
2583
|
subdomain?: pulumi.Input<string>;
|
|
2572
2584
|
/**
|
|
@@ -2622,7 +2634,7 @@ export interface ResourceCouchbaseDatabase {
|
|
|
2622
2634
|
*/
|
|
2623
2635
|
secretStoreId?: pulumi.Input<string>;
|
|
2624
2636
|
/**
|
|
2625
|
-
*
|
|
2637
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2626
2638
|
*/
|
|
2627
2639
|
subdomain?: pulumi.Input<string>;
|
|
2628
2640
|
/**
|
|
@@ -2670,7 +2682,7 @@ export interface ResourceCouchbaseWebUi {
|
|
|
2670
2682
|
*/
|
|
2671
2683
|
secretStoreId?: pulumi.Input<string>;
|
|
2672
2684
|
/**
|
|
2673
|
-
*
|
|
2685
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2674
2686
|
*/
|
|
2675
2687
|
subdomain: pulumi.Input<string>;
|
|
2676
2688
|
/**
|
|
@@ -2727,7 +2739,7 @@ export interface ResourceDb2I {
|
|
|
2727
2739
|
*/
|
|
2728
2740
|
secretStoreId?: pulumi.Input<string>;
|
|
2729
2741
|
/**
|
|
2730
|
-
*
|
|
2742
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2731
2743
|
*/
|
|
2732
2744
|
subdomain?: pulumi.Input<string>;
|
|
2733
2745
|
/**
|
|
@@ -2787,7 +2799,7 @@ export interface ResourceDb2Luw {
|
|
|
2787
2799
|
*/
|
|
2788
2800
|
secretStoreId?: pulumi.Input<string>;
|
|
2789
2801
|
/**
|
|
2790
|
-
*
|
|
2802
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2791
2803
|
*/
|
|
2792
2804
|
subdomain?: pulumi.Input<string>;
|
|
2793
2805
|
/**
|
|
@@ -2847,7 +2859,7 @@ export interface ResourceDocumentDbHost {
|
|
|
2847
2859
|
*/
|
|
2848
2860
|
secretStoreId?: pulumi.Input<string>;
|
|
2849
2861
|
/**
|
|
2850
|
-
*
|
|
2862
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2851
2863
|
*/
|
|
2852
2864
|
subdomain?: pulumi.Input<string>;
|
|
2853
2865
|
/**
|
|
@@ -2899,7 +2911,7 @@ export interface ResourceDocumentDbHostIam {
|
|
|
2899
2911
|
*/
|
|
2900
2912
|
secretStoreId?: pulumi.Input<string>;
|
|
2901
2913
|
/**
|
|
2902
|
-
*
|
|
2914
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2903
2915
|
*/
|
|
2904
2916
|
subdomain?: pulumi.Input<string>;
|
|
2905
2917
|
/**
|
|
@@ -2955,7 +2967,7 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
2955
2967
|
*/
|
|
2956
2968
|
secretStoreId?: pulumi.Input<string>;
|
|
2957
2969
|
/**
|
|
2958
|
-
*
|
|
2970
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
2959
2971
|
*/
|
|
2960
2972
|
subdomain?: pulumi.Input<string>;
|
|
2961
2973
|
/**
|
|
@@ -3007,7 +3019,7 @@ export interface ResourceDocumentDbReplicaSetIam {
|
|
|
3007
3019
|
*/
|
|
3008
3020
|
secretStoreId?: pulumi.Input<string>;
|
|
3009
3021
|
/**
|
|
3010
|
-
*
|
|
3022
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3011
3023
|
*/
|
|
3012
3024
|
subdomain?: pulumi.Input<string>;
|
|
3013
3025
|
/**
|
|
@@ -3055,7 +3067,7 @@ export interface ResourceDruid {
|
|
|
3055
3067
|
*/
|
|
3056
3068
|
secretStoreId?: pulumi.Input<string>;
|
|
3057
3069
|
/**
|
|
3058
|
-
*
|
|
3070
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3059
3071
|
*/
|
|
3060
3072
|
subdomain?: pulumi.Input<string>;
|
|
3061
3073
|
/**
|
|
@@ -3119,7 +3131,7 @@ export interface ResourceDynamoDb {
|
|
|
3119
3131
|
*/
|
|
3120
3132
|
secretStoreId?: pulumi.Input<string>;
|
|
3121
3133
|
/**
|
|
3122
|
-
*
|
|
3134
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3123
3135
|
*/
|
|
3124
3136
|
subdomain?: pulumi.Input<string>;
|
|
3125
3137
|
/**
|
|
@@ -3171,7 +3183,7 @@ export interface ResourceDynamoDbiam {
|
|
|
3171
3183
|
*/
|
|
3172
3184
|
secretStoreId?: pulumi.Input<string>;
|
|
3173
3185
|
/**
|
|
3174
|
-
*
|
|
3186
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3175
3187
|
*/
|
|
3176
3188
|
subdomain?: pulumi.Input<string>;
|
|
3177
3189
|
/**
|
|
@@ -3219,7 +3231,7 @@ export interface ResourceElastic {
|
|
|
3219
3231
|
*/
|
|
3220
3232
|
secretStoreId?: pulumi.Input<string>;
|
|
3221
3233
|
/**
|
|
3222
|
-
*
|
|
3234
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3223
3235
|
*/
|
|
3224
3236
|
subdomain?: pulumi.Input<string>;
|
|
3225
3237
|
/**
|
|
@@ -3275,7 +3287,7 @@ export interface ResourceElasticacheRedis {
|
|
|
3275
3287
|
*/
|
|
3276
3288
|
secretStoreId?: pulumi.Input<string>;
|
|
3277
3289
|
/**
|
|
3278
|
-
*
|
|
3290
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3279
3291
|
*/
|
|
3280
3292
|
subdomain?: pulumi.Input<string>;
|
|
3281
3293
|
/**
|
|
@@ -3339,7 +3351,7 @@ export interface ResourceEntraId {
|
|
|
3339
3351
|
*/
|
|
3340
3352
|
secretStoreId?: pulumi.Input<string>;
|
|
3341
3353
|
/**
|
|
3342
|
-
*
|
|
3354
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3343
3355
|
*/
|
|
3344
3356
|
subdomain?: pulumi.Input<string>;
|
|
3345
3357
|
/**
|
|
@@ -3392,7 +3404,7 @@ export interface ResourceGcp {
|
|
|
3392
3404
|
*/
|
|
3393
3405
|
secretStoreId?: pulumi.Input<string>;
|
|
3394
3406
|
/**
|
|
3395
|
-
*
|
|
3407
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3396
3408
|
*/
|
|
3397
3409
|
subdomain?: pulumi.Input<string>;
|
|
3398
3410
|
/**
|
|
@@ -3440,7 +3452,7 @@ export interface ResourceGcpConsole {
|
|
|
3440
3452
|
*/
|
|
3441
3453
|
sessionExpiry?: pulumi.Input<number>;
|
|
3442
3454
|
/**
|
|
3443
|
-
*
|
|
3455
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3444
3456
|
*/
|
|
3445
3457
|
subdomain: pulumi.Input<string>;
|
|
3446
3458
|
/**
|
|
@@ -3505,7 +3517,7 @@ export interface ResourceGcpwif {
|
|
|
3505
3517
|
*/
|
|
3506
3518
|
sessionExpiry?: pulumi.Input<number>;
|
|
3507
3519
|
/**
|
|
3508
|
-
*
|
|
3520
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3509
3521
|
*/
|
|
3510
3522
|
subdomain?: pulumi.Input<string>;
|
|
3511
3523
|
/**
|
|
@@ -3586,7 +3598,7 @@ export interface ResourceGoogleGke {
|
|
|
3586
3598
|
*/
|
|
3587
3599
|
serviceAccountKey?: pulumi.Input<string>;
|
|
3588
3600
|
/**
|
|
3589
|
-
*
|
|
3601
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3590
3602
|
*/
|
|
3591
3603
|
subdomain?: pulumi.Input<string>;
|
|
3592
3604
|
/**
|
|
@@ -3638,7 +3650,7 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
3638
3650
|
*/
|
|
3639
3651
|
serviceAccountKey?: pulumi.Input<string>;
|
|
3640
3652
|
/**
|
|
3641
|
-
*
|
|
3653
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3642
3654
|
*/
|
|
3643
3655
|
subdomain?: pulumi.Input<string>;
|
|
3644
3656
|
/**
|
|
@@ -3694,7 +3706,7 @@ export interface ResourceGreenplum {
|
|
|
3694
3706
|
*/
|
|
3695
3707
|
secretStoreId?: pulumi.Input<string>;
|
|
3696
3708
|
/**
|
|
3697
|
-
*
|
|
3709
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3698
3710
|
*/
|
|
3699
3711
|
subdomain?: pulumi.Input<string>;
|
|
3700
3712
|
/**
|
|
@@ -3754,7 +3766,7 @@ export interface ResourceHttpAuth {
|
|
|
3754
3766
|
*/
|
|
3755
3767
|
secretStoreId?: pulumi.Input<string>;
|
|
3756
3768
|
/**
|
|
3757
|
-
*
|
|
3769
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3758
3770
|
*/
|
|
3759
3771
|
subdomain: pulumi.Input<string>;
|
|
3760
3772
|
/**
|
|
@@ -3815,7 +3827,7 @@ export interface ResourceHttpBasicAuth {
|
|
|
3815
3827
|
*/
|
|
3816
3828
|
secretStoreId?: pulumi.Input<string>;
|
|
3817
3829
|
/**
|
|
3818
|
-
*
|
|
3830
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3819
3831
|
*/
|
|
3820
3832
|
subdomain: pulumi.Input<string>;
|
|
3821
3833
|
/**
|
|
@@ -3876,7 +3888,7 @@ export interface ResourceHttpNoAuth {
|
|
|
3876
3888
|
*/
|
|
3877
3889
|
secretStoreId?: pulumi.Input<string>;
|
|
3878
3890
|
/**
|
|
3879
|
-
*
|
|
3891
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3880
3892
|
*/
|
|
3881
3893
|
subdomain: pulumi.Input<string>;
|
|
3882
3894
|
/**
|
|
@@ -3961,7 +3973,7 @@ export interface ResourceKubernetes {
|
|
|
3961
3973
|
*/
|
|
3962
3974
|
secretStoreId?: pulumi.Input<string>;
|
|
3963
3975
|
/**
|
|
3964
|
-
*
|
|
3976
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
3965
3977
|
*/
|
|
3966
3978
|
subdomain?: pulumi.Input<string>;
|
|
3967
3979
|
/**
|
|
@@ -4013,7 +4025,7 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
4013
4025
|
*/
|
|
4014
4026
|
secretStoreId?: pulumi.Input<string>;
|
|
4015
4027
|
/**
|
|
4016
|
-
*
|
|
4028
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4017
4029
|
*/
|
|
4018
4030
|
subdomain?: pulumi.Input<string>;
|
|
4019
4031
|
/**
|
|
@@ -4081,7 +4093,7 @@ export interface ResourceKubernetesPodIdentity {
|
|
|
4081
4093
|
*/
|
|
4082
4094
|
secretStoreId?: pulumi.Input<string>;
|
|
4083
4095
|
/**
|
|
4084
|
-
*
|
|
4096
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4085
4097
|
*/
|
|
4086
4098
|
subdomain?: pulumi.Input<string>;
|
|
4087
4099
|
/**
|
|
@@ -4149,7 +4161,7 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
4149
4161
|
*/
|
|
4150
4162
|
secretStoreId?: pulumi.Input<string>;
|
|
4151
4163
|
/**
|
|
4152
|
-
*
|
|
4164
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4153
4165
|
*/
|
|
4154
4166
|
subdomain?: pulumi.Input<string>;
|
|
4155
4167
|
/**
|
|
@@ -4202,7 +4214,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
4202
4214
|
*/
|
|
4203
4215
|
secretStoreId?: pulumi.Input<string>;
|
|
4204
4216
|
/**
|
|
4205
|
-
*
|
|
4217
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4206
4218
|
*/
|
|
4207
4219
|
subdomain?: pulumi.Input<string>;
|
|
4208
4220
|
/**
|
|
@@ -4267,7 +4279,7 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
4267
4279
|
*/
|
|
4268
4280
|
secretStoreId?: pulumi.Input<string>;
|
|
4269
4281
|
/**
|
|
4270
|
-
*
|
|
4282
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4271
4283
|
*/
|
|
4272
4284
|
subdomain?: pulumi.Input<string>;
|
|
4273
4285
|
/**
|
|
@@ -4323,7 +4335,7 @@ export interface ResourceMaria {
|
|
|
4323
4335
|
*/
|
|
4324
4336
|
secretStoreId?: pulumi.Input<string>;
|
|
4325
4337
|
/**
|
|
4326
|
-
*
|
|
4338
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4327
4339
|
*/
|
|
4328
4340
|
subdomain?: pulumi.Input<string>;
|
|
4329
4341
|
/**
|
|
@@ -4341,6 +4353,54 @@ export interface ResourceMaria {
|
|
|
4341
4353
|
*/
|
|
4342
4354
|
username?: pulumi.Input<string>;
|
|
4343
4355
|
}
|
|
4356
|
+
export interface ResourceMcp {
|
|
4357
|
+
/**
|
|
4358
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
4359
|
+
*/
|
|
4360
|
+
bindInterface?: pulumi.Input<string>;
|
|
4361
|
+
/**
|
|
4362
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4363
|
+
*/
|
|
4364
|
+
egressFilter?: pulumi.Input<string>;
|
|
4365
|
+
/**
|
|
4366
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
4367
|
+
*/
|
|
4368
|
+
hostname: pulumi.Input<string>;
|
|
4369
|
+
/**
|
|
4370
|
+
* Unique human-readable name of the Resource.
|
|
4371
|
+
*/
|
|
4372
|
+
name: pulumi.Input<string>;
|
|
4373
|
+
/**
|
|
4374
|
+
* The password to authenticate with.
|
|
4375
|
+
*/
|
|
4376
|
+
password?: pulumi.Input<string>;
|
|
4377
|
+
/**
|
|
4378
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
4379
|
+
*/
|
|
4380
|
+
port?: pulumi.Input<number>;
|
|
4381
|
+
/**
|
|
4382
|
+
* The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
|
|
4383
|
+
*/
|
|
4384
|
+
portOverride?: pulumi.Input<number>;
|
|
4385
|
+
/**
|
|
4386
|
+
* ID of the proxy cluster for this resource, if any.
|
|
4387
|
+
*/
|
|
4388
|
+
proxyClusterId?: pulumi.Input<string>;
|
|
4389
|
+
/**
|
|
4390
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
4391
|
+
*/
|
|
4392
|
+
secretStoreId?: pulumi.Input<string>;
|
|
4393
|
+
/**
|
|
4394
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4395
|
+
*/
|
|
4396
|
+
subdomain?: pulumi.Input<string>;
|
|
4397
|
+
/**
|
|
4398
|
+
* Tags is a map of key, value pairs.
|
|
4399
|
+
*/
|
|
4400
|
+
tags?: pulumi.Input<{
|
|
4401
|
+
[key: string]: pulumi.Input<string>;
|
|
4402
|
+
}>;
|
|
4403
|
+
}
|
|
4344
4404
|
export interface ResourceMemcached {
|
|
4345
4405
|
/**
|
|
4346
4406
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
@@ -4375,7 +4435,7 @@ export interface ResourceMemcached {
|
|
|
4375
4435
|
*/
|
|
4376
4436
|
secretStoreId?: pulumi.Input<string>;
|
|
4377
4437
|
/**
|
|
4378
|
-
*
|
|
4438
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4379
4439
|
*/
|
|
4380
4440
|
subdomain?: pulumi.Input<string>;
|
|
4381
4441
|
/**
|
|
@@ -4431,7 +4491,7 @@ export interface ResourceMemsql {
|
|
|
4431
4491
|
*/
|
|
4432
4492
|
secretStoreId?: pulumi.Input<string>;
|
|
4433
4493
|
/**
|
|
4434
|
-
*
|
|
4494
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4435
4495
|
*/
|
|
4436
4496
|
subdomain?: pulumi.Input<string>;
|
|
4437
4497
|
/**
|
|
@@ -4491,7 +4551,7 @@ export interface ResourceMongoHost {
|
|
|
4491
4551
|
*/
|
|
4492
4552
|
secretStoreId?: pulumi.Input<string>;
|
|
4493
4553
|
/**
|
|
4494
|
-
*
|
|
4554
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4495
4555
|
*/
|
|
4496
4556
|
subdomain?: pulumi.Input<string>;
|
|
4497
4557
|
/**
|
|
@@ -4551,7 +4611,7 @@ export interface ResourceMongoLegacyHost {
|
|
|
4551
4611
|
*/
|
|
4552
4612
|
secretStoreId?: pulumi.Input<string>;
|
|
4553
4613
|
/**
|
|
4554
|
-
*
|
|
4614
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4555
4615
|
*/
|
|
4556
4616
|
subdomain?: pulumi.Input<string>;
|
|
4557
4617
|
/**
|
|
@@ -4619,7 +4679,7 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
4619
4679
|
*/
|
|
4620
4680
|
secretStoreId?: pulumi.Input<string>;
|
|
4621
4681
|
/**
|
|
4622
|
-
*
|
|
4682
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4623
4683
|
*/
|
|
4624
4684
|
subdomain?: pulumi.Input<string>;
|
|
4625
4685
|
/**
|
|
@@ -4687,7 +4747,7 @@ export interface ResourceMongoReplicaSet {
|
|
|
4687
4747
|
*/
|
|
4688
4748
|
secretStoreId?: pulumi.Input<string>;
|
|
4689
4749
|
/**
|
|
4690
|
-
*
|
|
4750
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4691
4751
|
*/
|
|
4692
4752
|
subdomain?: pulumi.Input<string>;
|
|
4693
4753
|
/**
|
|
@@ -4743,7 +4803,7 @@ export interface ResourceMongoShardedCluster {
|
|
|
4743
4803
|
*/
|
|
4744
4804
|
secretStoreId?: pulumi.Input<string>;
|
|
4745
4805
|
/**
|
|
4746
|
-
*
|
|
4806
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4747
4807
|
*/
|
|
4748
4808
|
subdomain?: pulumi.Input<string>;
|
|
4749
4809
|
/**
|
|
@@ -4823,7 +4883,7 @@ export interface ResourceMtlsMysql {
|
|
|
4823
4883
|
*/
|
|
4824
4884
|
serverName?: pulumi.Input<string>;
|
|
4825
4885
|
/**
|
|
4826
|
-
*
|
|
4886
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4827
4887
|
*/
|
|
4828
4888
|
subdomain?: pulumi.Input<string>;
|
|
4829
4889
|
/**
|
|
@@ -4903,7 +4963,7 @@ export interface ResourceMtlsPostgres {
|
|
|
4903
4963
|
*/
|
|
4904
4964
|
serverName?: pulumi.Input<string>;
|
|
4905
4965
|
/**
|
|
4906
|
-
*
|
|
4966
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4907
4967
|
*/
|
|
4908
4968
|
subdomain?: pulumi.Input<string>;
|
|
4909
4969
|
/**
|
|
@@ -4963,7 +5023,7 @@ export interface ResourceMysql {
|
|
|
4963
5023
|
*/
|
|
4964
5024
|
secretStoreId?: pulumi.Input<string>;
|
|
4965
5025
|
/**
|
|
4966
|
-
*
|
|
5026
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
4967
5027
|
*/
|
|
4968
5028
|
subdomain?: pulumi.Input<string>;
|
|
4969
5029
|
/**
|
|
@@ -5015,7 +5075,7 @@ export interface ResourceNeptune {
|
|
|
5015
5075
|
*/
|
|
5016
5076
|
secretStoreId?: pulumi.Input<string>;
|
|
5017
5077
|
/**
|
|
5018
|
-
*
|
|
5078
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5019
5079
|
*/
|
|
5020
5080
|
subdomain?: pulumi.Input<string>;
|
|
5021
5081
|
/**
|
|
@@ -5079,7 +5139,7 @@ export interface ResourceNeptuneIam {
|
|
|
5079
5139
|
*/
|
|
5080
5140
|
secretStoreId?: pulumi.Input<string>;
|
|
5081
5141
|
/**
|
|
5082
|
-
*
|
|
5142
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5083
5143
|
*/
|
|
5084
5144
|
subdomain?: pulumi.Input<string>;
|
|
5085
5145
|
/**
|
|
@@ -5131,7 +5191,7 @@ export interface ResourceOracle {
|
|
|
5131
5191
|
*/
|
|
5132
5192
|
secretStoreId?: pulumi.Input<string>;
|
|
5133
5193
|
/**
|
|
5134
|
-
*
|
|
5194
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5135
5195
|
*/
|
|
5136
5196
|
subdomain?: pulumi.Input<string>;
|
|
5137
5197
|
/**
|
|
@@ -5191,7 +5251,7 @@ export interface ResourceOracleNne {
|
|
|
5191
5251
|
*/
|
|
5192
5252
|
secretStoreId?: pulumi.Input<string>;
|
|
5193
5253
|
/**
|
|
5194
|
-
*
|
|
5254
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5195
5255
|
*/
|
|
5196
5256
|
subdomain?: pulumi.Input<string>;
|
|
5197
5257
|
/**
|
|
@@ -5200,6 +5260,10 @@ export interface ResourceOracleNne {
|
|
|
5200
5260
|
tags?: pulumi.Input<{
|
|
5201
5261
|
[key: string]: pulumi.Input<string>;
|
|
5202
5262
|
}>;
|
|
5263
|
+
/**
|
|
5264
|
+
* If set, TLS must be used to connect to this resource.
|
|
5265
|
+
*/
|
|
5266
|
+
tlsRequired?: pulumi.Input<boolean>;
|
|
5203
5267
|
/**
|
|
5204
5268
|
* The username to authenticate with.
|
|
5205
5269
|
*/
|
|
@@ -5251,7 +5315,7 @@ export interface ResourcePostgres {
|
|
|
5251
5315
|
*/
|
|
5252
5316
|
secretStoreId?: pulumi.Input<string>;
|
|
5253
5317
|
/**
|
|
5254
|
-
*
|
|
5318
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5255
5319
|
*/
|
|
5256
5320
|
subdomain?: pulumi.Input<string>;
|
|
5257
5321
|
/**
|
|
@@ -5307,7 +5371,7 @@ export interface ResourcePresto {
|
|
|
5307
5371
|
*/
|
|
5308
5372
|
secretStoreId?: pulumi.Input<string>;
|
|
5309
5373
|
/**
|
|
5310
|
-
*
|
|
5374
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5311
5375
|
*/
|
|
5312
5376
|
subdomain?: pulumi.Input<string>;
|
|
5313
5377
|
/**
|
|
@@ -5363,7 +5427,7 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
5363
5427
|
*/
|
|
5364
5428
|
secretStoreId?: pulumi.Input<string>;
|
|
5365
5429
|
/**
|
|
5366
|
-
*
|
|
5430
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5367
5431
|
*/
|
|
5368
5432
|
subdomain?: pulumi.Input<string>;
|
|
5369
5433
|
/**
|
|
@@ -5415,7 +5479,7 @@ export interface ResourceRawTcp {
|
|
|
5415
5479
|
*/
|
|
5416
5480
|
secretStoreId?: pulumi.Input<string>;
|
|
5417
5481
|
/**
|
|
5418
|
-
*
|
|
5482
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5419
5483
|
*/
|
|
5420
5484
|
subdomain?: pulumi.Input<string>;
|
|
5421
5485
|
/**
|
|
@@ -5471,7 +5535,7 @@ export interface ResourceRdp {
|
|
|
5471
5535
|
*/
|
|
5472
5536
|
secretStoreId?: pulumi.Input<string>;
|
|
5473
5537
|
/**
|
|
5474
|
-
*
|
|
5538
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5475
5539
|
*/
|
|
5476
5540
|
subdomain?: pulumi.Input<string>;
|
|
5477
5541
|
/**
|
|
@@ -5490,6 +5554,10 @@ export interface ResourceRdpCert {
|
|
|
5490
5554
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
5491
5555
|
*/
|
|
5492
5556
|
bindInterface?: pulumi.Input<string>;
|
|
5557
|
+
/**
|
|
5558
|
+
* Comma-separated list of Active Directory Domain Controller hostnames for LDAPS SID resolution. Utilized for strong certificate mapping in full enforcement mode when the identity alias does not specify a SID.
|
|
5559
|
+
*/
|
|
5560
|
+
dcHostnames?: pulumi.Input<string>;
|
|
5493
5561
|
/**
|
|
5494
5562
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
5495
5563
|
*/
|
|
@@ -5535,7 +5603,7 @@ export interface ResourceRdpCert {
|
|
|
5535
5603
|
*/
|
|
5536
5604
|
sid?: pulumi.Input<string>;
|
|
5537
5605
|
/**
|
|
5538
|
-
*
|
|
5606
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5539
5607
|
*/
|
|
5540
5608
|
subdomain?: pulumi.Input<string>;
|
|
5541
5609
|
/**
|
|
@@ -5599,7 +5667,7 @@ export interface ResourceRdsPostgresIam {
|
|
|
5599
5667
|
*/
|
|
5600
5668
|
secretStoreId?: pulumi.Input<string>;
|
|
5601
5669
|
/**
|
|
5602
|
-
*
|
|
5670
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5603
5671
|
*/
|
|
5604
5672
|
subdomain?: pulumi.Input<string>;
|
|
5605
5673
|
/**
|
|
@@ -5651,7 +5719,7 @@ export interface ResourceRedis {
|
|
|
5651
5719
|
*/
|
|
5652
5720
|
secretStoreId?: pulumi.Input<string>;
|
|
5653
5721
|
/**
|
|
5654
|
-
*
|
|
5722
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5655
5723
|
*/
|
|
5656
5724
|
subdomain?: pulumi.Input<string>;
|
|
5657
5725
|
/**
|
|
@@ -5707,7 +5775,7 @@ export interface ResourceRedisCluster {
|
|
|
5707
5775
|
*/
|
|
5708
5776
|
secretStoreId?: pulumi.Input<string>;
|
|
5709
5777
|
/**
|
|
5710
|
-
*
|
|
5778
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5711
5779
|
*/
|
|
5712
5780
|
subdomain?: pulumi.Input<string>;
|
|
5713
5781
|
/**
|
|
@@ -5771,7 +5839,7 @@ export interface ResourceRedshift {
|
|
|
5771
5839
|
*/
|
|
5772
5840
|
secretStoreId?: pulumi.Input<string>;
|
|
5773
5841
|
/**
|
|
5774
|
-
*
|
|
5842
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5775
5843
|
*/
|
|
5776
5844
|
subdomain?: pulumi.Input<string>;
|
|
5777
5845
|
/**
|
|
@@ -5839,7 +5907,7 @@ export interface ResourceRedshiftIam {
|
|
|
5839
5907
|
*/
|
|
5840
5908
|
secretStoreId?: pulumi.Input<string>;
|
|
5841
5909
|
/**
|
|
5842
|
-
*
|
|
5910
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5843
5911
|
*/
|
|
5844
5912
|
subdomain?: pulumi.Input<string>;
|
|
5845
5913
|
/**
|
|
@@ -5899,7 +5967,7 @@ export interface ResourceRedshiftServerlessIam {
|
|
|
5899
5967
|
*/
|
|
5900
5968
|
secretStoreId?: pulumi.Input<string>;
|
|
5901
5969
|
/**
|
|
5902
|
-
*
|
|
5970
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5903
5971
|
*/
|
|
5904
5972
|
subdomain?: pulumi.Input<string>;
|
|
5905
5973
|
/**
|
|
@@ -5960,7 +6028,7 @@ export interface ResourceSingleStore {
|
|
|
5960
6028
|
*/
|
|
5961
6029
|
secretStoreId?: pulumi.Input<string>;
|
|
5962
6030
|
/**
|
|
5963
|
-
*
|
|
6031
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5964
6032
|
*/
|
|
5965
6033
|
subdomain?: pulumi.Input<string>;
|
|
5966
6034
|
/**
|
|
@@ -6024,7 +6092,7 @@ export interface ResourceSnowflake {
|
|
|
6024
6092
|
*/
|
|
6025
6093
|
secretStoreId?: pulumi.Input<string>;
|
|
6026
6094
|
/**
|
|
6027
|
-
*
|
|
6095
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6028
6096
|
*/
|
|
6029
6097
|
subdomain?: pulumi.Input<string>;
|
|
6030
6098
|
/**
|
|
@@ -6043,6 +6111,10 @@ export interface ResourceSnowsight {
|
|
|
6043
6111
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
6044
6112
|
*/
|
|
6045
6113
|
bindInterface?: pulumi.Input<string>;
|
|
6114
|
+
/**
|
|
6115
|
+
* If true, select the ACS with isDefault=true
|
|
6116
|
+
*/
|
|
6117
|
+
connectToDefault?: pulumi.Input<boolean>;
|
|
6046
6118
|
/**
|
|
6047
6119
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6048
6120
|
*/
|
|
@@ -6072,7 +6144,7 @@ export interface ResourceSnowsight {
|
|
|
6072
6144
|
*/
|
|
6073
6145
|
secretStoreId?: pulumi.Input<string>;
|
|
6074
6146
|
/**
|
|
6075
|
-
*
|
|
6147
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6076
6148
|
*/
|
|
6077
6149
|
subdomain: pulumi.Input<string>;
|
|
6078
6150
|
/**
|
|
@@ -6136,7 +6208,7 @@ export interface ResourceSqlServer {
|
|
|
6136
6208
|
*/
|
|
6137
6209
|
secretStoreId?: pulumi.Input<string>;
|
|
6138
6210
|
/**
|
|
6139
|
-
*
|
|
6211
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6140
6212
|
*/
|
|
6141
6213
|
subdomain?: pulumi.Input<string>;
|
|
6142
6214
|
/**
|
|
@@ -6208,7 +6280,7 @@ export interface ResourceSqlServerAzureAd {
|
|
|
6208
6280
|
*/
|
|
6209
6281
|
secretStoreId?: pulumi.Input<string>;
|
|
6210
6282
|
/**
|
|
6211
|
-
*
|
|
6283
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6212
6284
|
*/
|
|
6213
6285
|
subdomain?: pulumi.Input<string>;
|
|
6214
6286
|
/**
|
|
@@ -6289,7 +6361,7 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
6289
6361
|
*/
|
|
6290
6362
|
serverSpn: pulumi.Input<string>;
|
|
6291
6363
|
/**
|
|
6292
|
-
*
|
|
6364
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6293
6365
|
*/
|
|
6294
6366
|
subdomain?: pulumi.Input<string>;
|
|
6295
6367
|
/**
|
|
@@ -6353,7 +6425,7 @@ export interface ResourceSsh {
|
|
|
6353
6425
|
*/
|
|
6354
6426
|
secretStoreId?: pulumi.Input<string>;
|
|
6355
6427
|
/**
|
|
6356
|
-
*
|
|
6428
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6357
6429
|
*/
|
|
6358
6430
|
subdomain?: pulumi.Input<string>;
|
|
6359
6431
|
/**
|
|
@@ -6421,7 +6493,7 @@ export interface ResourceSshCert {
|
|
|
6421
6493
|
*/
|
|
6422
6494
|
secretStoreId?: pulumi.Input<string>;
|
|
6423
6495
|
/**
|
|
6424
|
-
*
|
|
6496
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6425
6497
|
*/
|
|
6426
6498
|
subdomain?: pulumi.Input<string>;
|
|
6427
6499
|
/**
|
|
@@ -6489,7 +6561,7 @@ export interface ResourceSshCustomerKey {
|
|
|
6489
6561
|
*/
|
|
6490
6562
|
secretStoreId?: pulumi.Input<string>;
|
|
6491
6563
|
/**
|
|
6492
|
-
*
|
|
6564
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6493
6565
|
*/
|
|
6494
6566
|
subdomain?: pulumi.Input<string>;
|
|
6495
6567
|
/**
|
|
@@ -6549,7 +6621,7 @@ export interface ResourceSshPassword {
|
|
|
6549
6621
|
*/
|
|
6550
6622
|
secretStoreId?: pulumi.Input<string>;
|
|
6551
6623
|
/**
|
|
6552
|
-
*
|
|
6624
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6553
6625
|
*/
|
|
6554
6626
|
subdomain?: pulumi.Input<string>;
|
|
6555
6627
|
/**
|
|
@@ -6601,7 +6673,7 @@ export interface ResourceSybase {
|
|
|
6601
6673
|
*/
|
|
6602
6674
|
secretStoreId?: pulumi.Input<string>;
|
|
6603
6675
|
/**
|
|
6604
|
-
*
|
|
6676
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6605
6677
|
*/
|
|
6606
6678
|
subdomain?: pulumi.Input<string>;
|
|
6607
6679
|
/**
|
|
@@ -6653,7 +6725,7 @@ export interface ResourceSybaseIq {
|
|
|
6653
6725
|
*/
|
|
6654
6726
|
secretStoreId?: pulumi.Input<string>;
|
|
6655
6727
|
/**
|
|
6656
|
-
*
|
|
6728
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6657
6729
|
*/
|
|
6658
6730
|
subdomain?: pulumi.Input<string>;
|
|
6659
6731
|
/**
|
|
@@ -6705,7 +6777,7 @@ export interface ResourceTeradata {
|
|
|
6705
6777
|
*/
|
|
6706
6778
|
secretStoreId?: pulumi.Input<string>;
|
|
6707
6779
|
/**
|
|
6708
|
-
*
|
|
6780
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6709
6781
|
*/
|
|
6710
6782
|
subdomain?: pulumi.Input<string>;
|
|
6711
6783
|
/**
|
|
@@ -6757,7 +6829,7 @@ export interface ResourceTrino {
|
|
|
6757
6829
|
*/
|
|
6758
6830
|
secretStoreId?: pulumi.Input<string>;
|
|
6759
6831
|
/**
|
|
6760
|
-
*
|
|
6832
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6761
6833
|
*/
|
|
6762
6834
|
subdomain?: pulumi.Input<string>;
|
|
6763
6835
|
/**
|
|
@@ -6817,7 +6889,7 @@ export interface ResourceVertica {
|
|
|
6817
6889
|
*/
|
|
6818
6890
|
secretStoreId?: pulumi.Input<string>;
|
|
6819
6891
|
/**
|
|
6820
|
-
*
|
|
6892
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
6821
6893
|
*/
|
|
6822
6894
|
subdomain?: pulumi.Input<string>;
|
|
6823
6895
|
/**
|
|
@@ -6944,6 +7016,66 @@ export interface SecretEngineKeyValue {
|
|
|
6944
7016
|
[key: string]: pulumi.Input<string>;
|
|
6945
7017
|
}>;
|
|
6946
7018
|
}
|
|
7019
|
+
export interface SecretEnginePostgresSecretEngine {
|
|
7020
|
+
/**
|
|
7021
|
+
* The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
|
|
7022
|
+
*/
|
|
7023
|
+
afterReadTtl?: pulumi.Input<string>;
|
|
7024
|
+
/**
|
|
7025
|
+
* Database is the database to verify credential against.
|
|
7026
|
+
*/
|
|
7027
|
+
database: pulumi.Input<string>;
|
|
7028
|
+
/**
|
|
7029
|
+
* Hostname is the hostname or IP address of the Postgres server.
|
|
7030
|
+
*/
|
|
7031
|
+
hostname: pulumi.Input<string>;
|
|
7032
|
+
/**
|
|
7033
|
+
* An interval of public/private key rotation for secret engine in days
|
|
7034
|
+
*/
|
|
7035
|
+
keyRotationIntervalDays?: pulumi.Input<number>;
|
|
7036
|
+
/**
|
|
7037
|
+
* Unique human-readable name of the Secret Engine.
|
|
7038
|
+
*/
|
|
7039
|
+
name: pulumi.Input<string>;
|
|
7040
|
+
/**
|
|
7041
|
+
* Password is the password to connect to the Postgres server.
|
|
7042
|
+
*/
|
|
7043
|
+
password: pulumi.Input<string>;
|
|
7044
|
+
/**
|
|
7045
|
+
* Port is the port number of the Postgres server.
|
|
7046
|
+
*/
|
|
7047
|
+
port: pulumi.Input<number>;
|
|
7048
|
+
/**
|
|
7049
|
+
* Public key linked with a secret engine
|
|
7050
|
+
*/
|
|
7051
|
+
publicKey?: pulumi.Input<string>;
|
|
7052
|
+
/**
|
|
7053
|
+
* Backing secret store identifier
|
|
7054
|
+
*/
|
|
7055
|
+
secretStoreId: pulumi.Input<string>;
|
|
7056
|
+
/**
|
|
7057
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
7058
|
+
*/
|
|
7059
|
+
secretStoreRootPath: pulumi.Input<string>;
|
|
7060
|
+
/**
|
|
7061
|
+
* Tags is a map of key, value pairs.
|
|
7062
|
+
*/
|
|
7063
|
+
tags?: pulumi.Input<{
|
|
7064
|
+
[key: string]: pulumi.Input<string>;
|
|
7065
|
+
}>;
|
|
7066
|
+
/**
|
|
7067
|
+
* TLS enables TLS/SSL when connecting to the Postgres server.
|
|
7068
|
+
*/
|
|
7069
|
+
tls?: pulumi.Input<boolean>;
|
|
7070
|
+
/**
|
|
7071
|
+
* The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
|
|
7072
|
+
*/
|
|
7073
|
+
ttl?: pulumi.Input<string>;
|
|
7074
|
+
/**
|
|
7075
|
+
* Username is the username to connect to the Postgres server.
|
|
7076
|
+
*/
|
|
7077
|
+
username: pulumi.Input<string>;
|
|
7078
|
+
}
|
|
6947
7079
|
export interface SecretStoreActiveDirectoryStore {
|
|
6948
7080
|
/**
|
|
6949
7081
|
* Unique human-readable name of the SecretStore.
|