@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/output.d.ts
CHANGED
|
@@ -80,15 +80,19 @@ export interface ApprovalWorkflowApprovalStep {
|
|
|
80
80
|
}
|
|
81
81
|
export interface ApprovalWorkflowApprovalStepApprover {
|
|
82
82
|
/**
|
|
83
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
83
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
84
84
|
*/
|
|
85
85
|
accountId?: string;
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
88
|
+
*/
|
|
89
|
+
groupId?: string;
|
|
90
|
+
/**
|
|
91
|
+
* 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)
|
|
88
92
|
*/
|
|
89
93
|
reference?: string;
|
|
90
94
|
/**
|
|
91
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
95
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
92
96
|
*/
|
|
93
97
|
roleId?: string;
|
|
94
98
|
}
|
|
@@ -232,6 +236,20 @@ export interface GetAccountAttachmentAccountAttachment {
|
|
|
232
236
|
*/
|
|
233
237
|
roleId?: string;
|
|
234
238
|
}
|
|
239
|
+
export interface GetAccountGroupAccountsGroup {
|
|
240
|
+
/**
|
|
241
|
+
* Unique identifier of the Account.
|
|
242
|
+
*/
|
|
243
|
+
accountId?: string;
|
|
244
|
+
/**
|
|
245
|
+
* Unique identifier of the Group.
|
|
246
|
+
*/
|
|
247
|
+
groupId?: string;
|
|
248
|
+
/**
|
|
249
|
+
* Unique identifier of the AccountGroup.
|
|
250
|
+
*/
|
|
251
|
+
id?: string;
|
|
252
|
+
}
|
|
235
253
|
export interface GetApprovalWorkflowApprovalStep {
|
|
236
254
|
/**
|
|
237
255
|
* The approvers for this approval step
|
|
@@ -248,15 +266,19 @@ export interface GetApprovalWorkflowApprovalStep {
|
|
|
248
266
|
}
|
|
249
267
|
export interface GetApprovalWorkflowApprovalStepApprover {
|
|
250
268
|
/**
|
|
251
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
269
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
252
270
|
*/
|
|
253
271
|
accountId?: string;
|
|
254
272
|
/**
|
|
255
|
-
*
|
|
273
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
274
|
+
*/
|
|
275
|
+
groupId?: string;
|
|
276
|
+
/**
|
|
277
|
+
* 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)
|
|
256
278
|
*/
|
|
257
279
|
reference?: string;
|
|
258
280
|
/**
|
|
259
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
281
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
260
282
|
*/
|
|
261
283
|
roleId?: string;
|
|
262
284
|
}
|
|
@@ -298,15 +320,57 @@ export interface GetApprovalWorkflowApprovalWorkflowApprovalStep {
|
|
|
298
320
|
}
|
|
299
321
|
export interface GetApprovalWorkflowApprovalWorkflowApprovalStepApprover {
|
|
300
322
|
/**
|
|
301
|
-
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
323
|
+
* The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
302
324
|
*/
|
|
303
325
|
accountId?: string;
|
|
304
326
|
/**
|
|
305
|
-
*
|
|
327
|
+
* The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
328
|
+
*/
|
|
329
|
+
groupId?: string;
|
|
330
|
+
/**
|
|
331
|
+
* 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)
|
|
306
332
|
*/
|
|
307
333
|
reference?: string;
|
|
308
334
|
/**
|
|
309
|
-
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
335
|
+
* The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
|
|
336
|
+
*/
|
|
337
|
+
roleId?: string;
|
|
338
|
+
}
|
|
339
|
+
export interface GetGroupGroup {
|
|
340
|
+
/**
|
|
341
|
+
* Description of the Group.
|
|
342
|
+
*/
|
|
343
|
+
description?: string;
|
|
344
|
+
/**
|
|
345
|
+
* Unique identifier of the Group.
|
|
346
|
+
*/
|
|
347
|
+
id?: string;
|
|
348
|
+
/**
|
|
349
|
+
* Unique human-readable name of the Group.
|
|
350
|
+
*/
|
|
351
|
+
name?: string;
|
|
352
|
+
/**
|
|
353
|
+
* Source is a read only field for what service manages this group, e.g. StrongDM, Okta, Azure.
|
|
354
|
+
*/
|
|
355
|
+
source: string;
|
|
356
|
+
/**
|
|
357
|
+
* Tags is a map of key/value pairs that can be attached to a Group.
|
|
358
|
+
*/
|
|
359
|
+
tags?: {
|
|
360
|
+
[key: string]: string;
|
|
361
|
+
};
|
|
362
|
+
}
|
|
363
|
+
export interface GetGroupRoleGroupsRole {
|
|
364
|
+
/**
|
|
365
|
+
* The assigned Group ID.
|
|
366
|
+
*/
|
|
367
|
+
groupId?: string;
|
|
368
|
+
/**
|
|
369
|
+
* Unique identifier of the GroupRole.
|
|
370
|
+
*/
|
|
371
|
+
id?: string;
|
|
372
|
+
/**
|
|
373
|
+
* The assigned Role ID.
|
|
310
374
|
*/
|
|
311
375
|
roleId?: string;
|
|
312
376
|
}
|
|
@@ -706,6 +770,7 @@ export interface GetResourceResource {
|
|
|
706
770
|
*/
|
|
707
771
|
kubernetesUserImpersonations: outputs.GetResourceResourceKubernetesUserImpersonation[];
|
|
708
772
|
marias: outputs.GetResourceResourceMaria[];
|
|
773
|
+
mcps: outputs.GetResourceResourceMcp[];
|
|
709
774
|
memcacheds: outputs.GetResourceResourceMemcached[];
|
|
710
775
|
memsqls: outputs.GetResourceResourceMemsql[];
|
|
711
776
|
mongoHosts: outputs.GetResourceResourceMongoHost[];
|
|
@@ -790,7 +855,7 @@ export interface GetResourceResourceAerospike {
|
|
|
790
855
|
*/
|
|
791
856
|
secretStoreId?: string;
|
|
792
857
|
/**
|
|
793
|
-
*
|
|
858
|
+
* 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.
|
|
794
859
|
*/
|
|
795
860
|
subdomain?: string;
|
|
796
861
|
/**
|
|
@@ -882,7 +947,7 @@ export interface GetResourceResourceAk {
|
|
|
882
947
|
*/
|
|
883
948
|
secretStoreId?: string;
|
|
884
949
|
/**
|
|
885
|
-
*
|
|
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.
|
|
886
951
|
*/
|
|
887
952
|
subdomain?: string;
|
|
888
953
|
/**
|
|
@@ -938,7 +1003,7 @@ export interface GetResourceResourceAksBasicAuth {
|
|
|
938
1003
|
*/
|
|
939
1004
|
secretStoreId?: string;
|
|
940
1005
|
/**
|
|
941
|
-
*
|
|
1006
|
+
* 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.
|
|
942
1007
|
*/
|
|
943
1008
|
subdomain?: string;
|
|
944
1009
|
/**
|
|
@@ -1014,7 +1079,7 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
1014
1079
|
*/
|
|
1015
1080
|
secretStoreId?: string;
|
|
1016
1081
|
/**
|
|
1017
|
-
*
|
|
1082
|
+
* 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.
|
|
1018
1083
|
*/
|
|
1019
1084
|
subdomain?: string;
|
|
1020
1085
|
/**
|
|
@@ -1071,7 +1136,7 @@ export interface GetResourceResourceAksServiceAccountUserImpersonation {
|
|
|
1071
1136
|
*/
|
|
1072
1137
|
secretStoreId?: string;
|
|
1073
1138
|
/**
|
|
1074
|
-
*
|
|
1139
|
+
* 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.
|
|
1075
1140
|
*/
|
|
1076
1141
|
subdomain?: string;
|
|
1077
1142
|
/**
|
|
@@ -1140,7 +1205,7 @@ export interface GetResourceResourceAksUserImpersonation {
|
|
|
1140
1205
|
*/
|
|
1141
1206
|
secretStoreId?: string;
|
|
1142
1207
|
/**
|
|
1143
|
-
*
|
|
1208
|
+
* 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.
|
|
1144
1209
|
*/
|
|
1145
1210
|
subdomain?: string;
|
|
1146
1211
|
/**
|
|
@@ -1204,7 +1269,7 @@ export interface GetResourceResourceAmazonE {
|
|
|
1204
1269
|
*/
|
|
1205
1270
|
secretStoreId?: string;
|
|
1206
1271
|
/**
|
|
1207
|
-
*
|
|
1272
|
+
* 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.
|
|
1208
1273
|
*/
|
|
1209
1274
|
subdomain?: string;
|
|
1210
1275
|
/**
|
|
@@ -1300,7 +1365,7 @@ export interface GetResourceResourceAmazonEk {
|
|
|
1300
1365
|
*/
|
|
1301
1366
|
secretStoreId?: string;
|
|
1302
1367
|
/**
|
|
1303
|
-
*
|
|
1368
|
+
* 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.
|
|
1304
1369
|
*/
|
|
1305
1370
|
subdomain?: string;
|
|
1306
1371
|
/**
|
|
@@ -1388,7 +1453,7 @@ export interface GetResourceResourceAmazonEksInstanceProfile {
|
|
|
1388
1453
|
*/
|
|
1389
1454
|
secretStoreId?: string;
|
|
1390
1455
|
/**
|
|
1391
|
-
*
|
|
1456
|
+
* 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.
|
|
1392
1457
|
*/
|
|
1393
1458
|
subdomain?: string;
|
|
1394
1459
|
/**
|
|
@@ -1456,7 +1521,7 @@ export interface GetResourceResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
1456
1521
|
*/
|
|
1457
1522
|
secretStoreId?: string;
|
|
1458
1523
|
/**
|
|
1459
|
-
*
|
|
1524
|
+
* 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.
|
|
1460
1525
|
*/
|
|
1461
1526
|
subdomain?: string;
|
|
1462
1527
|
/**
|
|
@@ -1532,7 +1597,7 @@ export interface GetResourceResourceAmazonEksUserImpersonation {
|
|
|
1532
1597
|
*/
|
|
1533
1598
|
secretStoreId?: string;
|
|
1534
1599
|
/**
|
|
1535
|
-
*
|
|
1600
|
+
* 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.
|
|
1536
1601
|
*/
|
|
1537
1602
|
subdomain?: string;
|
|
1538
1603
|
/**
|
|
@@ -1588,7 +1653,7 @@ export interface GetResourceResourceAmazonEsiam {
|
|
|
1588
1653
|
*/
|
|
1589
1654
|
secretStoreId?: string;
|
|
1590
1655
|
/**
|
|
1591
|
-
*
|
|
1656
|
+
* 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.
|
|
1592
1657
|
*/
|
|
1593
1658
|
subdomain?: string;
|
|
1594
1659
|
/**
|
|
@@ -1644,7 +1709,7 @@ export interface GetResourceResourceAmazonmqAmqp {
|
|
|
1644
1709
|
*/
|
|
1645
1710
|
secretStoreId?: string;
|
|
1646
1711
|
/**
|
|
1647
|
-
*
|
|
1712
|
+
* 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.
|
|
1648
1713
|
*/
|
|
1649
1714
|
subdomain?: string;
|
|
1650
1715
|
/**
|
|
@@ -1704,7 +1769,7 @@ export interface GetResourceResourceAmazonmqAmqp091 {
|
|
|
1704
1769
|
*/
|
|
1705
1770
|
secretStoreId?: string;
|
|
1706
1771
|
/**
|
|
1707
|
-
*
|
|
1772
|
+
* 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.
|
|
1708
1773
|
*/
|
|
1709
1774
|
subdomain?: string;
|
|
1710
1775
|
/**
|
|
@@ -1776,7 +1841,7 @@ export interface GetResourceResourceAthena {
|
|
|
1776
1841
|
*/
|
|
1777
1842
|
secretStoreId?: string;
|
|
1778
1843
|
/**
|
|
1779
|
-
*
|
|
1844
|
+
* 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.
|
|
1780
1845
|
*/
|
|
1781
1846
|
subdomain?: string;
|
|
1782
1847
|
/**
|
|
@@ -1832,7 +1897,7 @@ export interface GetResourceResourceAthenaIam {
|
|
|
1832
1897
|
*/
|
|
1833
1898
|
secretStoreId?: string;
|
|
1834
1899
|
/**
|
|
1835
|
-
*
|
|
1900
|
+
* 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.
|
|
1836
1901
|
*/
|
|
1837
1902
|
subdomain?: string;
|
|
1838
1903
|
/**
|
|
@@ -1892,7 +1957,7 @@ export interface GetResourceResourceAuroraMysql {
|
|
|
1892
1957
|
*/
|
|
1893
1958
|
secretStoreId?: string;
|
|
1894
1959
|
/**
|
|
1895
|
-
*
|
|
1960
|
+
* 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.
|
|
1896
1961
|
*/
|
|
1897
1962
|
subdomain?: string;
|
|
1898
1963
|
/**
|
|
@@ -1960,7 +2025,7 @@ export interface GetResourceResourceAuroraMysqlIam {
|
|
|
1960
2025
|
*/
|
|
1961
2026
|
secretStoreId?: string;
|
|
1962
2027
|
/**
|
|
1963
|
-
*
|
|
2028
|
+
* 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.
|
|
1964
2029
|
*/
|
|
1965
2030
|
subdomain?: string;
|
|
1966
2031
|
/**
|
|
@@ -2024,7 +2089,7 @@ export interface GetResourceResourceAuroraPostgre {
|
|
|
2024
2089
|
*/
|
|
2025
2090
|
secretStoreId?: string;
|
|
2026
2091
|
/**
|
|
2027
|
-
*
|
|
2092
|
+
* 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.
|
|
2028
2093
|
*/
|
|
2029
2094
|
subdomain?: string;
|
|
2030
2095
|
/**
|
|
@@ -2092,7 +2157,7 @@ export interface GetResourceResourceAuroraPostgresIam {
|
|
|
2092
2157
|
*/
|
|
2093
2158
|
secretStoreId?: string;
|
|
2094
2159
|
/**
|
|
2095
|
-
*
|
|
2160
|
+
* 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.
|
|
2096
2161
|
*/
|
|
2097
2162
|
subdomain?: string;
|
|
2098
2163
|
/**
|
|
@@ -2156,7 +2221,7 @@ export interface GetResourceResourceAw {
|
|
|
2156
2221
|
*/
|
|
2157
2222
|
secretStoreId?: string;
|
|
2158
2223
|
/**
|
|
2159
|
-
*
|
|
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.
|
|
2160
2225
|
*/
|
|
2161
2226
|
subdomain?: string;
|
|
2162
2227
|
/**
|
|
@@ -2224,7 +2289,7 @@ export interface GetResourceResourceAwsConsole {
|
|
|
2224
2289
|
*/
|
|
2225
2290
|
sessionExpiry?: number;
|
|
2226
2291
|
/**
|
|
2227
|
-
*
|
|
2292
|
+
* 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.
|
|
2228
2293
|
*/
|
|
2229
2294
|
subdomain?: string;
|
|
2230
2295
|
/**
|
|
@@ -2296,7 +2361,7 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
|
|
|
2296
2361
|
*/
|
|
2297
2362
|
sessionExpiry?: number;
|
|
2298
2363
|
/**
|
|
2299
|
-
*
|
|
2364
|
+
* 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.
|
|
2300
2365
|
*/
|
|
2301
2366
|
subdomain?: string;
|
|
2302
2367
|
/**
|
|
@@ -2352,7 +2417,7 @@ export interface GetResourceResourceAwsInstanceProfile {
|
|
|
2352
2417
|
*/
|
|
2353
2418
|
secretStoreId?: string;
|
|
2354
2419
|
/**
|
|
2355
|
-
*
|
|
2420
|
+
* 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.
|
|
2356
2421
|
*/
|
|
2357
2422
|
subdomain?: string;
|
|
2358
2423
|
/**
|
|
@@ -2400,7 +2465,7 @@ export interface GetResourceResourceAzure {
|
|
|
2400
2465
|
*/
|
|
2401
2466
|
secretStoreId?: string;
|
|
2402
2467
|
/**
|
|
2403
|
-
*
|
|
2468
|
+
* 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.
|
|
2404
2469
|
*/
|
|
2405
2470
|
subdomain?: string;
|
|
2406
2471
|
/**
|
|
@@ -2453,7 +2518,7 @@ export interface GetResourceResourceAzureCertificate {
|
|
|
2453
2518
|
*/
|
|
2454
2519
|
secretStoreId?: string;
|
|
2455
2520
|
/**
|
|
2456
|
-
*
|
|
2521
|
+
* 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.
|
|
2457
2522
|
*/
|
|
2458
2523
|
subdomain?: string;
|
|
2459
2524
|
/**
|
|
@@ -2518,7 +2583,7 @@ export interface GetResourceResourceAzureMysql {
|
|
|
2518
2583
|
*/
|
|
2519
2584
|
secretStoreId?: string;
|
|
2520
2585
|
/**
|
|
2521
|
-
*
|
|
2586
|
+
* 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.
|
|
2522
2587
|
*/
|
|
2523
2588
|
subdomain?: string;
|
|
2524
2589
|
/**
|
|
@@ -2582,7 +2647,7 @@ export interface GetResourceResourceAzureMysqlManagedIdentity {
|
|
|
2582
2647
|
*/
|
|
2583
2648
|
secretStoreId?: string;
|
|
2584
2649
|
/**
|
|
2585
|
-
*
|
|
2650
|
+
* 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.
|
|
2586
2651
|
*/
|
|
2587
2652
|
subdomain?: string;
|
|
2588
2653
|
/**
|
|
@@ -2650,7 +2715,7 @@ export interface GetResourceResourceAzurePostgre {
|
|
|
2650
2715
|
*/
|
|
2651
2716
|
secretStoreId?: string;
|
|
2652
2717
|
/**
|
|
2653
|
-
*
|
|
2718
|
+
* 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.
|
|
2654
2719
|
*/
|
|
2655
2720
|
subdomain?: string;
|
|
2656
2721
|
/**
|
|
@@ -2714,7 +2779,7 @@ export interface GetResourceResourceAzurePostgresManagedIdentity {
|
|
|
2714
2779
|
*/
|
|
2715
2780
|
secretStoreId?: string;
|
|
2716
2781
|
/**
|
|
2717
|
-
*
|
|
2782
|
+
* 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.
|
|
2718
2783
|
*/
|
|
2719
2784
|
subdomain?: string;
|
|
2720
2785
|
/**
|
|
@@ -2774,7 +2839,7 @@ export interface GetResourceResourceBigQuery {
|
|
|
2774
2839
|
*/
|
|
2775
2840
|
secretStoreId?: string;
|
|
2776
2841
|
/**
|
|
2777
|
-
*
|
|
2842
|
+
* 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.
|
|
2778
2843
|
*/
|
|
2779
2844
|
subdomain?: string;
|
|
2780
2845
|
/**
|
|
@@ -2830,7 +2895,7 @@ export interface GetResourceResourceCassandra {
|
|
|
2830
2895
|
*/
|
|
2831
2896
|
secretStoreId?: string;
|
|
2832
2897
|
/**
|
|
2833
|
-
*
|
|
2898
|
+
* 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.
|
|
2834
2899
|
*/
|
|
2835
2900
|
subdomain?: string;
|
|
2836
2901
|
/**
|
|
@@ -2898,7 +2963,7 @@ export interface GetResourceResourceCitus {
|
|
|
2898
2963
|
*/
|
|
2899
2964
|
secretStoreId?: string;
|
|
2900
2965
|
/**
|
|
2901
|
-
*
|
|
2966
|
+
* 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.
|
|
2902
2967
|
*/
|
|
2903
2968
|
subdomain?: string;
|
|
2904
2969
|
/**
|
|
@@ -3015,7 +3080,7 @@ export interface GetResourceResourceClickHouseMySql {
|
|
|
3015
3080
|
*/
|
|
3016
3081
|
secretStoreId?: string;
|
|
3017
3082
|
/**
|
|
3018
|
-
*
|
|
3083
|
+
* 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.
|
|
3019
3084
|
*/
|
|
3020
3085
|
subdomain?: string;
|
|
3021
3086
|
/**
|
|
@@ -3075,7 +3140,7 @@ export interface GetResourceResourceClickHouseTcp {
|
|
|
3075
3140
|
*/
|
|
3076
3141
|
secretStoreId?: string;
|
|
3077
3142
|
/**
|
|
3078
|
-
*
|
|
3143
|
+
* 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.
|
|
3079
3144
|
*/
|
|
3080
3145
|
subdomain?: string;
|
|
3081
3146
|
/**
|
|
@@ -3143,7 +3208,7 @@ export interface GetResourceResourceClustrix {
|
|
|
3143
3208
|
*/
|
|
3144
3209
|
secretStoreId?: string;
|
|
3145
3210
|
/**
|
|
3146
|
-
*
|
|
3211
|
+
* 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.
|
|
3147
3212
|
*/
|
|
3148
3213
|
subdomain?: string;
|
|
3149
3214
|
/**
|
|
@@ -3211,7 +3276,7 @@ export interface GetResourceResourceCockroach {
|
|
|
3211
3276
|
*/
|
|
3212
3277
|
secretStoreId?: string;
|
|
3213
3278
|
/**
|
|
3214
|
-
*
|
|
3279
|
+
* 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.
|
|
3215
3280
|
*/
|
|
3216
3281
|
subdomain?: string;
|
|
3217
3282
|
/**
|
|
@@ -3271,7 +3336,7 @@ export interface GetResourceResourceCouchbaseDatabase {
|
|
|
3271
3336
|
*/
|
|
3272
3337
|
secretStoreId?: string;
|
|
3273
3338
|
/**
|
|
3274
|
-
*
|
|
3339
|
+
* 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.
|
|
3275
3340
|
*/
|
|
3276
3341
|
subdomain?: string;
|
|
3277
3342
|
/**
|
|
@@ -3323,7 +3388,7 @@ export interface GetResourceResourceCouchbaseWebUi {
|
|
|
3323
3388
|
*/
|
|
3324
3389
|
secretStoreId?: string;
|
|
3325
3390
|
/**
|
|
3326
|
-
*
|
|
3391
|
+
* 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.
|
|
3327
3392
|
*/
|
|
3328
3393
|
subdomain?: string;
|
|
3329
3394
|
/**
|
|
@@ -3384,7 +3449,7 @@ export interface GetResourceResourceDb2I {
|
|
|
3384
3449
|
*/
|
|
3385
3450
|
secretStoreId?: string;
|
|
3386
3451
|
/**
|
|
3387
|
-
*
|
|
3452
|
+
* 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.
|
|
3388
3453
|
*/
|
|
3389
3454
|
subdomain?: string;
|
|
3390
3455
|
/**
|
|
@@ -3448,7 +3513,7 @@ export interface GetResourceResourceDb2Luw {
|
|
|
3448
3513
|
*/
|
|
3449
3514
|
secretStoreId?: string;
|
|
3450
3515
|
/**
|
|
3451
|
-
*
|
|
3516
|
+
* 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.
|
|
3452
3517
|
*/
|
|
3453
3518
|
subdomain?: string;
|
|
3454
3519
|
/**
|
|
@@ -3512,7 +3577,7 @@ export interface GetResourceResourceDocumentDbHost {
|
|
|
3512
3577
|
*/
|
|
3513
3578
|
secretStoreId?: string;
|
|
3514
3579
|
/**
|
|
3515
|
-
*
|
|
3580
|
+
* 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.
|
|
3516
3581
|
*/
|
|
3517
3582
|
subdomain?: string;
|
|
3518
3583
|
/**
|
|
@@ -3568,7 +3633,7 @@ export interface GetResourceResourceDocumentDbHostIam {
|
|
|
3568
3633
|
*/
|
|
3569
3634
|
secretStoreId?: string;
|
|
3570
3635
|
/**
|
|
3571
|
-
*
|
|
3636
|
+
* 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.
|
|
3572
3637
|
*/
|
|
3573
3638
|
subdomain?: string;
|
|
3574
3639
|
/**
|
|
@@ -3628,7 +3693,7 @@ export interface GetResourceResourceDocumentDbReplicaSet {
|
|
|
3628
3693
|
*/
|
|
3629
3694
|
secretStoreId?: string;
|
|
3630
3695
|
/**
|
|
3631
|
-
*
|
|
3696
|
+
* 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.
|
|
3632
3697
|
*/
|
|
3633
3698
|
subdomain?: string;
|
|
3634
3699
|
/**
|
|
@@ -3684,7 +3749,7 @@ export interface GetResourceResourceDocumentDbReplicaSetIam {
|
|
|
3684
3749
|
*/
|
|
3685
3750
|
secretStoreId?: string;
|
|
3686
3751
|
/**
|
|
3687
|
-
*
|
|
3752
|
+
* 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.
|
|
3688
3753
|
*/
|
|
3689
3754
|
subdomain?: string;
|
|
3690
3755
|
/**
|
|
@@ -3736,7 +3801,7 @@ export interface GetResourceResourceDruid {
|
|
|
3736
3801
|
*/
|
|
3737
3802
|
secretStoreId?: string;
|
|
3738
3803
|
/**
|
|
3739
|
-
*
|
|
3804
|
+
* 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.
|
|
3740
3805
|
*/
|
|
3741
3806
|
subdomain?: string;
|
|
3742
3807
|
/**
|
|
@@ -3804,7 +3869,7 @@ export interface GetResourceResourceDynamoDb {
|
|
|
3804
3869
|
*/
|
|
3805
3870
|
secretStoreId?: string;
|
|
3806
3871
|
/**
|
|
3807
|
-
*
|
|
3872
|
+
* 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.
|
|
3808
3873
|
*/
|
|
3809
3874
|
subdomain?: string;
|
|
3810
3875
|
/**
|
|
@@ -3860,7 +3925,7 @@ export interface GetResourceResourceDynamoDbiam {
|
|
|
3860
3925
|
*/
|
|
3861
3926
|
secretStoreId?: string;
|
|
3862
3927
|
/**
|
|
3863
|
-
*
|
|
3928
|
+
* 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.
|
|
3864
3929
|
*/
|
|
3865
3930
|
subdomain?: string;
|
|
3866
3931
|
/**
|
|
@@ -3912,7 +3977,7 @@ export interface GetResourceResourceElastic {
|
|
|
3912
3977
|
*/
|
|
3913
3978
|
secretStoreId?: string;
|
|
3914
3979
|
/**
|
|
3915
|
-
*
|
|
3980
|
+
* 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.
|
|
3916
3981
|
*/
|
|
3917
3982
|
subdomain?: string;
|
|
3918
3983
|
/**
|
|
@@ -3972,7 +4037,7 @@ export interface GetResourceResourceElasticacheRedi {
|
|
|
3972
4037
|
*/
|
|
3973
4038
|
secretStoreId?: string;
|
|
3974
4039
|
/**
|
|
3975
|
-
*
|
|
4040
|
+
* 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.
|
|
3976
4041
|
*/
|
|
3977
4042
|
subdomain?: string;
|
|
3978
4043
|
/**
|
|
@@ -4040,7 +4105,7 @@ export interface GetResourceResourceEntraId {
|
|
|
4040
4105
|
*/
|
|
4041
4106
|
secretStoreId?: string;
|
|
4042
4107
|
/**
|
|
4043
|
-
*
|
|
4108
|
+
* 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.
|
|
4044
4109
|
*/
|
|
4045
4110
|
subdomain?: string;
|
|
4046
4111
|
/**
|
|
@@ -4097,7 +4162,7 @@ export interface GetResourceResourceGcp {
|
|
|
4097
4162
|
*/
|
|
4098
4163
|
secretStoreId?: string;
|
|
4099
4164
|
/**
|
|
4100
|
-
*
|
|
4165
|
+
* 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.
|
|
4101
4166
|
*/
|
|
4102
4167
|
subdomain?: string;
|
|
4103
4168
|
/**
|
|
@@ -4149,7 +4214,7 @@ export interface GetResourceResourceGcpConsole {
|
|
|
4149
4214
|
*/
|
|
4150
4215
|
sessionExpiry?: number;
|
|
4151
4216
|
/**
|
|
4152
|
-
*
|
|
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.
|
|
4153
4218
|
*/
|
|
4154
4219
|
subdomain?: string;
|
|
4155
4220
|
/**
|
|
@@ -4218,7 +4283,7 @@ export interface GetResourceResourceGcpwif {
|
|
|
4218
4283
|
*/
|
|
4219
4284
|
sessionExpiry?: number;
|
|
4220
4285
|
/**
|
|
4221
|
-
*
|
|
4286
|
+
* 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.
|
|
4222
4287
|
*/
|
|
4223
4288
|
subdomain?: string;
|
|
4224
4289
|
/**
|
|
@@ -4303,7 +4368,7 @@ export interface GetResourceResourceGoogleGke {
|
|
|
4303
4368
|
*/
|
|
4304
4369
|
serviceAccountKey?: string;
|
|
4305
4370
|
/**
|
|
4306
|
-
*
|
|
4371
|
+
* 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.
|
|
4307
4372
|
*/
|
|
4308
4373
|
subdomain?: string;
|
|
4309
4374
|
/**
|
|
@@ -4359,7 +4424,7 @@ export interface GetResourceResourceGoogleGkeUserImpersonation {
|
|
|
4359
4424
|
*/
|
|
4360
4425
|
serviceAccountKey?: string;
|
|
4361
4426
|
/**
|
|
4362
|
-
*
|
|
4427
|
+
* 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.
|
|
4363
4428
|
*/
|
|
4364
4429
|
subdomain?: string;
|
|
4365
4430
|
/**
|
|
@@ -4419,7 +4484,7 @@ export interface GetResourceResourceGreenplum {
|
|
|
4419
4484
|
*/
|
|
4420
4485
|
secretStoreId?: string;
|
|
4421
4486
|
/**
|
|
4422
|
-
*
|
|
4487
|
+
* 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.
|
|
4423
4488
|
*/
|
|
4424
4489
|
subdomain?: string;
|
|
4425
4490
|
/**
|
|
@@ -4483,7 +4548,7 @@ export interface GetResourceResourceHttpAuth {
|
|
|
4483
4548
|
*/
|
|
4484
4549
|
secretStoreId?: string;
|
|
4485
4550
|
/**
|
|
4486
|
-
*
|
|
4551
|
+
* 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.
|
|
4487
4552
|
*/
|
|
4488
4553
|
subdomain?: string;
|
|
4489
4554
|
/**
|
|
@@ -4548,7 +4613,7 @@ export interface GetResourceResourceHttpBasicAuth {
|
|
|
4548
4613
|
*/
|
|
4549
4614
|
secretStoreId?: string;
|
|
4550
4615
|
/**
|
|
4551
|
-
*
|
|
4616
|
+
* 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.
|
|
4552
4617
|
*/
|
|
4553
4618
|
subdomain?: string;
|
|
4554
4619
|
/**
|
|
@@ -4613,7 +4678,7 @@ export interface GetResourceResourceHttpNoAuth {
|
|
|
4613
4678
|
*/
|
|
4614
4679
|
secretStoreId?: string;
|
|
4615
4680
|
/**
|
|
4616
|
-
*
|
|
4681
|
+
* 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.
|
|
4617
4682
|
*/
|
|
4618
4683
|
subdomain?: string;
|
|
4619
4684
|
/**
|
|
@@ -4702,7 +4767,7 @@ export interface GetResourceResourceKubernete {
|
|
|
4702
4767
|
*/
|
|
4703
4768
|
secretStoreId?: string;
|
|
4704
4769
|
/**
|
|
4705
|
-
*
|
|
4770
|
+
* 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.
|
|
4706
4771
|
*/
|
|
4707
4772
|
subdomain?: string;
|
|
4708
4773
|
/**
|
|
@@ -4758,7 +4823,7 @@ export interface GetResourceResourceKubernetesBasicAuth {
|
|
|
4758
4823
|
*/
|
|
4759
4824
|
secretStoreId?: string;
|
|
4760
4825
|
/**
|
|
4761
|
-
*
|
|
4826
|
+
* 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.
|
|
4762
4827
|
*/
|
|
4763
4828
|
subdomain?: string;
|
|
4764
4829
|
/**
|
|
@@ -4830,7 +4895,7 @@ export interface GetResourceResourceKubernetesPodIdentity {
|
|
|
4830
4895
|
*/
|
|
4831
4896
|
secretStoreId?: string;
|
|
4832
4897
|
/**
|
|
4833
|
-
*
|
|
4898
|
+
* 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.
|
|
4834
4899
|
*/
|
|
4835
4900
|
subdomain?: string;
|
|
4836
4901
|
/**
|
|
@@ -4902,7 +4967,7 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
4902
4967
|
*/
|
|
4903
4968
|
secretStoreId?: string;
|
|
4904
4969
|
/**
|
|
4905
|
-
*
|
|
4970
|
+
* 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.
|
|
4906
4971
|
*/
|
|
4907
4972
|
subdomain?: string;
|
|
4908
4973
|
/**
|
|
@@ -4959,7 +5024,7 @@ export interface GetResourceResourceKubernetesServiceAccountUserImpersonation {
|
|
|
4959
5024
|
*/
|
|
4960
5025
|
secretStoreId?: string;
|
|
4961
5026
|
/**
|
|
4962
|
-
*
|
|
5027
|
+
* 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.
|
|
4963
5028
|
*/
|
|
4964
5029
|
subdomain?: string;
|
|
4965
5030
|
/**
|
|
@@ -5028,7 +5093,7 @@ export interface GetResourceResourceKubernetesUserImpersonation {
|
|
|
5028
5093
|
*/
|
|
5029
5094
|
secretStoreId?: string;
|
|
5030
5095
|
/**
|
|
5031
|
-
*
|
|
5096
|
+
* 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.
|
|
5032
5097
|
*/
|
|
5033
5098
|
subdomain?: string;
|
|
5034
5099
|
/**
|
|
@@ -5088,7 +5153,7 @@ export interface GetResourceResourceMaria {
|
|
|
5088
5153
|
*/
|
|
5089
5154
|
secretStoreId?: string;
|
|
5090
5155
|
/**
|
|
5091
|
-
*
|
|
5156
|
+
* 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.
|
|
5092
5157
|
*/
|
|
5093
5158
|
subdomain?: string;
|
|
5094
5159
|
/**
|
|
@@ -5106,6 +5171,58 @@ export interface GetResourceResourceMaria {
|
|
|
5106
5171
|
*/
|
|
5107
5172
|
username?: string;
|
|
5108
5173
|
}
|
|
5174
|
+
export interface GetResourceResourceMcp {
|
|
5175
|
+
/**
|
|
5176
|
+
* 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.
|
|
5177
|
+
*/
|
|
5178
|
+
bindInterface?: string;
|
|
5179
|
+
/**
|
|
5180
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
5181
|
+
*/
|
|
5182
|
+
egressFilter?: string;
|
|
5183
|
+
/**
|
|
5184
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5185
|
+
*/
|
|
5186
|
+
hostname?: string;
|
|
5187
|
+
/**
|
|
5188
|
+
* Unique identifier of the Resource.
|
|
5189
|
+
*/
|
|
5190
|
+
id?: string;
|
|
5191
|
+
/**
|
|
5192
|
+
* Unique human-readable name of the Resource.
|
|
5193
|
+
*/
|
|
5194
|
+
name?: string;
|
|
5195
|
+
/**
|
|
5196
|
+
* The password to authenticate with.
|
|
5197
|
+
*/
|
|
5198
|
+
password?: string;
|
|
5199
|
+
/**
|
|
5200
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
5201
|
+
*/
|
|
5202
|
+
port?: number;
|
|
5203
|
+
/**
|
|
5204
|
+
* 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.
|
|
5205
|
+
*/
|
|
5206
|
+
portOverride?: number;
|
|
5207
|
+
/**
|
|
5208
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5209
|
+
*/
|
|
5210
|
+
proxyClusterId?: string;
|
|
5211
|
+
/**
|
|
5212
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
5213
|
+
*/
|
|
5214
|
+
secretStoreId?: string;
|
|
5215
|
+
/**
|
|
5216
|
+
* 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.
|
|
5217
|
+
*/
|
|
5218
|
+
subdomain?: string;
|
|
5219
|
+
/**
|
|
5220
|
+
* Tags is a map of key, value pairs.
|
|
5221
|
+
*/
|
|
5222
|
+
tags?: {
|
|
5223
|
+
[key: string]: string;
|
|
5224
|
+
};
|
|
5225
|
+
}
|
|
5109
5226
|
export interface GetResourceResourceMemcached {
|
|
5110
5227
|
/**
|
|
5111
5228
|
* 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.
|
|
@@ -5144,7 +5261,7 @@ export interface GetResourceResourceMemcached {
|
|
|
5144
5261
|
*/
|
|
5145
5262
|
secretStoreId?: string;
|
|
5146
5263
|
/**
|
|
5147
|
-
*
|
|
5264
|
+
* 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.
|
|
5148
5265
|
*/
|
|
5149
5266
|
subdomain?: string;
|
|
5150
5267
|
/**
|
|
@@ -5204,7 +5321,7 @@ export interface GetResourceResourceMemsql {
|
|
|
5204
5321
|
*/
|
|
5205
5322
|
secretStoreId?: string;
|
|
5206
5323
|
/**
|
|
5207
|
-
*
|
|
5324
|
+
* 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.
|
|
5208
5325
|
*/
|
|
5209
5326
|
subdomain?: string;
|
|
5210
5327
|
/**
|
|
@@ -5268,7 +5385,7 @@ export interface GetResourceResourceMongoHost {
|
|
|
5268
5385
|
*/
|
|
5269
5386
|
secretStoreId?: string;
|
|
5270
5387
|
/**
|
|
5271
|
-
*
|
|
5388
|
+
* 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.
|
|
5272
5389
|
*/
|
|
5273
5390
|
subdomain?: string;
|
|
5274
5391
|
/**
|
|
@@ -5332,7 +5449,7 @@ export interface GetResourceResourceMongoLegacyHost {
|
|
|
5332
5449
|
*/
|
|
5333
5450
|
secretStoreId?: string;
|
|
5334
5451
|
/**
|
|
5335
|
-
*
|
|
5452
|
+
* 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.
|
|
5336
5453
|
*/
|
|
5337
5454
|
subdomain?: string;
|
|
5338
5455
|
/**
|
|
@@ -5404,7 +5521,7 @@ export interface GetResourceResourceMongoLegacyReplicaset {
|
|
|
5404
5521
|
*/
|
|
5405
5522
|
secretStoreId?: string;
|
|
5406
5523
|
/**
|
|
5407
|
-
*
|
|
5524
|
+
* 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.
|
|
5408
5525
|
*/
|
|
5409
5526
|
subdomain?: string;
|
|
5410
5527
|
/**
|
|
@@ -5476,7 +5593,7 @@ export interface GetResourceResourceMongoReplicaSet {
|
|
|
5476
5593
|
*/
|
|
5477
5594
|
secretStoreId?: string;
|
|
5478
5595
|
/**
|
|
5479
|
-
*
|
|
5596
|
+
* 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.
|
|
5480
5597
|
*/
|
|
5481
5598
|
subdomain?: string;
|
|
5482
5599
|
/**
|
|
@@ -5536,7 +5653,7 @@ export interface GetResourceResourceMongoShardedCluster {
|
|
|
5536
5653
|
*/
|
|
5537
5654
|
secretStoreId?: string;
|
|
5538
5655
|
/**
|
|
5539
|
-
*
|
|
5656
|
+
* 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.
|
|
5540
5657
|
*/
|
|
5541
5658
|
subdomain?: string;
|
|
5542
5659
|
/**
|
|
@@ -5620,7 +5737,7 @@ export interface GetResourceResourceMtlsMysql {
|
|
|
5620
5737
|
*/
|
|
5621
5738
|
serverName?: string;
|
|
5622
5739
|
/**
|
|
5623
|
-
*
|
|
5740
|
+
* 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.
|
|
5624
5741
|
*/
|
|
5625
5742
|
subdomain?: string;
|
|
5626
5743
|
/**
|
|
@@ -5704,7 +5821,7 @@ export interface GetResourceResourceMtlsPostgre {
|
|
|
5704
5821
|
*/
|
|
5705
5822
|
serverName?: string;
|
|
5706
5823
|
/**
|
|
5707
|
-
*
|
|
5824
|
+
* 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.
|
|
5708
5825
|
*/
|
|
5709
5826
|
subdomain?: string;
|
|
5710
5827
|
/**
|
|
@@ -5768,7 +5885,7 @@ export interface GetResourceResourceMysql {
|
|
|
5768
5885
|
*/
|
|
5769
5886
|
secretStoreId?: string;
|
|
5770
5887
|
/**
|
|
5771
|
-
*
|
|
5888
|
+
* 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.
|
|
5772
5889
|
*/
|
|
5773
5890
|
subdomain?: string;
|
|
5774
5891
|
/**
|
|
@@ -5824,7 +5941,7 @@ export interface GetResourceResourceNeptune {
|
|
|
5824
5941
|
*/
|
|
5825
5942
|
secretStoreId?: string;
|
|
5826
5943
|
/**
|
|
5827
|
-
*
|
|
5944
|
+
* 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.
|
|
5828
5945
|
*/
|
|
5829
5946
|
subdomain?: string;
|
|
5830
5947
|
/**
|
|
@@ -5892,7 +6009,7 @@ export interface GetResourceResourceNeptuneIam {
|
|
|
5892
6009
|
*/
|
|
5893
6010
|
secretStoreId?: string;
|
|
5894
6011
|
/**
|
|
5895
|
-
*
|
|
6012
|
+
* 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.
|
|
5896
6013
|
*/
|
|
5897
6014
|
subdomain?: string;
|
|
5898
6015
|
/**
|
|
@@ -5948,7 +6065,7 @@ export interface GetResourceResourceOracle {
|
|
|
5948
6065
|
*/
|
|
5949
6066
|
secretStoreId?: string;
|
|
5950
6067
|
/**
|
|
5951
|
-
*
|
|
6068
|
+
* 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.
|
|
5952
6069
|
*/
|
|
5953
6070
|
subdomain?: string;
|
|
5954
6071
|
/**
|
|
@@ -6012,7 +6129,7 @@ export interface GetResourceResourceOracleNne {
|
|
|
6012
6129
|
*/
|
|
6013
6130
|
secretStoreId?: string;
|
|
6014
6131
|
/**
|
|
6015
|
-
*
|
|
6132
|
+
* 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.
|
|
6016
6133
|
*/
|
|
6017
6134
|
subdomain?: string;
|
|
6018
6135
|
/**
|
|
@@ -6021,6 +6138,10 @@ export interface GetResourceResourceOracleNne {
|
|
|
6021
6138
|
tags?: {
|
|
6022
6139
|
[key: string]: string;
|
|
6023
6140
|
};
|
|
6141
|
+
/**
|
|
6142
|
+
* If set, TLS must be used to connect to this resource.
|
|
6143
|
+
*/
|
|
6144
|
+
tlsRequired?: boolean;
|
|
6024
6145
|
/**
|
|
6025
6146
|
* The username to authenticate with.
|
|
6026
6147
|
*/
|
|
@@ -6076,7 +6197,7 @@ export interface GetResourceResourcePostgre {
|
|
|
6076
6197
|
*/
|
|
6077
6198
|
secretStoreId?: string;
|
|
6078
6199
|
/**
|
|
6079
|
-
*
|
|
6200
|
+
* 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.
|
|
6080
6201
|
*/
|
|
6081
6202
|
subdomain?: string;
|
|
6082
6203
|
/**
|
|
@@ -6136,7 +6257,7 @@ export interface GetResourceResourcePresto {
|
|
|
6136
6257
|
*/
|
|
6137
6258
|
secretStoreId?: string;
|
|
6138
6259
|
/**
|
|
6139
|
-
*
|
|
6260
|
+
* 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
6261
|
*/
|
|
6141
6262
|
subdomain?: string;
|
|
6142
6263
|
/**
|
|
@@ -6196,7 +6317,7 @@ export interface GetResourceResourceRabbitmqAmqp091 {
|
|
|
6196
6317
|
*/
|
|
6197
6318
|
secretStoreId?: string;
|
|
6198
6319
|
/**
|
|
6199
|
-
*
|
|
6320
|
+
* 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.
|
|
6200
6321
|
*/
|
|
6201
6322
|
subdomain?: string;
|
|
6202
6323
|
/**
|
|
@@ -6252,7 +6373,7 @@ export interface GetResourceResourceRawTcp {
|
|
|
6252
6373
|
*/
|
|
6253
6374
|
secretStoreId?: string;
|
|
6254
6375
|
/**
|
|
6255
|
-
*
|
|
6376
|
+
* 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.
|
|
6256
6377
|
*/
|
|
6257
6378
|
subdomain?: string;
|
|
6258
6379
|
/**
|
|
@@ -6312,7 +6433,7 @@ export interface GetResourceResourceRdp {
|
|
|
6312
6433
|
*/
|
|
6313
6434
|
secretStoreId?: string;
|
|
6314
6435
|
/**
|
|
6315
|
-
*
|
|
6436
|
+
* 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.
|
|
6316
6437
|
*/
|
|
6317
6438
|
subdomain?: string;
|
|
6318
6439
|
/**
|
|
@@ -6331,6 +6452,10 @@ export interface GetResourceResourceRdpCert {
|
|
|
6331
6452
|
* 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.
|
|
6332
6453
|
*/
|
|
6333
6454
|
bindInterface?: string;
|
|
6455
|
+
/**
|
|
6456
|
+
* 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.
|
|
6457
|
+
*/
|
|
6458
|
+
dcHostnames?: string;
|
|
6334
6459
|
/**
|
|
6335
6460
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6336
6461
|
*/
|
|
@@ -6380,7 +6505,7 @@ export interface GetResourceResourceRdpCert {
|
|
|
6380
6505
|
*/
|
|
6381
6506
|
sid?: string;
|
|
6382
6507
|
/**
|
|
6383
|
-
*
|
|
6508
|
+
* 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.
|
|
6384
6509
|
*/
|
|
6385
6510
|
subdomain?: string;
|
|
6386
6511
|
/**
|
|
@@ -6448,7 +6573,7 @@ export interface GetResourceResourceRdsPostgresIam {
|
|
|
6448
6573
|
*/
|
|
6449
6574
|
secretStoreId?: string;
|
|
6450
6575
|
/**
|
|
6451
|
-
*
|
|
6576
|
+
* 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.
|
|
6452
6577
|
*/
|
|
6453
6578
|
subdomain?: string;
|
|
6454
6579
|
/**
|
|
@@ -6504,7 +6629,7 @@ export interface GetResourceResourceRedi {
|
|
|
6504
6629
|
*/
|
|
6505
6630
|
secretStoreId?: string;
|
|
6506
6631
|
/**
|
|
6507
|
-
*
|
|
6632
|
+
* 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.
|
|
6508
6633
|
*/
|
|
6509
6634
|
subdomain?: string;
|
|
6510
6635
|
/**
|
|
@@ -6564,7 +6689,7 @@ export interface GetResourceResourceRedisCluster {
|
|
|
6564
6689
|
*/
|
|
6565
6690
|
secretStoreId?: string;
|
|
6566
6691
|
/**
|
|
6567
|
-
*
|
|
6692
|
+
* 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.
|
|
6568
6693
|
*/
|
|
6569
6694
|
subdomain?: string;
|
|
6570
6695
|
/**
|
|
@@ -6632,7 +6757,7 @@ export interface GetResourceResourceRedshift {
|
|
|
6632
6757
|
*/
|
|
6633
6758
|
secretStoreId?: string;
|
|
6634
6759
|
/**
|
|
6635
|
-
*
|
|
6760
|
+
* 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.
|
|
6636
6761
|
*/
|
|
6637
6762
|
subdomain?: string;
|
|
6638
6763
|
/**
|
|
@@ -6704,7 +6829,7 @@ export interface GetResourceResourceRedshiftIam {
|
|
|
6704
6829
|
*/
|
|
6705
6830
|
secretStoreId?: string;
|
|
6706
6831
|
/**
|
|
6707
|
-
*
|
|
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.
|
|
6708
6833
|
*/
|
|
6709
6834
|
subdomain?: string;
|
|
6710
6835
|
/**
|
|
@@ -6768,7 +6893,7 @@ export interface GetResourceResourceRedshiftServerlessIam {
|
|
|
6768
6893
|
*/
|
|
6769
6894
|
secretStoreId?: string;
|
|
6770
6895
|
/**
|
|
6771
|
-
*
|
|
6896
|
+
* 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.
|
|
6772
6897
|
*/
|
|
6773
6898
|
subdomain?: string;
|
|
6774
6899
|
/**
|
|
@@ -6833,7 +6958,7 @@ export interface GetResourceResourceSingleStore {
|
|
|
6833
6958
|
*/
|
|
6834
6959
|
secretStoreId?: string;
|
|
6835
6960
|
/**
|
|
6836
|
-
*
|
|
6961
|
+
* 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.
|
|
6837
6962
|
*/
|
|
6838
6963
|
subdomain?: string;
|
|
6839
6964
|
/**
|
|
@@ -6901,7 +7026,7 @@ export interface GetResourceResourceSnowflake {
|
|
|
6901
7026
|
*/
|
|
6902
7027
|
secretStoreId?: string;
|
|
6903
7028
|
/**
|
|
6904
|
-
*
|
|
7029
|
+
* 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.
|
|
6905
7030
|
*/
|
|
6906
7031
|
subdomain?: string;
|
|
6907
7032
|
/**
|
|
@@ -6920,6 +7045,10 @@ export interface GetResourceResourceSnowsight {
|
|
|
6920
7045
|
* 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.
|
|
6921
7046
|
*/
|
|
6922
7047
|
bindInterface?: string;
|
|
7048
|
+
/**
|
|
7049
|
+
* If true, select the ACS with isDefault=true
|
|
7050
|
+
*/
|
|
7051
|
+
connectToDefault?: boolean;
|
|
6923
7052
|
/**
|
|
6924
7053
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6925
7054
|
*/
|
|
@@ -6953,7 +7082,7 @@ export interface GetResourceResourceSnowsight {
|
|
|
6953
7082
|
*/
|
|
6954
7083
|
secretStoreId?: string;
|
|
6955
7084
|
/**
|
|
6956
|
-
*
|
|
7085
|
+
* 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.
|
|
6957
7086
|
*/
|
|
6958
7087
|
subdomain?: string;
|
|
6959
7088
|
/**
|
|
@@ -7021,7 +7150,7 @@ export interface GetResourceResourceSqlServer {
|
|
|
7021
7150
|
*/
|
|
7022
7151
|
secretStoreId?: string;
|
|
7023
7152
|
/**
|
|
7024
|
-
*
|
|
7153
|
+
* 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.
|
|
7025
7154
|
*/
|
|
7026
7155
|
subdomain?: string;
|
|
7027
7156
|
/**
|
|
@@ -7097,7 +7226,7 @@ export interface GetResourceResourceSqlServerAzureAd {
|
|
|
7097
7226
|
*/
|
|
7098
7227
|
secretStoreId?: string;
|
|
7099
7228
|
/**
|
|
7100
|
-
*
|
|
7229
|
+
* 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.
|
|
7101
7230
|
*/
|
|
7102
7231
|
subdomain?: string;
|
|
7103
7232
|
/**
|
|
@@ -7182,7 +7311,7 @@ export interface GetResourceResourceSqlServerKerberosAd {
|
|
|
7182
7311
|
*/
|
|
7183
7312
|
serverSpn?: string;
|
|
7184
7313
|
/**
|
|
7185
|
-
*
|
|
7314
|
+
* 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.
|
|
7186
7315
|
*/
|
|
7187
7316
|
subdomain?: string;
|
|
7188
7317
|
/**
|
|
@@ -7250,7 +7379,7 @@ export interface GetResourceResourceSsh {
|
|
|
7250
7379
|
*/
|
|
7251
7380
|
secretStoreId?: string;
|
|
7252
7381
|
/**
|
|
7253
|
-
*
|
|
7382
|
+
* 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.
|
|
7254
7383
|
*/
|
|
7255
7384
|
subdomain?: string;
|
|
7256
7385
|
/**
|
|
@@ -7322,7 +7451,7 @@ export interface GetResourceResourceSshCert {
|
|
|
7322
7451
|
*/
|
|
7323
7452
|
secretStoreId?: string;
|
|
7324
7453
|
/**
|
|
7325
|
-
*
|
|
7454
|
+
* 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.
|
|
7326
7455
|
*/
|
|
7327
7456
|
subdomain?: string;
|
|
7328
7457
|
/**
|
|
@@ -7394,7 +7523,7 @@ export interface GetResourceResourceSshCustomerKey {
|
|
|
7394
7523
|
*/
|
|
7395
7524
|
secretStoreId?: string;
|
|
7396
7525
|
/**
|
|
7397
|
-
*
|
|
7526
|
+
* 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.
|
|
7398
7527
|
*/
|
|
7399
7528
|
subdomain?: string;
|
|
7400
7529
|
/**
|
|
@@ -7458,7 +7587,7 @@ export interface GetResourceResourceSshPassword {
|
|
|
7458
7587
|
*/
|
|
7459
7588
|
secretStoreId?: string;
|
|
7460
7589
|
/**
|
|
7461
|
-
*
|
|
7590
|
+
* 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.
|
|
7462
7591
|
*/
|
|
7463
7592
|
subdomain?: string;
|
|
7464
7593
|
/**
|
|
@@ -7514,7 +7643,7 @@ export interface GetResourceResourceSybase {
|
|
|
7514
7643
|
*/
|
|
7515
7644
|
secretStoreId?: string;
|
|
7516
7645
|
/**
|
|
7517
|
-
*
|
|
7646
|
+
* 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.
|
|
7518
7647
|
*/
|
|
7519
7648
|
subdomain?: string;
|
|
7520
7649
|
/**
|
|
@@ -7570,7 +7699,7 @@ export interface GetResourceResourceSybaseIq {
|
|
|
7570
7699
|
*/
|
|
7571
7700
|
secretStoreId?: string;
|
|
7572
7701
|
/**
|
|
7573
|
-
*
|
|
7702
|
+
* 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.
|
|
7574
7703
|
*/
|
|
7575
7704
|
subdomain?: string;
|
|
7576
7705
|
/**
|
|
@@ -7626,7 +7755,7 @@ export interface GetResourceResourceTeradata {
|
|
|
7626
7755
|
*/
|
|
7627
7756
|
secretStoreId?: string;
|
|
7628
7757
|
/**
|
|
7629
|
-
*
|
|
7758
|
+
* 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.
|
|
7630
7759
|
*/
|
|
7631
7760
|
subdomain?: string;
|
|
7632
7761
|
/**
|
|
@@ -7682,7 +7811,7 @@ export interface GetResourceResourceTrino {
|
|
|
7682
7811
|
*/
|
|
7683
7812
|
secretStoreId?: string;
|
|
7684
7813
|
/**
|
|
7685
|
-
*
|
|
7814
|
+
* 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.
|
|
7686
7815
|
*/
|
|
7687
7816
|
subdomain?: string;
|
|
7688
7817
|
/**
|
|
@@ -7746,7 +7875,7 @@ export interface GetResourceResourceVertica {
|
|
|
7746
7875
|
*/
|
|
7747
7876
|
secretStoreId?: string;
|
|
7748
7877
|
/**
|
|
7749
|
-
*
|
|
7878
|
+
* 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.
|
|
7750
7879
|
*/
|
|
7751
7880
|
subdomain?: string;
|
|
7752
7881
|
/**
|
|
@@ -7787,6 +7916,7 @@ export interface GetRoleRole {
|
|
|
7787
7916
|
export interface GetSecretEngineSecretEngine {
|
|
7788
7917
|
activeDirectories: outputs.GetSecretEngineSecretEngineActiveDirectory[];
|
|
7789
7918
|
keyValues: outputs.GetSecretEngineSecretEngineKeyValue[];
|
|
7919
|
+
postgresSecretEngines: outputs.GetSecretEngineSecretEnginePostgresSecretEngine[];
|
|
7790
7920
|
}
|
|
7791
7921
|
export interface GetSecretEngineSecretEngineActiveDirectory {
|
|
7792
7922
|
/**
|
|
@@ -7908,6 +8038,70 @@ export interface GetSecretEngineSecretEngineKeyValue {
|
|
|
7908
8038
|
[key: string]: string;
|
|
7909
8039
|
};
|
|
7910
8040
|
}
|
|
8041
|
+
export interface GetSecretEngineSecretEnginePostgresSecretEngine {
|
|
8042
|
+
/**
|
|
8043
|
+
* The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
|
|
8044
|
+
*/
|
|
8045
|
+
afterReadTtl?: string;
|
|
8046
|
+
/**
|
|
8047
|
+
* Database is the database to verify credential against.
|
|
8048
|
+
*/
|
|
8049
|
+
database?: string;
|
|
8050
|
+
/**
|
|
8051
|
+
* Hostname is the hostname or IP address of the Postgres server.
|
|
8052
|
+
*/
|
|
8053
|
+
hostname?: string;
|
|
8054
|
+
/**
|
|
8055
|
+
* Unique identifier of the Secret Engine.
|
|
8056
|
+
*/
|
|
8057
|
+
id?: string;
|
|
8058
|
+
/**
|
|
8059
|
+
* An interval of public/private key rotation for secret engine in days
|
|
8060
|
+
*/
|
|
8061
|
+
keyRotationIntervalDays?: number;
|
|
8062
|
+
/**
|
|
8063
|
+
* Unique human-readable name of the Secret Engine.
|
|
8064
|
+
*/
|
|
8065
|
+
name?: string;
|
|
8066
|
+
/**
|
|
8067
|
+
* Password is the password to connect to the Postgres server.
|
|
8068
|
+
*/
|
|
8069
|
+
password?: string;
|
|
8070
|
+
/**
|
|
8071
|
+
* Port is the port number of the Postgres server.
|
|
8072
|
+
*/
|
|
8073
|
+
port?: number;
|
|
8074
|
+
/**
|
|
8075
|
+
* Public key linked with a secret engine
|
|
8076
|
+
*/
|
|
8077
|
+
publicKey: string;
|
|
8078
|
+
/**
|
|
8079
|
+
* Backing secret store identifier
|
|
8080
|
+
*/
|
|
8081
|
+
secretStoreId?: string;
|
|
8082
|
+
/**
|
|
8083
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
8084
|
+
*/
|
|
8085
|
+
secretStoreRootPath?: string;
|
|
8086
|
+
/**
|
|
8087
|
+
* Tags is a map of key, value pairs.
|
|
8088
|
+
*/
|
|
8089
|
+
tags?: {
|
|
8090
|
+
[key: string]: string;
|
|
8091
|
+
};
|
|
8092
|
+
/**
|
|
8093
|
+
* TLS enables TLS/SSL when connecting to the Postgres server.
|
|
8094
|
+
*/
|
|
8095
|
+
tls?: boolean;
|
|
8096
|
+
/**
|
|
8097
|
+
* The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
|
|
8098
|
+
*/
|
|
8099
|
+
ttl?: string;
|
|
8100
|
+
/**
|
|
8101
|
+
* Username is the username to connect to the Postgres server.
|
|
8102
|
+
*/
|
|
8103
|
+
username?: string;
|
|
8104
|
+
}
|
|
7911
8105
|
export interface GetSecretStoreSecretStore {
|
|
7912
8106
|
activeDirectoryStores: outputs.GetSecretStoreSecretStoreActiveDirectoryStore[];
|
|
7913
8107
|
aws: outputs.GetSecretStoreSecretStoreAw[];
|
|
@@ -8867,7 +9061,7 @@ export interface ResourceAerospike {
|
|
|
8867
9061
|
*/
|
|
8868
9062
|
secretStoreId?: string;
|
|
8869
9063
|
/**
|
|
8870
|
-
*
|
|
9064
|
+
* 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.
|
|
8871
9065
|
*/
|
|
8872
9066
|
subdomain: string;
|
|
8873
9067
|
/**
|
|
@@ -8955,7 +9149,7 @@ export interface ResourceAks {
|
|
|
8955
9149
|
*/
|
|
8956
9150
|
secretStoreId?: string;
|
|
8957
9151
|
/**
|
|
8958
|
-
*
|
|
9152
|
+
* 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.
|
|
8959
9153
|
*/
|
|
8960
9154
|
subdomain: string;
|
|
8961
9155
|
/**
|
|
@@ -9007,7 +9201,7 @@ export interface ResourceAksBasicAuth {
|
|
|
9007
9201
|
*/
|
|
9008
9202
|
secretStoreId?: string;
|
|
9009
9203
|
/**
|
|
9010
|
-
*
|
|
9204
|
+
* 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.
|
|
9011
9205
|
*/
|
|
9012
9206
|
subdomain: string;
|
|
9013
9207
|
/**
|
|
@@ -9079,7 +9273,7 @@ export interface ResourceAksServiceAccount {
|
|
|
9079
9273
|
*/
|
|
9080
9274
|
secretStoreId?: string;
|
|
9081
9275
|
/**
|
|
9082
|
-
*
|
|
9276
|
+
* 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.
|
|
9083
9277
|
*/
|
|
9084
9278
|
subdomain: string;
|
|
9085
9279
|
/**
|
|
@@ -9132,7 +9326,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
9132
9326
|
*/
|
|
9133
9327
|
secretStoreId?: string;
|
|
9134
9328
|
/**
|
|
9135
|
-
*
|
|
9329
|
+
* 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.
|
|
9136
9330
|
*/
|
|
9137
9331
|
subdomain: string;
|
|
9138
9332
|
/**
|
|
@@ -9197,7 +9391,7 @@ export interface ResourceAksUserImpersonation {
|
|
|
9197
9391
|
*/
|
|
9198
9392
|
secretStoreId?: string;
|
|
9199
9393
|
/**
|
|
9200
|
-
*
|
|
9394
|
+
* 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.
|
|
9201
9395
|
*/
|
|
9202
9396
|
subdomain: string;
|
|
9203
9397
|
/**
|
|
@@ -9289,7 +9483,7 @@ export interface ResourceAmazonEks {
|
|
|
9289
9483
|
*/
|
|
9290
9484
|
secretStoreId?: string;
|
|
9291
9485
|
/**
|
|
9292
|
-
*
|
|
9486
|
+
* 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.
|
|
9293
9487
|
*/
|
|
9294
9488
|
subdomain: string;
|
|
9295
9489
|
/**
|
|
@@ -9373,7 +9567,7 @@ export interface ResourceAmazonEksInstanceProfile {
|
|
|
9373
9567
|
*/
|
|
9374
9568
|
secretStoreId?: string;
|
|
9375
9569
|
/**
|
|
9376
|
-
*
|
|
9570
|
+
* 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.
|
|
9377
9571
|
*/
|
|
9378
9572
|
subdomain: string;
|
|
9379
9573
|
/**
|
|
@@ -9437,7 +9631,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
|
9437
9631
|
*/
|
|
9438
9632
|
secretStoreId?: string;
|
|
9439
9633
|
/**
|
|
9440
|
-
*
|
|
9634
|
+
* 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.
|
|
9441
9635
|
*/
|
|
9442
9636
|
subdomain: string;
|
|
9443
9637
|
/**
|
|
@@ -9509,7 +9703,7 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
9509
9703
|
*/
|
|
9510
9704
|
secretStoreId?: string;
|
|
9511
9705
|
/**
|
|
9512
|
-
*
|
|
9706
|
+
* 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.
|
|
9513
9707
|
*/
|
|
9514
9708
|
subdomain: string;
|
|
9515
9709
|
/**
|
|
@@ -9569,7 +9763,7 @@ export interface ResourceAmazonEs {
|
|
|
9569
9763
|
*/
|
|
9570
9764
|
secretStoreId?: string;
|
|
9571
9765
|
/**
|
|
9572
|
-
*
|
|
9766
|
+
* 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.
|
|
9573
9767
|
*/
|
|
9574
9768
|
subdomain: string;
|
|
9575
9769
|
/**
|
|
@@ -9621,7 +9815,7 @@ export interface ResourceAmazonEsiam {
|
|
|
9621
9815
|
*/
|
|
9622
9816
|
secretStoreId?: string;
|
|
9623
9817
|
/**
|
|
9624
|
-
*
|
|
9818
|
+
* 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.
|
|
9625
9819
|
*/
|
|
9626
9820
|
subdomain: string;
|
|
9627
9821
|
/**
|
|
@@ -9673,7 +9867,7 @@ export interface ResourceAmazonmqAmqp {
|
|
|
9673
9867
|
*/
|
|
9674
9868
|
secretStoreId?: string;
|
|
9675
9869
|
/**
|
|
9676
|
-
*
|
|
9870
|
+
* 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.
|
|
9677
9871
|
*/
|
|
9678
9872
|
subdomain: string;
|
|
9679
9873
|
/**
|
|
@@ -9729,7 +9923,7 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
9729
9923
|
*/
|
|
9730
9924
|
secretStoreId?: string;
|
|
9731
9925
|
/**
|
|
9732
|
-
*
|
|
9926
|
+
* 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.
|
|
9733
9927
|
*/
|
|
9734
9928
|
subdomain: string;
|
|
9735
9929
|
/**
|
|
@@ -9797,7 +9991,7 @@ export interface ResourceAthena {
|
|
|
9797
9991
|
*/
|
|
9798
9992
|
secretStoreId?: string;
|
|
9799
9993
|
/**
|
|
9800
|
-
*
|
|
9994
|
+
* 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.
|
|
9801
9995
|
*/
|
|
9802
9996
|
subdomain: string;
|
|
9803
9997
|
/**
|
|
@@ -9849,7 +10043,7 @@ export interface ResourceAthenaIam {
|
|
|
9849
10043
|
*/
|
|
9850
10044
|
secretStoreId?: string;
|
|
9851
10045
|
/**
|
|
9852
|
-
*
|
|
10046
|
+
* 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.
|
|
9853
10047
|
*/
|
|
9854
10048
|
subdomain: string;
|
|
9855
10049
|
/**
|
|
@@ -9905,7 +10099,7 @@ export interface ResourceAuroraMysql {
|
|
|
9905
10099
|
*/
|
|
9906
10100
|
secretStoreId?: string;
|
|
9907
10101
|
/**
|
|
9908
|
-
*
|
|
10102
|
+
* 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.
|
|
9909
10103
|
*/
|
|
9910
10104
|
subdomain: string;
|
|
9911
10105
|
/**
|
|
@@ -9969,7 +10163,7 @@ export interface ResourceAuroraMysqlIam {
|
|
|
9969
10163
|
*/
|
|
9970
10164
|
secretStoreId?: string;
|
|
9971
10165
|
/**
|
|
9972
|
-
*
|
|
10166
|
+
* 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.
|
|
9973
10167
|
*/
|
|
9974
10168
|
subdomain: string;
|
|
9975
10169
|
/**
|
|
@@ -10029,7 +10223,7 @@ export interface ResourceAuroraPostgres {
|
|
|
10029
10223
|
*/
|
|
10030
10224
|
secretStoreId?: string;
|
|
10031
10225
|
/**
|
|
10032
|
-
*
|
|
10226
|
+
* 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.
|
|
10033
10227
|
*/
|
|
10034
10228
|
subdomain: string;
|
|
10035
10229
|
/**
|
|
@@ -10093,7 +10287,7 @@ export interface ResourceAuroraPostgresIam {
|
|
|
10093
10287
|
*/
|
|
10094
10288
|
secretStoreId?: string;
|
|
10095
10289
|
/**
|
|
10096
|
-
*
|
|
10290
|
+
* 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.
|
|
10097
10291
|
*/
|
|
10098
10292
|
subdomain: string;
|
|
10099
10293
|
/**
|
|
@@ -10153,7 +10347,7 @@ export interface ResourceAws {
|
|
|
10153
10347
|
*/
|
|
10154
10348
|
secretStoreId?: string;
|
|
10155
10349
|
/**
|
|
10156
|
-
*
|
|
10350
|
+
* 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.
|
|
10157
10351
|
*/
|
|
10158
10352
|
subdomain: string;
|
|
10159
10353
|
/**
|
|
@@ -10217,7 +10411,7 @@ export interface ResourceAwsConsole {
|
|
|
10217
10411
|
*/
|
|
10218
10412
|
sessionExpiry?: number;
|
|
10219
10413
|
/**
|
|
10220
|
-
*
|
|
10414
|
+
* 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.
|
|
10221
10415
|
*/
|
|
10222
10416
|
subdomain: string;
|
|
10223
10417
|
/**
|
|
@@ -10285,7 +10479,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
10285
10479
|
*/
|
|
10286
10480
|
sessionExpiry?: number;
|
|
10287
10481
|
/**
|
|
10288
|
-
*
|
|
10482
|
+
* 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.
|
|
10289
10483
|
*/
|
|
10290
10484
|
subdomain: string;
|
|
10291
10485
|
/**
|
|
@@ -10337,7 +10531,7 @@ export interface ResourceAwsInstanceProfile {
|
|
|
10337
10531
|
*/
|
|
10338
10532
|
secretStoreId?: string;
|
|
10339
10533
|
/**
|
|
10340
|
-
*
|
|
10534
|
+
* 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.
|
|
10341
10535
|
*/
|
|
10342
10536
|
subdomain: string;
|
|
10343
10537
|
/**
|
|
@@ -10381,7 +10575,7 @@ export interface ResourceAzure {
|
|
|
10381
10575
|
*/
|
|
10382
10576
|
secretStoreId?: string;
|
|
10383
10577
|
/**
|
|
10384
|
-
*
|
|
10578
|
+
* 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.
|
|
10385
10579
|
*/
|
|
10386
10580
|
subdomain: string;
|
|
10387
10581
|
/**
|
|
@@ -10430,7 +10624,7 @@ export interface ResourceAzureCertificate {
|
|
|
10430
10624
|
*/
|
|
10431
10625
|
secretStoreId?: string;
|
|
10432
10626
|
/**
|
|
10433
|
-
*
|
|
10627
|
+
* 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.
|
|
10434
10628
|
*/
|
|
10435
10629
|
subdomain: string;
|
|
10436
10630
|
/**
|
|
@@ -10491,7 +10685,7 @@ export interface ResourceAzureMysql {
|
|
|
10491
10685
|
*/
|
|
10492
10686
|
secretStoreId?: string;
|
|
10493
10687
|
/**
|
|
10494
|
-
*
|
|
10688
|
+
* 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.
|
|
10495
10689
|
*/
|
|
10496
10690
|
subdomain: string;
|
|
10497
10691
|
/**
|
|
@@ -10551,7 +10745,7 @@ export interface ResourceAzureMysqlManagedIdentity {
|
|
|
10551
10745
|
*/
|
|
10552
10746
|
secretStoreId?: string;
|
|
10553
10747
|
/**
|
|
10554
|
-
*
|
|
10748
|
+
* 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.
|
|
10555
10749
|
*/
|
|
10556
10750
|
subdomain: string;
|
|
10557
10751
|
/**
|
|
@@ -10615,7 +10809,7 @@ export interface ResourceAzurePostgres {
|
|
|
10615
10809
|
*/
|
|
10616
10810
|
secretStoreId?: string;
|
|
10617
10811
|
/**
|
|
10618
|
-
*
|
|
10812
|
+
* 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.
|
|
10619
10813
|
*/
|
|
10620
10814
|
subdomain: string;
|
|
10621
10815
|
/**
|
|
@@ -10675,7 +10869,7 @@ export interface ResourceAzurePostgresManagedIdentity {
|
|
|
10675
10869
|
*/
|
|
10676
10870
|
secretStoreId?: string;
|
|
10677
10871
|
/**
|
|
10678
|
-
*
|
|
10872
|
+
* 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.
|
|
10679
10873
|
*/
|
|
10680
10874
|
subdomain: string;
|
|
10681
10875
|
/**
|
|
@@ -10731,7 +10925,7 @@ export interface ResourceBigQuery {
|
|
|
10731
10925
|
*/
|
|
10732
10926
|
secretStoreId?: string;
|
|
10733
10927
|
/**
|
|
10734
|
-
*
|
|
10928
|
+
* 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.
|
|
10735
10929
|
*/
|
|
10736
10930
|
subdomain: string;
|
|
10737
10931
|
/**
|
|
@@ -10783,7 +10977,7 @@ export interface ResourceCassandra {
|
|
|
10783
10977
|
*/
|
|
10784
10978
|
secretStoreId?: string;
|
|
10785
10979
|
/**
|
|
10786
|
-
*
|
|
10980
|
+
* 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.
|
|
10787
10981
|
*/
|
|
10788
10982
|
subdomain: string;
|
|
10789
10983
|
/**
|
|
@@ -10847,7 +11041,7 @@ export interface ResourceCitus {
|
|
|
10847
11041
|
*/
|
|
10848
11042
|
secretStoreId?: string;
|
|
10849
11043
|
/**
|
|
10850
|
-
*
|
|
11044
|
+
* 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.
|
|
10851
11045
|
*/
|
|
10852
11046
|
subdomain: string;
|
|
10853
11047
|
/**
|
|
@@ -10956,7 +11150,7 @@ export interface ResourceClickHouseMySql {
|
|
|
10956
11150
|
*/
|
|
10957
11151
|
secretStoreId?: string;
|
|
10958
11152
|
/**
|
|
10959
|
-
*
|
|
11153
|
+
* 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.
|
|
10960
11154
|
*/
|
|
10961
11155
|
subdomain: string;
|
|
10962
11156
|
/**
|
|
@@ -11012,7 +11206,7 @@ export interface ResourceClickHouseTcp {
|
|
|
11012
11206
|
*/
|
|
11013
11207
|
secretStoreId?: string;
|
|
11014
11208
|
/**
|
|
11015
|
-
*
|
|
11209
|
+
* 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.
|
|
11016
11210
|
*/
|
|
11017
11211
|
subdomain: string;
|
|
11018
11212
|
/**
|
|
@@ -11076,7 +11270,7 @@ export interface ResourceClustrix {
|
|
|
11076
11270
|
*/
|
|
11077
11271
|
secretStoreId?: string;
|
|
11078
11272
|
/**
|
|
11079
|
-
*
|
|
11273
|
+
* 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.
|
|
11080
11274
|
*/
|
|
11081
11275
|
subdomain: string;
|
|
11082
11276
|
/**
|
|
@@ -11140,7 +11334,7 @@ export interface ResourceCockroach {
|
|
|
11140
11334
|
*/
|
|
11141
11335
|
secretStoreId?: string;
|
|
11142
11336
|
/**
|
|
11143
|
-
*
|
|
11337
|
+
* 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.
|
|
11144
11338
|
*/
|
|
11145
11339
|
subdomain: string;
|
|
11146
11340
|
/**
|
|
@@ -11196,7 +11390,7 @@ export interface ResourceCouchbaseDatabase {
|
|
|
11196
11390
|
*/
|
|
11197
11391
|
secretStoreId?: string;
|
|
11198
11392
|
/**
|
|
11199
|
-
*
|
|
11393
|
+
* 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.
|
|
11200
11394
|
*/
|
|
11201
11395
|
subdomain: string;
|
|
11202
11396
|
/**
|
|
@@ -11244,7 +11438,7 @@ export interface ResourceCouchbaseWebUi {
|
|
|
11244
11438
|
*/
|
|
11245
11439
|
secretStoreId?: string;
|
|
11246
11440
|
/**
|
|
11247
|
-
*
|
|
11441
|
+
* 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.
|
|
11248
11442
|
*/
|
|
11249
11443
|
subdomain: string;
|
|
11250
11444
|
/**
|
|
@@ -11301,7 +11495,7 @@ export interface ResourceDb2I {
|
|
|
11301
11495
|
*/
|
|
11302
11496
|
secretStoreId?: string;
|
|
11303
11497
|
/**
|
|
11304
|
-
*
|
|
11498
|
+
* 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.
|
|
11305
11499
|
*/
|
|
11306
11500
|
subdomain: string;
|
|
11307
11501
|
/**
|
|
@@ -11361,7 +11555,7 @@ export interface ResourceDb2Luw {
|
|
|
11361
11555
|
*/
|
|
11362
11556
|
secretStoreId?: string;
|
|
11363
11557
|
/**
|
|
11364
|
-
*
|
|
11558
|
+
* 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.
|
|
11365
11559
|
*/
|
|
11366
11560
|
subdomain: string;
|
|
11367
11561
|
/**
|
|
@@ -11421,7 +11615,7 @@ export interface ResourceDocumentDbHost {
|
|
|
11421
11615
|
*/
|
|
11422
11616
|
secretStoreId?: string;
|
|
11423
11617
|
/**
|
|
11424
|
-
*
|
|
11618
|
+
* 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.
|
|
11425
11619
|
*/
|
|
11426
11620
|
subdomain: string;
|
|
11427
11621
|
/**
|
|
@@ -11473,7 +11667,7 @@ export interface ResourceDocumentDbHostIam {
|
|
|
11473
11667
|
*/
|
|
11474
11668
|
secretStoreId?: string;
|
|
11475
11669
|
/**
|
|
11476
|
-
*
|
|
11670
|
+
* 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.
|
|
11477
11671
|
*/
|
|
11478
11672
|
subdomain: string;
|
|
11479
11673
|
/**
|
|
@@ -11529,7 +11723,7 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
11529
11723
|
*/
|
|
11530
11724
|
secretStoreId?: string;
|
|
11531
11725
|
/**
|
|
11532
|
-
*
|
|
11726
|
+
* 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.
|
|
11533
11727
|
*/
|
|
11534
11728
|
subdomain: string;
|
|
11535
11729
|
/**
|
|
@@ -11581,7 +11775,7 @@ export interface ResourceDocumentDbReplicaSetIam {
|
|
|
11581
11775
|
*/
|
|
11582
11776
|
secretStoreId?: string;
|
|
11583
11777
|
/**
|
|
11584
|
-
*
|
|
11778
|
+
* 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.
|
|
11585
11779
|
*/
|
|
11586
11780
|
subdomain: string;
|
|
11587
11781
|
/**
|
|
@@ -11629,7 +11823,7 @@ export interface ResourceDruid {
|
|
|
11629
11823
|
*/
|
|
11630
11824
|
secretStoreId?: string;
|
|
11631
11825
|
/**
|
|
11632
|
-
*
|
|
11826
|
+
* 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.
|
|
11633
11827
|
*/
|
|
11634
11828
|
subdomain: string;
|
|
11635
11829
|
/**
|
|
@@ -11693,7 +11887,7 @@ export interface ResourceDynamoDb {
|
|
|
11693
11887
|
*/
|
|
11694
11888
|
secretStoreId?: string;
|
|
11695
11889
|
/**
|
|
11696
|
-
*
|
|
11890
|
+
* 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.
|
|
11697
11891
|
*/
|
|
11698
11892
|
subdomain: string;
|
|
11699
11893
|
/**
|
|
@@ -11745,7 +11939,7 @@ export interface ResourceDynamoDbiam {
|
|
|
11745
11939
|
*/
|
|
11746
11940
|
secretStoreId?: string;
|
|
11747
11941
|
/**
|
|
11748
|
-
*
|
|
11942
|
+
* 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.
|
|
11749
11943
|
*/
|
|
11750
11944
|
subdomain: string;
|
|
11751
11945
|
/**
|
|
@@ -11793,7 +11987,7 @@ export interface ResourceElastic {
|
|
|
11793
11987
|
*/
|
|
11794
11988
|
secretStoreId?: string;
|
|
11795
11989
|
/**
|
|
11796
|
-
*
|
|
11990
|
+
* 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.
|
|
11797
11991
|
*/
|
|
11798
11992
|
subdomain: string;
|
|
11799
11993
|
/**
|
|
@@ -11849,7 +12043,7 @@ export interface ResourceElasticacheRedis {
|
|
|
11849
12043
|
*/
|
|
11850
12044
|
secretStoreId?: string;
|
|
11851
12045
|
/**
|
|
11852
|
-
*
|
|
12046
|
+
* 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.
|
|
11853
12047
|
*/
|
|
11854
12048
|
subdomain: string;
|
|
11855
12049
|
/**
|
|
@@ -11913,7 +12107,7 @@ export interface ResourceEntraId {
|
|
|
11913
12107
|
*/
|
|
11914
12108
|
secretStoreId?: string;
|
|
11915
12109
|
/**
|
|
11916
|
-
*
|
|
12110
|
+
* 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.
|
|
11917
12111
|
*/
|
|
11918
12112
|
subdomain: string;
|
|
11919
12113
|
/**
|
|
@@ -11966,7 +12160,7 @@ export interface ResourceGcp {
|
|
|
11966
12160
|
*/
|
|
11967
12161
|
secretStoreId?: string;
|
|
11968
12162
|
/**
|
|
11969
|
-
*
|
|
12163
|
+
* 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.
|
|
11970
12164
|
*/
|
|
11971
12165
|
subdomain: string;
|
|
11972
12166
|
/**
|
|
@@ -12014,7 +12208,7 @@ export interface ResourceGcpConsole {
|
|
|
12014
12208
|
*/
|
|
12015
12209
|
sessionExpiry?: number;
|
|
12016
12210
|
/**
|
|
12017
|
-
*
|
|
12211
|
+
* 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.
|
|
12018
12212
|
*/
|
|
12019
12213
|
subdomain: string;
|
|
12020
12214
|
/**
|
|
@@ -12079,7 +12273,7 @@ export interface ResourceGcpwif {
|
|
|
12079
12273
|
*/
|
|
12080
12274
|
sessionExpiry?: number;
|
|
12081
12275
|
/**
|
|
12082
|
-
*
|
|
12276
|
+
* 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.
|
|
12083
12277
|
*/
|
|
12084
12278
|
subdomain: string;
|
|
12085
12279
|
/**
|
|
@@ -12160,7 +12354,7 @@ export interface ResourceGoogleGke {
|
|
|
12160
12354
|
*/
|
|
12161
12355
|
serviceAccountKey?: string;
|
|
12162
12356
|
/**
|
|
12163
|
-
*
|
|
12357
|
+
* 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.
|
|
12164
12358
|
*/
|
|
12165
12359
|
subdomain: string;
|
|
12166
12360
|
/**
|
|
@@ -12212,7 +12406,7 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
12212
12406
|
*/
|
|
12213
12407
|
serviceAccountKey?: string;
|
|
12214
12408
|
/**
|
|
12215
|
-
*
|
|
12409
|
+
* 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.
|
|
12216
12410
|
*/
|
|
12217
12411
|
subdomain: string;
|
|
12218
12412
|
/**
|
|
@@ -12268,7 +12462,7 @@ export interface ResourceGreenplum {
|
|
|
12268
12462
|
*/
|
|
12269
12463
|
secretStoreId?: string;
|
|
12270
12464
|
/**
|
|
12271
|
-
*
|
|
12465
|
+
* 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.
|
|
12272
12466
|
*/
|
|
12273
12467
|
subdomain: string;
|
|
12274
12468
|
/**
|
|
@@ -12328,7 +12522,7 @@ export interface ResourceHttpAuth {
|
|
|
12328
12522
|
*/
|
|
12329
12523
|
secretStoreId?: string;
|
|
12330
12524
|
/**
|
|
12331
|
-
*
|
|
12525
|
+
* 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.
|
|
12332
12526
|
*/
|
|
12333
12527
|
subdomain: string;
|
|
12334
12528
|
/**
|
|
@@ -12389,7 +12583,7 @@ export interface ResourceHttpBasicAuth {
|
|
|
12389
12583
|
*/
|
|
12390
12584
|
secretStoreId?: string;
|
|
12391
12585
|
/**
|
|
12392
|
-
*
|
|
12586
|
+
* 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.
|
|
12393
12587
|
*/
|
|
12394
12588
|
subdomain: string;
|
|
12395
12589
|
/**
|
|
@@ -12450,7 +12644,7 @@ export interface ResourceHttpNoAuth {
|
|
|
12450
12644
|
*/
|
|
12451
12645
|
secretStoreId?: string;
|
|
12452
12646
|
/**
|
|
12453
|
-
*
|
|
12647
|
+
* 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.
|
|
12454
12648
|
*/
|
|
12455
12649
|
subdomain: string;
|
|
12456
12650
|
/**
|
|
@@ -12535,7 +12729,7 @@ export interface ResourceKubernetes {
|
|
|
12535
12729
|
*/
|
|
12536
12730
|
secretStoreId?: string;
|
|
12537
12731
|
/**
|
|
12538
|
-
*
|
|
12732
|
+
* 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.
|
|
12539
12733
|
*/
|
|
12540
12734
|
subdomain: string;
|
|
12541
12735
|
/**
|
|
@@ -12587,7 +12781,7 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
12587
12781
|
*/
|
|
12588
12782
|
secretStoreId?: string;
|
|
12589
12783
|
/**
|
|
12590
|
-
*
|
|
12784
|
+
* 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.
|
|
12591
12785
|
*/
|
|
12592
12786
|
subdomain: string;
|
|
12593
12787
|
/**
|
|
@@ -12655,7 +12849,7 @@ export interface ResourceKubernetesPodIdentity {
|
|
|
12655
12849
|
*/
|
|
12656
12850
|
secretStoreId?: string;
|
|
12657
12851
|
/**
|
|
12658
|
-
*
|
|
12852
|
+
* 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.
|
|
12659
12853
|
*/
|
|
12660
12854
|
subdomain: string;
|
|
12661
12855
|
/**
|
|
@@ -12723,7 +12917,7 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
12723
12917
|
*/
|
|
12724
12918
|
secretStoreId?: string;
|
|
12725
12919
|
/**
|
|
12726
|
-
*
|
|
12920
|
+
* 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.
|
|
12727
12921
|
*/
|
|
12728
12922
|
subdomain: string;
|
|
12729
12923
|
/**
|
|
@@ -12776,7 +12970,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
12776
12970
|
*/
|
|
12777
12971
|
secretStoreId?: string;
|
|
12778
12972
|
/**
|
|
12779
|
-
*
|
|
12973
|
+
* 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.
|
|
12780
12974
|
*/
|
|
12781
12975
|
subdomain: string;
|
|
12782
12976
|
/**
|
|
@@ -12841,7 +13035,7 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
12841
13035
|
*/
|
|
12842
13036
|
secretStoreId?: string;
|
|
12843
13037
|
/**
|
|
12844
|
-
*
|
|
13038
|
+
* 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.
|
|
12845
13039
|
*/
|
|
12846
13040
|
subdomain: string;
|
|
12847
13041
|
/**
|
|
@@ -12897,7 +13091,7 @@ export interface ResourceMaria {
|
|
|
12897
13091
|
*/
|
|
12898
13092
|
secretStoreId?: string;
|
|
12899
13093
|
/**
|
|
12900
|
-
*
|
|
13094
|
+
* 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.
|
|
12901
13095
|
*/
|
|
12902
13096
|
subdomain: string;
|
|
12903
13097
|
/**
|
|
@@ -12915,6 +13109,54 @@ export interface ResourceMaria {
|
|
|
12915
13109
|
*/
|
|
12916
13110
|
username?: string;
|
|
12917
13111
|
}
|
|
13112
|
+
export interface ResourceMcp {
|
|
13113
|
+
/**
|
|
13114
|
+
* 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.
|
|
13115
|
+
*/
|
|
13116
|
+
bindInterface: string;
|
|
13117
|
+
/**
|
|
13118
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
13119
|
+
*/
|
|
13120
|
+
egressFilter?: string;
|
|
13121
|
+
/**
|
|
13122
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
13123
|
+
*/
|
|
13124
|
+
hostname: string;
|
|
13125
|
+
/**
|
|
13126
|
+
* Unique human-readable name of the Resource.
|
|
13127
|
+
*/
|
|
13128
|
+
name: string;
|
|
13129
|
+
/**
|
|
13130
|
+
* The password to authenticate with.
|
|
13131
|
+
*/
|
|
13132
|
+
password?: string;
|
|
13133
|
+
/**
|
|
13134
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
13135
|
+
*/
|
|
13136
|
+
port?: number;
|
|
13137
|
+
/**
|
|
13138
|
+
* 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.
|
|
13139
|
+
*/
|
|
13140
|
+
portOverride: number;
|
|
13141
|
+
/**
|
|
13142
|
+
* ID of the proxy cluster for this resource, if any.
|
|
13143
|
+
*/
|
|
13144
|
+
proxyClusterId?: string;
|
|
13145
|
+
/**
|
|
13146
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
13147
|
+
*/
|
|
13148
|
+
secretStoreId?: string;
|
|
13149
|
+
/**
|
|
13150
|
+
* 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.
|
|
13151
|
+
*/
|
|
13152
|
+
subdomain: string;
|
|
13153
|
+
/**
|
|
13154
|
+
* Tags is a map of key, value pairs.
|
|
13155
|
+
*/
|
|
13156
|
+
tags?: {
|
|
13157
|
+
[key: string]: string;
|
|
13158
|
+
};
|
|
13159
|
+
}
|
|
12918
13160
|
export interface ResourceMemcached {
|
|
12919
13161
|
/**
|
|
12920
13162
|
* 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.
|
|
@@ -12949,7 +13191,7 @@ export interface ResourceMemcached {
|
|
|
12949
13191
|
*/
|
|
12950
13192
|
secretStoreId?: string;
|
|
12951
13193
|
/**
|
|
12952
|
-
*
|
|
13194
|
+
* 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.
|
|
12953
13195
|
*/
|
|
12954
13196
|
subdomain: string;
|
|
12955
13197
|
/**
|
|
@@ -13005,7 +13247,7 @@ export interface ResourceMemsql {
|
|
|
13005
13247
|
*/
|
|
13006
13248
|
secretStoreId?: string;
|
|
13007
13249
|
/**
|
|
13008
|
-
*
|
|
13250
|
+
* 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.
|
|
13009
13251
|
*/
|
|
13010
13252
|
subdomain: string;
|
|
13011
13253
|
/**
|
|
@@ -13065,7 +13307,7 @@ export interface ResourceMongoHost {
|
|
|
13065
13307
|
*/
|
|
13066
13308
|
secretStoreId?: string;
|
|
13067
13309
|
/**
|
|
13068
|
-
*
|
|
13310
|
+
* 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.
|
|
13069
13311
|
*/
|
|
13070
13312
|
subdomain: string;
|
|
13071
13313
|
/**
|
|
@@ -13125,7 +13367,7 @@ export interface ResourceMongoLegacyHost {
|
|
|
13125
13367
|
*/
|
|
13126
13368
|
secretStoreId?: string;
|
|
13127
13369
|
/**
|
|
13128
|
-
*
|
|
13370
|
+
* 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.
|
|
13129
13371
|
*/
|
|
13130
13372
|
subdomain: string;
|
|
13131
13373
|
/**
|
|
@@ -13193,7 +13435,7 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
13193
13435
|
*/
|
|
13194
13436
|
secretStoreId?: string;
|
|
13195
13437
|
/**
|
|
13196
|
-
*
|
|
13438
|
+
* 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.
|
|
13197
13439
|
*/
|
|
13198
13440
|
subdomain: string;
|
|
13199
13441
|
/**
|
|
@@ -13261,7 +13503,7 @@ export interface ResourceMongoReplicaSet {
|
|
|
13261
13503
|
*/
|
|
13262
13504
|
secretStoreId?: string;
|
|
13263
13505
|
/**
|
|
13264
|
-
*
|
|
13506
|
+
* 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.
|
|
13265
13507
|
*/
|
|
13266
13508
|
subdomain: string;
|
|
13267
13509
|
/**
|
|
@@ -13317,7 +13559,7 @@ export interface ResourceMongoShardedCluster {
|
|
|
13317
13559
|
*/
|
|
13318
13560
|
secretStoreId?: string;
|
|
13319
13561
|
/**
|
|
13320
|
-
*
|
|
13562
|
+
* 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.
|
|
13321
13563
|
*/
|
|
13322
13564
|
subdomain: string;
|
|
13323
13565
|
/**
|
|
@@ -13397,7 +13639,7 @@ export interface ResourceMtlsMysql {
|
|
|
13397
13639
|
*/
|
|
13398
13640
|
serverName?: string;
|
|
13399
13641
|
/**
|
|
13400
|
-
*
|
|
13642
|
+
* 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.
|
|
13401
13643
|
*/
|
|
13402
13644
|
subdomain: string;
|
|
13403
13645
|
/**
|
|
@@ -13477,7 +13719,7 @@ export interface ResourceMtlsPostgres {
|
|
|
13477
13719
|
*/
|
|
13478
13720
|
serverName?: string;
|
|
13479
13721
|
/**
|
|
13480
|
-
*
|
|
13722
|
+
* 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.
|
|
13481
13723
|
*/
|
|
13482
13724
|
subdomain: string;
|
|
13483
13725
|
/**
|
|
@@ -13537,7 +13779,7 @@ export interface ResourceMysql {
|
|
|
13537
13779
|
*/
|
|
13538
13780
|
secretStoreId?: string;
|
|
13539
13781
|
/**
|
|
13540
|
-
*
|
|
13782
|
+
* 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.
|
|
13541
13783
|
*/
|
|
13542
13784
|
subdomain: string;
|
|
13543
13785
|
/**
|
|
@@ -13589,7 +13831,7 @@ export interface ResourceNeptune {
|
|
|
13589
13831
|
*/
|
|
13590
13832
|
secretStoreId?: string;
|
|
13591
13833
|
/**
|
|
13592
|
-
*
|
|
13834
|
+
* 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.
|
|
13593
13835
|
*/
|
|
13594
13836
|
subdomain: string;
|
|
13595
13837
|
/**
|
|
@@ -13653,7 +13895,7 @@ export interface ResourceNeptuneIam {
|
|
|
13653
13895
|
*/
|
|
13654
13896
|
secretStoreId?: string;
|
|
13655
13897
|
/**
|
|
13656
|
-
*
|
|
13898
|
+
* 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.
|
|
13657
13899
|
*/
|
|
13658
13900
|
subdomain: string;
|
|
13659
13901
|
/**
|
|
@@ -13705,7 +13947,7 @@ export interface ResourceOracle {
|
|
|
13705
13947
|
*/
|
|
13706
13948
|
secretStoreId?: string;
|
|
13707
13949
|
/**
|
|
13708
|
-
*
|
|
13950
|
+
* 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.
|
|
13709
13951
|
*/
|
|
13710
13952
|
subdomain: string;
|
|
13711
13953
|
/**
|
|
@@ -13765,7 +14007,7 @@ export interface ResourceOracleNne {
|
|
|
13765
14007
|
*/
|
|
13766
14008
|
secretStoreId?: string;
|
|
13767
14009
|
/**
|
|
13768
|
-
*
|
|
14010
|
+
* 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.
|
|
13769
14011
|
*/
|
|
13770
14012
|
subdomain: string;
|
|
13771
14013
|
/**
|
|
@@ -13774,6 +14016,10 @@ export interface ResourceOracleNne {
|
|
|
13774
14016
|
tags?: {
|
|
13775
14017
|
[key: string]: string;
|
|
13776
14018
|
};
|
|
14019
|
+
/**
|
|
14020
|
+
* If set, TLS must be used to connect to this resource.
|
|
14021
|
+
*/
|
|
14022
|
+
tlsRequired?: boolean;
|
|
13777
14023
|
/**
|
|
13778
14024
|
* The username to authenticate with.
|
|
13779
14025
|
*/
|
|
@@ -13825,7 +14071,7 @@ export interface ResourcePostgres {
|
|
|
13825
14071
|
*/
|
|
13826
14072
|
secretStoreId?: string;
|
|
13827
14073
|
/**
|
|
13828
|
-
*
|
|
14074
|
+
* 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.
|
|
13829
14075
|
*/
|
|
13830
14076
|
subdomain: string;
|
|
13831
14077
|
/**
|
|
@@ -13881,7 +14127,7 @@ export interface ResourcePresto {
|
|
|
13881
14127
|
*/
|
|
13882
14128
|
secretStoreId?: string;
|
|
13883
14129
|
/**
|
|
13884
|
-
*
|
|
14130
|
+
* 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.
|
|
13885
14131
|
*/
|
|
13886
14132
|
subdomain: string;
|
|
13887
14133
|
/**
|
|
@@ -13937,7 +14183,7 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
13937
14183
|
*/
|
|
13938
14184
|
secretStoreId?: string;
|
|
13939
14185
|
/**
|
|
13940
|
-
*
|
|
14186
|
+
* 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.
|
|
13941
14187
|
*/
|
|
13942
14188
|
subdomain: string;
|
|
13943
14189
|
/**
|
|
@@ -13989,7 +14235,7 @@ export interface ResourceRawTcp {
|
|
|
13989
14235
|
*/
|
|
13990
14236
|
secretStoreId?: string;
|
|
13991
14237
|
/**
|
|
13992
|
-
*
|
|
14238
|
+
* 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.
|
|
13993
14239
|
*/
|
|
13994
14240
|
subdomain: string;
|
|
13995
14241
|
/**
|
|
@@ -14045,7 +14291,7 @@ export interface ResourceRdp {
|
|
|
14045
14291
|
*/
|
|
14046
14292
|
secretStoreId?: string;
|
|
14047
14293
|
/**
|
|
14048
|
-
*
|
|
14294
|
+
* 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.
|
|
14049
14295
|
*/
|
|
14050
14296
|
subdomain: string;
|
|
14051
14297
|
/**
|
|
@@ -14064,6 +14310,10 @@ export interface ResourceRdpCert {
|
|
|
14064
14310
|
* 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.
|
|
14065
14311
|
*/
|
|
14066
14312
|
bindInterface: string;
|
|
14313
|
+
/**
|
|
14314
|
+
* 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.
|
|
14315
|
+
*/
|
|
14316
|
+
dcHostnames?: string;
|
|
14067
14317
|
/**
|
|
14068
14318
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
14069
14319
|
*/
|
|
@@ -14109,7 +14359,7 @@ export interface ResourceRdpCert {
|
|
|
14109
14359
|
*/
|
|
14110
14360
|
sid?: string;
|
|
14111
14361
|
/**
|
|
14112
|
-
*
|
|
14362
|
+
* 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.
|
|
14113
14363
|
*/
|
|
14114
14364
|
subdomain: string;
|
|
14115
14365
|
/**
|
|
@@ -14173,7 +14423,7 @@ export interface ResourceRdsPostgresIam {
|
|
|
14173
14423
|
*/
|
|
14174
14424
|
secretStoreId?: string;
|
|
14175
14425
|
/**
|
|
14176
|
-
*
|
|
14426
|
+
* 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.
|
|
14177
14427
|
*/
|
|
14178
14428
|
subdomain: string;
|
|
14179
14429
|
/**
|
|
@@ -14225,7 +14475,7 @@ export interface ResourceRedis {
|
|
|
14225
14475
|
*/
|
|
14226
14476
|
secretStoreId?: string;
|
|
14227
14477
|
/**
|
|
14228
|
-
*
|
|
14478
|
+
* 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.
|
|
14229
14479
|
*/
|
|
14230
14480
|
subdomain: string;
|
|
14231
14481
|
/**
|
|
@@ -14281,7 +14531,7 @@ export interface ResourceRedisCluster {
|
|
|
14281
14531
|
*/
|
|
14282
14532
|
secretStoreId?: string;
|
|
14283
14533
|
/**
|
|
14284
|
-
*
|
|
14534
|
+
* 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.
|
|
14285
14535
|
*/
|
|
14286
14536
|
subdomain: string;
|
|
14287
14537
|
/**
|
|
@@ -14345,7 +14595,7 @@ export interface ResourceRedshift {
|
|
|
14345
14595
|
*/
|
|
14346
14596
|
secretStoreId?: string;
|
|
14347
14597
|
/**
|
|
14348
|
-
*
|
|
14598
|
+
* 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.
|
|
14349
14599
|
*/
|
|
14350
14600
|
subdomain: string;
|
|
14351
14601
|
/**
|
|
@@ -14413,7 +14663,7 @@ export interface ResourceRedshiftIam {
|
|
|
14413
14663
|
*/
|
|
14414
14664
|
secretStoreId?: string;
|
|
14415
14665
|
/**
|
|
14416
|
-
*
|
|
14666
|
+
* 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.
|
|
14417
14667
|
*/
|
|
14418
14668
|
subdomain: string;
|
|
14419
14669
|
/**
|
|
@@ -14473,7 +14723,7 @@ export interface ResourceRedshiftServerlessIam {
|
|
|
14473
14723
|
*/
|
|
14474
14724
|
secretStoreId?: string;
|
|
14475
14725
|
/**
|
|
14476
|
-
*
|
|
14726
|
+
* 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.
|
|
14477
14727
|
*/
|
|
14478
14728
|
subdomain: string;
|
|
14479
14729
|
/**
|
|
@@ -14534,7 +14784,7 @@ export interface ResourceSingleStore {
|
|
|
14534
14784
|
*/
|
|
14535
14785
|
secretStoreId?: string;
|
|
14536
14786
|
/**
|
|
14537
|
-
*
|
|
14787
|
+
* 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.
|
|
14538
14788
|
*/
|
|
14539
14789
|
subdomain: string;
|
|
14540
14790
|
/**
|
|
@@ -14598,7 +14848,7 @@ export interface ResourceSnowflake {
|
|
|
14598
14848
|
*/
|
|
14599
14849
|
secretStoreId?: string;
|
|
14600
14850
|
/**
|
|
14601
|
-
*
|
|
14851
|
+
* 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.
|
|
14602
14852
|
*/
|
|
14603
14853
|
subdomain: string;
|
|
14604
14854
|
/**
|
|
@@ -14617,6 +14867,10 @@ export interface ResourceSnowsight {
|
|
|
14617
14867
|
* 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.
|
|
14618
14868
|
*/
|
|
14619
14869
|
bindInterface: string;
|
|
14870
|
+
/**
|
|
14871
|
+
* If true, select the ACS with isDefault=true
|
|
14872
|
+
*/
|
|
14873
|
+
connectToDefault?: boolean;
|
|
14620
14874
|
/**
|
|
14621
14875
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
14622
14876
|
*/
|
|
@@ -14646,7 +14900,7 @@ export interface ResourceSnowsight {
|
|
|
14646
14900
|
*/
|
|
14647
14901
|
secretStoreId?: string;
|
|
14648
14902
|
/**
|
|
14649
|
-
*
|
|
14903
|
+
* 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.
|
|
14650
14904
|
*/
|
|
14651
14905
|
subdomain: string;
|
|
14652
14906
|
/**
|
|
@@ -14710,7 +14964,7 @@ export interface ResourceSqlServer {
|
|
|
14710
14964
|
*/
|
|
14711
14965
|
secretStoreId?: string;
|
|
14712
14966
|
/**
|
|
14713
|
-
*
|
|
14967
|
+
* 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.
|
|
14714
14968
|
*/
|
|
14715
14969
|
subdomain: string;
|
|
14716
14970
|
/**
|
|
@@ -14782,7 +15036,7 @@ export interface ResourceSqlServerAzureAd {
|
|
|
14782
15036
|
*/
|
|
14783
15037
|
secretStoreId?: string;
|
|
14784
15038
|
/**
|
|
14785
|
-
*
|
|
15039
|
+
* 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.
|
|
14786
15040
|
*/
|
|
14787
15041
|
subdomain: string;
|
|
14788
15042
|
/**
|
|
@@ -14863,7 +15117,7 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
14863
15117
|
*/
|
|
14864
15118
|
serverSpn: string;
|
|
14865
15119
|
/**
|
|
14866
|
-
*
|
|
15120
|
+
* 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.
|
|
14867
15121
|
*/
|
|
14868
15122
|
subdomain: string;
|
|
14869
15123
|
/**
|
|
@@ -14927,7 +15181,7 @@ export interface ResourceSsh {
|
|
|
14927
15181
|
*/
|
|
14928
15182
|
secretStoreId?: string;
|
|
14929
15183
|
/**
|
|
14930
|
-
*
|
|
15184
|
+
* 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.
|
|
14931
15185
|
*/
|
|
14932
15186
|
subdomain: string;
|
|
14933
15187
|
/**
|
|
@@ -14995,7 +15249,7 @@ export interface ResourceSshCert {
|
|
|
14995
15249
|
*/
|
|
14996
15250
|
secretStoreId?: string;
|
|
14997
15251
|
/**
|
|
14998
|
-
*
|
|
15252
|
+
* 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.
|
|
14999
15253
|
*/
|
|
15000
15254
|
subdomain: string;
|
|
15001
15255
|
/**
|
|
@@ -15063,7 +15317,7 @@ export interface ResourceSshCustomerKey {
|
|
|
15063
15317
|
*/
|
|
15064
15318
|
secretStoreId?: string;
|
|
15065
15319
|
/**
|
|
15066
|
-
*
|
|
15320
|
+
* 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.
|
|
15067
15321
|
*/
|
|
15068
15322
|
subdomain: string;
|
|
15069
15323
|
/**
|
|
@@ -15123,7 +15377,7 @@ export interface ResourceSshPassword {
|
|
|
15123
15377
|
*/
|
|
15124
15378
|
secretStoreId?: string;
|
|
15125
15379
|
/**
|
|
15126
|
-
*
|
|
15380
|
+
* 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.
|
|
15127
15381
|
*/
|
|
15128
15382
|
subdomain: string;
|
|
15129
15383
|
/**
|
|
@@ -15175,7 +15429,7 @@ export interface ResourceSybase {
|
|
|
15175
15429
|
*/
|
|
15176
15430
|
secretStoreId?: string;
|
|
15177
15431
|
/**
|
|
15178
|
-
*
|
|
15432
|
+
* 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.
|
|
15179
15433
|
*/
|
|
15180
15434
|
subdomain: string;
|
|
15181
15435
|
/**
|
|
@@ -15227,7 +15481,7 @@ export interface ResourceSybaseIq {
|
|
|
15227
15481
|
*/
|
|
15228
15482
|
secretStoreId?: string;
|
|
15229
15483
|
/**
|
|
15230
|
-
*
|
|
15484
|
+
* 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.
|
|
15231
15485
|
*/
|
|
15232
15486
|
subdomain: string;
|
|
15233
15487
|
/**
|
|
@@ -15279,7 +15533,7 @@ export interface ResourceTeradata {
|
|
|
15279
15533
|
*/
|
|
15280
15534
|
secretStoreId?: string;
|
|
15281
15535
|
/**
|
|
15282
|
-
*
|
|
15536
|
+
* 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.
|
|
15283
15537
|
*/
|
|
15284
15538
|
subdomain: string;
|
|
15285
15539
|
/**
|
|
@@ -15331,7 +15585,7 @@ export interface ResourceTrino {
|
|
|
15331
15585
|
*/
|
|
15332
15586
|
secretStoreId?: string;
|
|
15333
15587
|
/**
|
|
15334
|
-
*
|
|
15588
|
+
* 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.
|
|
15335
15589
|
*/
|
|
15336
15590
|
subdomain: string;
|
|
15337
15591
|
/**
|
|
@@ -15391,7 +15645,7 @@ export interface ResourceVertica {
|
|
|
15391
15645
|
*/
|
|
15392
15646
|
secretStoreId?: string;
|
|
15393
15647
|
/**
|
|
15394
|
-
*
|
|
15648
|
+
* 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.
|
|
15395
15649
|
*/
|
|
15396
15650
|
subdomain: string;
|
|
15397
15651
|
/**
|
|
@@ -15518,6 +15772,66 @@ export interface SecretEngineKeyValue {
|
|
|
15518
15772
|
[key: string]: string;
|
|
15519
15773
|
};
|
|
15520
15774
|
}
|
|
15775
|
+
export interface SecretEnginePostgresSecretEngine {
|
|
15776
|
+
/**
|
|
15777
|
+
* The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
|
|
15778
|
+
*/
|
|
15779
|
+
afterReadTtl?: string;
|
|
15780
|
+
/**
|
|
15781
|
+
* Database is the database to verify credential against.
|
|
15782
|
+
*/
|
|
15783
|
+
database: string;
|
|
15784
|
+
/**
|
|
15785
|
+
* Hostname is the hostname or IP address of the Postgres server.
|
|
15786
|
+
*/
|
|
15787
|
+
hostname: string;
|
|
15788
|
+
/**
|
|
15789
|
+
* An interval of public/private key rotation for secret engine in days
|
|
15790
|
+
*/
|
|
15791
|
+
keyRotationIntervalDays?: number;
|
|
15792
|
+
/**
|
|
15793
|
+
* Unique human-readable name of the Secret Engine.
|
|
15794
|
+
*/
|
|
15795
|
+
name: string;
|
|
15796
|
+
/**
|
|
15797
|
+
* Password is the password to connect to the Postgres server.
|
|
15798
|
+
*/
|
|
15799
|
+
password: string;
|
|
15800
|
+
/**
|
|
15801
|
+
* Port is the port number of the Postgres server.
|
|
15802
|
+
*/
|
|
15803
|
+
port: number;
|
|
15804
|
+
/**
|
|
15805
|
+
* Public key linked with a secret engine
|
|
15806
|
+
*/
|
|
15807
|
+
publicKey: string;
|
|
15808
|
+
/**
|
|
15809
|
+
* Backing secret store identifier
|
|
15810
|
+
*/
|
|
15811
|
+
secretStoreId: string;
|
|
15812
|
+
/**
|
|
15813
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
15814
|
+
*/
|
|
15815
|
+
secretStoreRootPath: string;
|
|
15816
|
+
/**
|
|
15817
|
+
* Tags is a map of key, value pairs.
|
|
15818
|
+
*/
|
|
15819
|
+
tags?: {
|
|
15820
|
+
[key: string]: string;
|
|
15821
|
+
};
|
|
15822
|
+
/**
|
|
15823
|
+
* TLS enables TLS/SSL when connecting to the Postgres server.
|
|
15824
|
+
*/
|
|
15825
|
+
tls?: boolean;
|
|
15826
|
+
/**
|
|
15827
|
+
* The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
|
|
15828
|
+
*/
|
|
15829
|
+
ttl?: string;
|
|
15830
|
+
/**
|
|
15831
|
+
* Username is the username to connect to the Postgres server.
|
|
15832
|
+
*/
|
|
15833
|
+
username: string;
|
|
15834
|
+
}
|
|
15521
15835
|
export interface SecretStoreActiveDirectoryStore {
|
|
15522
15836
|
/**
|
|
15523
15837
|
* Unique human-readable name of the SecretStore.
|