@pierskarsenbarg/sdm 1.31.0 → 1.33.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.
Files changed (86) hide show
  1. package/account.d.ts +7 -10
  2. package/account.js +4 -4
  3. package/account.js.map +1 -1
  4. package/accountAttachment.d.ts +1 -1
  5. package/accountAttachment.js +1 -1
  6. package/accountGroup.d.ts +87 -0
  7. package/accountGroup.js +84 -0
  8. package/accountGroup.js.map +1 -0
  9. package/approvalWorkflow.d.ts +16 -6
  10. package/approvalWorkflow.js +16 -6
  11. package/approvalWorkflow.js.map +1 -1
  12. package/getAccount.d.ts +10 -10
  13. package/getAccount.js +8 -8
  14. package/getAccountGroup.d.ts +101 -0
  15. package/getAccountGroup.js +66 -0
  16. package/getAccountGroup.js.map +1 -0
  17. package/getApprovalWorkflow.d.ts +4 -4
  18. package/getApprovalWorkflow.js +4 -4
  19. package/getGroup.d.ts +127 -0
  20. package/getGroup.js +72 -0
  21. package/getGroup.js.map +1 -0
  22. package/getGroupRole.d.ts +101 -0
  23. package/getGroupRole.js +66 -0
  24. package/getGroupRole.js.map +1 -0
  25. package/getNode.d.ts +6 -6
  26. package/getNode.js +4 -4
  27. package/getResource.d.ts +6 -6
  28. package/getResource.js +4 -4
  29. package/getRole.d.ts +2 -0
  30. package/getRole.js +2 -0
  31. package/getRole.js.map +1 -1
  32. package/getSecretEngine.d.ts +74 -2
  33. package/getSecretEngine.js +12 -0
  34. package/getSecretEngine.js.map +1 -1
  35. package/getSecretStore.d.ts +2 -2
  36. package/getWorkflow.d.ts +38 -0
  37. package/getWorkflow.js +38 -0
  38. package/getWorkflow.js.map +1 -1
  39. package/getWorkflowRole.d.ts +14 -4
  40. package/getWorkflowRole.js +14 -4
  41. package/getWorkflowRole.js.map +1 -1
  42. package/group.d.ts +113 -0
  43. package/group.js +82 -0
  44. package/group.js.map +1 -0
  45. package/groupRole.d.ts +87 -0
  46. package/groupRole.js +84 -0
  47. package/groupRole.js.map +1 -0
  48. package/identityAlias.d.ts +13 -0
  49. package/identityAlias.js +13 -0
  50. package/identityAlias.js.map +1 -1
  51. package/identitySet.d.ts +1 -1
  52. package/identitySet.js +1 -1
  53. package/index.d.ts +18 -0
  54. package/index.js +26 -2
  55. package/index.js.map +1 -1
  56. package/node.d.ts +4 -4
  57. package/node.js +4 -4
  58. package/package.json +1 -1
  59. package/policy.d.ts +3 -4
  60. package/policy.js +3 -4
  61. package/policy.js.map +1 -1
  62. package/proxyClusterKey.d.ts +1 -1
  63. package/proxyClusterKey.js +1 -1
  64. package/remoteIdentity.d.ts +13 -0
  65. package/remoteIdentity.js +13 -0
  66. package/remoteIdentity.js.map +1 -1
  67. package/resource.d.ts +15 -24
  68. package/resource.js +2 -0
  69. package/resource.js.map +1 -1
  70. package/role.d.ts +66 -17
  71. package/role.js +66 -17
  72. package/role.js.map +1 -1
  73. package/secretEngine.d.ts +9 -15
  74. package/secretEngine.js +2 -0
  75. package/secretEngine.js.map +1 -1
  76. package/secretStore.d.ts +63 -6
  77. package/secretStore.js +10 -0
  78. package/secretStore.js.map +1 -1
  79. package/types/input.d.ts +397 -117
  80. package/types/output.d.ts +887 -252
  81. package/workflow.d.ts +48 -0
  82. package/workflow.js +48 -0
  83. package/workflow.js.map +1 -1
  84. package/workflowRole.d.ts +7 -3
  85. package/workflowRole.js +7 -3
  86. 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
- * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
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
- * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
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
- * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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[];
@@ -7921,10 +8115,15 @@ export interface GetSecretStoreSecretStore {
7921
8115
  gcpStores: outputs.GetSecretStoreSecretStoreGcpStore[];
7922
8116
  keyfactorSshStores: outputs.GetSecretStoreSecretStoreKeyfactorSshStore[];
7923
8117
  keyfactorX509Stores: outputs.GetSecretStoreSecretStoreKeyfactorX509Store[];
8118
+ strongVaults: outputs.GetSecretStoreSecretStoreStrongVault[];
7924
8119
  vaultApproleCertSshes: outputs.GetSecretStoreSecretStoreVaultApproleCertSsh[];
7925
8120
  vaultApproleCertX509s: outputs.GetSecretStoreSecretStoreVaultApproleCertX509[];
7926
8121
  vaultApproles: outputs.GetSecretStoreSecretStoreVaultApprole[];
8122
+ vaultAwsEc2CertSshes: outputs.GetSecretStoreSecretStoreVaultAwsEc2CertSsh[];
8123
+ vaultAwsEc2CertX509s: outputs.GetSecretStoreSecretStoreVaultAwsEc2CertX509[];
7927
8124
  vaultAwsEc2s: outputs.GetSecretStoreSecretStoreVaultAwsEc2[];
8125
+ vaultAwsIamCertSshes: outputs.GetSecretStoreSecretStoreVaultAwsIamCertSsh[];
8126
+ vaultAwsIamCertX509s: outputs.GetSecretStoreSecretStoreVaultAwsIamCertX509[];
7928
8127
  vaultAwsIams: outputs.GetSecretStoreSecretStoreVaultAwsIam[];
7929
8128
  vaultTls: outputs.GetSecretStoreSecretStoreVaultTl[];
7930
8129
  vaultTlsCertSshes: outputs.GetSecretStoreSecretStoreVaultTlsCertSsh[];
@@ -7966,6 +8165,14 @@ export interface GetSecretStoreSecretStoreAw {
7966
8165
  * The AWS region to target e.g. us-east-1
7967
8166
  */
7968
8167
  region?: string;
8168
+ /**
8169
+ * The role to assume after logging in.
8170
+ */
8171
+ roleArn?: string;
8172
+ /**
8173
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
8174
+ */
8175
+ roleExternalId?: string;
7969
8176
  /**
7970
8177
  * Tags is a map of key, value pairs.
7971
8178
  */
@@ -8275,6 +8482,22 @@ export interface GetSecretStoreSecretStoreKeyfactorX509Store {
8275
8482
  [key: string]: string;
8276
8483
  };
8277
8484
  }
8485
+ export interface GetSecretStoreSecretStoreStrongVault {
8486
+ /**
8487
+ * Unique identifier of the SecretStore.
8488
+ */
8489
+ id?: string;
8490
+ /**
8491
+ * Unique human-readable name of the SecretStore.
8492
+ */
8493
+ name?: string;
8494
+ /**
8495
+ * Tags is a map of key, value pairs.
8496
+ */
8497
+ tags?: {
8498
+ [key: string]: string;
8499
+ };
8500
+ }
8278
8501
  export interface GetSecretStoreSecretStoreVaultApprole {
8279
8502
  /**
8280
8503
  * Unique identifier of the SecretStore.
@@ -8395,11 +8618,15 @@ export interface GetSecretStoreSecretStoreVaultAwsEc2 {
8395
8618
  [key: string]: string;
8396
8619
  };
8397
8620
  }
8398
- export interface GetSecretStoreSecretStoreVaultAwsIam {
8621
+ export interface GetSecretStoreSecretStoreVaultAwsEc2CertSsh {
8399
8622
  /**
8400
8623
  * Unique identifier of the SecretStore.
8401
8624
  */
8402
8625
  id?: string;
8626
+ /**
8627
+ * The lifetime of certificates issued by this CA represented in minutes.
8628
+ */
8629
+ issuedCertTtlMinutes?: number;
8403
8630
  /**
8404
8631
  * Unique human-readable name of the SecretStore.
8405
8632
  */
@@ -8412,6 +8639,14 @@ export interface GetSecretStoreSecretStoreVaultAwsIam {
8412
8639
  * The URL of the Vault to target
8413
8640
  */
8414
8641
  serverAddress?: string;
8642
+ /**
8643
+ * The signing role to be used for signing certificates
8644
+ */
8645
+ signingRole?: string;
8646
+ /**
8647
+ * The mount point of the SSH engine configured with the desired CA
8648
+ */
8649
+ sshMountPoint?: string;
8415
8650
  /**
8416
8651
  * Tags is a map of key, value pairs.
8417
8652
  */
@@ -8419,23 +8654,15 @@ export interface GetSecretStoreSecretStoreVaultAwsIam {
8419
8654
  [key: string]: string;
8420
8655
  };
8421
8656
  }
8422
- export interface GetSecretStoreSecretStoreVaultTl {
8423
- /**
8424
- * A path to a CA file accessible by a Node
8425
- */
8426
- caCertPath?: string;
8427
- /**
8428
- * A path to a client certificate file accessible by a Node
8429
- */
8430
- clientCertPath?: string;
8431
- /**
8432
- * A path to a client key file accessible by a Node
8433
- */
8434
- clientKeyPath?: string;
8657
+ export interface GetSecretStoreSecretStoreVaultAwsEc2CertX509 {
8435
8658
  /**
8436
8659
  * Unique identifier of the SecretStore.
8437
8660
  */
8438
8661
  id?: string;
8662
+ /**
8663
+ * The lifetime of certificates issued by this CA represented in minutes.
8664
+ */
8665
+ issuedCertTtlMinutes?: number;
8439
8666
  /**
8440
8667
  * Unique human-readable name of the SecretStore.
8441
8668
  */
@@ -8444,10 +8671,18 @@ export interface GetSecretStoreSecretStoreVaultTl {
8444
8671
  * The namespace to make requests within
8445
8672
  */
8446
8673
  namespace?: string;
8674
+ /**
8675
+ * The mount point of the PKI engine configured with the desired CA
8676
+ */
8677
+ pkiMountPoint?: string;
8447
8678
  /**
8448
8679
  * The URL of the Vault to target
8449
8680
  */
8450
8681
  serverAddress?: string;
8682
+ /**
8683
+ * The signing role to be used for signing certificates
8684
+ */
8685
+ signingRole?: string;
8451
8686
  /**
8452
8687
  * Tags is a map of key, value pairs.
8453
8688
  */
@@ -8455,19 +8690,31 @@ export interface GetSecretStoreSecretStoreVaultTl {
8455
8690
  [key: string]: string;
8456
8691
  };
8457
8692
  }
8458
- export interface GetSecretStoreSecretStoreVaultTlsCertSsh {
8693
+ export interface GetSecretStoreSecretStoreVaultAwsIam {
8459
8694
  /**
8460
- * A path to a CA file accessible by a Node
8695
+ * Unique identifier of the SecretStore.
8461
8696
  */
8462
- caCertPath?: string;
8697
+ id?: string;
8463
8698
  /**
8464
- * A path to a client certificate file accessible by a Node
8699
+ * Unique human-readable name of the SecretStore.
8465
8700
  */
8466
- clientCertPath?: string;
8701
+ name?: string;
8467
8702
  /**
8468
- * A path to a client key file accessible by a Node
8703
+ * The namespace to make requests within
8469
8704
  */
8470
- clientKeyPath?: string;
8705
+ namespace?: string;
8706
+ /**
8707
+ * The URL of the Vault to target
8708
+ */
8709
+ serverAddress?: string;
8710
+ /**
8711
+ * Tags is a map of key, value pairs.
8712
+ */
8713
+ tags?: {
8714
+ [key: string]: string;
8715
+ };
8716
+ }
8717
+ export interface GetSecretStoreSecretStoreVaultAwsIamCertSsh {
8471
8718
  /**
8472
8719
  * Unique identifier of the SecretStore.
8473
8720
  */
@@ -8503,17 +8750,137 @@ export interface GetSecretStoreSecretStoreVaultTlsCertSsh {
8503
8750
  [key: string]: string;
8504
8751
  };
8505
8752
  }
8506
- export interface GetSecretStoreSecretStoreVaultTlsCertX509 {
8753
+ export interface GetSecretStoreSecretStoreVaultAwsIamCertX509 {
8507
8754
  /**
8508
- * A path to a CA file accessible by a Node
8755
+ * Unique identifier of the SecretStore.
8509
8756
  */
8510
- caCertPath?: string;
8757
+ id?: string;
8511
8758
  /**
8512
- * A path to a client certificate file accessible by a Node
8759
+ * The lifetime of certificates issued by this CA represented in minutes.
8513
8760
  */
8514
- clientCertPath?: string;
8761
+ issuedCertTtlMinutes?: number;
8515
8762
  /**
8516
- * A path to a client key file accessible by a Node
8763
+ * Unique human-readable name of the SecretStore.
8764
+ */
8765
+ name?: string;
8766
+ /**
8767
+ * The namespace to make requests within
8768
+ */
8769
+ namespace?: string;
8770
+ /**
8771
+ * The mount point of the PKI engine configured with the desired CA
8772
+ */
8773
+ pkiMountPoint?: string;
8774
+ /**
8775
+ * The URL of the Vault to target
8776
+ */
8777
+ serverAddress?: string;
8778
+ /**
8779
+ * The signing role to be used for signing certificates
8780
+ */
8781
+ signingRole?: string;
8782
+ /**
8783
+ * Tags is a map of key, value pairs.
8784
+ */
8785
+ tags?: {
8786
+ [key: string]: string;
8787
+ };
8788
+ }
8789
+ export interface GetSecretStoreSecretStoreVaultTl {
8790
+ /**
8791
+ * A path to a CA file accessible by a Node
8792
+ */
8793
+ caCertPath?: string;
8794
+ /**
8795
+ * A path to a client certificate file accessible by a Node
8796
+ */
8797
+ clientCertPath?: string;
8798
+ /**
8799
+ * A path to a client key file accessible by a Node
8800
+ */
8801
+ clientKeyPath?: string;
8802
+ /**
8803
+ * Unique identifier of the SecretStore.
8804
+ */
8805
+ id?: string;
8806
+ /**
8807
+ * Unique human-readable name of the SecretStore.
8808
+ */
8809
+ name?: string;
8810
+ /**
8811
+ * The namespace to make requests within
8812
+ */
8813
+ namespace?: string;
8814
+ /**
8815
+ * The URL of the Vault to target
8816
+ */
8817
+ serverAddress?: string;
8818
+ /**
8819
+ * Tags is a map of key, value pairs.
8820
+ */
8821
+ tags?: {
8822
+ [key: string]: string;
8823
+ };
8824
+ }
8825
+ export interface GetSecretStoreSecretStoreVaultTlsCertSsh {
8826
+ /**
8827
+ * A path to a CA file accessible by a Node
8828
+ */
8829
+ caCertPath?: string;
8830
+ /**
8831
+ * A path to a client certificate file accessible by a Node
8832
+ */
8833
+ clientCertPath?: string;
8834
+ /**
8835
+ * A path to a client key file accessible by a Node
8836
+ */
8837
+ clientKeyPath?: string;
8838
+ /**
8839
+ * Unique identifier of the SecretStore.
8840
+ */
8841
+ id?: string;
8842
+ /**
8843
+ * The lifetime of certificates issued by this CA represented in minutes.
8844
+ */
8845
+ issuedCertTtlMinutes?: number;
8846
+ /**
8847
+ * Unique human-readable name of the SecretStore.
8848
+ */
8849
+ name?: string;
8850
+ /**
8851
+ * The namespace to make requests within
8852
+ */
8853
+ namespace?: string;
8854
+ /**
8855
+ * The URL of the Vault to target
8856
+ */
8857
+ serverAddress?: string;
8858
+ /**
8859
+ * The signing role to be used for signing certificates
8860
+ */
8861
+ signingRole?: string;
8862
+ /**
8863
+ * The mount point of the SSH engine configured with the desired CA
8864
+ */
8865
+ sshMountPoint?: string;
8866
+ /**
8867
+ * Tags is a map of key, value pairs.
8868
+ */
8869
+ tags?: {
8870
+ [key: string]: string;
8871
+ };
8872
+ }
8873
+ export interface GetSecretStoreSecretStoreVaultTlsCertX509 {
8874
+ /**
8875
+ * A path to a CA file accessible by a Node
8876
+ */
8877
+ caCertPath?: string;
8878
+ /**
8879
+ * A path to a client certificate file accessible by a Node
8880
+ */
8881
+ clientCertPath?: string;
8882
+ /**
8883
+ * A path to a client key file accessible by a Node
8517
8884
  */
8518
8885
  clientKeyPath?: string;
8519
8886
  /**
@@ -8867,7 +9234,7 @@ export interface ResourceAerospike {
8867
9234
  */
8868
9235
  secretStoreId?: string;
8869
9236
  /**
8870
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9237
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9238
  */
8872
9239
  subdomain: string;
8873
9240
  /**
@@ -8955,7 +9322,7 @@ export interface ResourceAks {
8955
9322
  */
8956
9323
  secretStoreId?: string;
8957
9324
  /**
8958
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9325
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9326
  */
8960
9327
  subdomain: string;
8961
9328
  /**
@@ -9007,7 +9374,7 @@ export interface ResourceAksBasicAuth {
9007
9374
  */
9008
9375
  secretStoreId?: string;
9009
9376
  /**
9010
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9377
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9378
  */
9012
9379
  subdomain: string;
9013
9380
  /**
@@ -9079,7 +9446,7 @@ export interface ResourceAksServiceAccount {
9079
9446
  */
9080
9447
  secretStoreId?: string;
9081
9448
  /**
9082
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9449
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9450
  */
9084
9451
  subdomain: string;
9085
9452
  /**
@@ -9132,7 +9499,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
9132
9499
  */
9133
9500
  secretStoreId?: string;
9134
9501
  /**
9135
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9502
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9503
  */
9137
9504
  subdomain: string;
9138
9505
  /**
@@ -9197,7 +9564,7 @@ export interface ResourceAksUserImpersonation {
9197
9564
  */
9198
9565
  secretStoreId?: string;
9199
9566
  /**
9200
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9567
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9568
  */
9202
9569
  subdomain: string;
9203
9570
  /**
@@ -9289,7 +9656,7 @@ export interface ResourceAmazonEks {
9289
9656
  */
9290
9657
  secretStoreId?: string;
9291
9658
  /**
9292
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9659
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9660
  */
9294
9661
  subdomain: string;
9295
9662
  /**
@@ -9373,7 +9740,7 @@ export interface ResourceAmazonEksInstanceProfile {
9373
9740
  */
9374
9741
  secretStoreId?: string;
9375
9742
  /**
9376
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9743
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9744
  */
9378
9745
  subdomain: string;
9379
9746
  /**
@@ -9437,7 +9804,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
9437
9804
  */
9438
9805
  secretStoreId?: string;
9439
9806
  /**
9440
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9807
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9808
  */
9442
9809
  subdomain: string;
9443
9810
  /**
@@ -9509,7 +9876,7 @@ export interface ResourceAmazonEksUserImpersonation {
9509
9876
  */
9510
9877
  secretStoreId?: string;
9511
9878
  /**
9512
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9879
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9880
  */
9514
9881
  subdomain: string;
9515
9882
  /**
@@ -9569,7 +9936,7 @@ export interface ResourceAmazonEs {
9569
9936
  */
9570
9937
  secretStoreId?: string;
9571
9938
  /**
9572
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9939
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9940
  */
9574
9941
  subdomain: string;
9575
9942
  /**
@@ -9621,7 +9988,7 @@ export interface ResourceAmazonEsiam {
9621
9988
  */
9622
9989
  secretStoreId?: string;
9623
9990
  /**
9624
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9991
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
9992
  */
9626
9993
  subdomain: string;
9627
9994
  /**
@@ -9673,7 +10040,7 @@ export interface ResourceAmazonmqAmqp {
9673
10040
  */
9674
10041
  secretStoreId?: string;
9675
10042
  /**
9676
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10043
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10044
  */
9678
10045
  subdomain: string;
9679
10046
  /**
@@ -9729,7 +10096,7 @@ export interface ResourceAmazonmqAmqp091 {
9729
10096
  */
9730
10097
  secretStoreId?: string;
9731
10098
  /**
9732
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10099
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10100
  */
9734
10101
  subdomain: string;
9735
10102
  /**
@@ -9797,7 +10164,7 @@ export interface ResourceAthena {
9797
10164
  */
9798
10165
  secretStoreId?: string;
9799
10166
  /**
9800
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10167
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10168
  */
9802
10169
  subdomain: string;
9803
10170
  /**
@@ -9849,7 +10216,7 @@ export interface ResourceAthenaIam {
9849
10216
  */
9850
10217
  secretStoreId?: string;
9851
10218
  /**
9852
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10219
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10220
  */
9854
10221
  subdomain: string;
9855
10222
  /**
@@ -9905,7 +10272,7 @@ export interface ResourceAuroraMysql {
9905
10272
  */
9906
10273
  secretStoreId?: string;
9907
10274
  /**
9908
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10275
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10276
  */
9910
10277
  subdomain: string;
9911
10278
  /**
@@ -9969,7 +10336,7 @@ export interface ResourceAuroraMysqlIam {
9969
10336
  */
9970
10337
  secretStoreId?: string;
9971
10338
  /**
9972
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10339
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10340
  */
9974
10341
  subdomain: string;
9975
10342
  /**
@@ -10029,7 +10396,7 @@ export interface ResourceAuroraPostgres {
10029
10396
  */
10030
10397
  secretStoreId?: string;
10031
10398
  /**
10032
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10399
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10400
  */
10034
10401
  subdomain: string;
10035
10402
  /**
@@ -10093,7 +10460,7 @@ export interface ResourceAuroraPostgresIam {
10093
10460
  */
10094
10461
  secretStoreId?: string;
10095
10462
  /**
10096
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10463
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10464
  */
10098
10465
  subdomain: string;
10099
10466
  /**
@@ -10153,7 +10520,7 @@ export interface ResourceAws {
10153
10520
  */
10154
10521
  secretStoreId?: string;
10155
10522
  /**
10156
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10523
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10524
  */
10158
10525
  subdomain: string;
10159
10526
  /**
@@ -10217,7 +10584,7 @@ export interface ResourceAwsConsole {
10217
10584
  */
10218
10585
  sessionExpiry?: number;
10219
10586
  /**
10220
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10587
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10588
  */
10222
10589
  subdomain: string;
10223
10590
  /**
@@ -10285,7 +10652,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
10285
10652
  */
10286
10653
  sessionExpiry?: number;
10287
10654
  /**
10288
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10655
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10656
  */
10290
10657
  subdomain: string;
10291
10658
  /**
@@ -10337,7 +10704,7 @@ export interface ResourceAwsInstanceProfile {
10337
10704
  */
10338
10705
  secretStoreId?: string;
10339
10706
  /**
10340
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10707
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10708
  */
10342
10709
  subdomain: string;
10343
10710
  /**
@@ -10381,7 +10748,7 @@ export interface ResourceAzure {
10381
10748
  */
10382
10749
  secretStoreId?: string;
10383
10750
  /**
10384
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10751
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10752
  */
10386
10753
  subdomain: string;
10387
10754
  /**
@@ -10430,7 +10797,7 @@ export interface ResourceAzureCertificate {
10430
10797
  */
10431
10798
  secretStoreId?: string;
10432
10799
  /**
10433
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10800
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10801
  */
10435
10802
  subdomain: string;
10436
10803
  /**
@@ -10491,7 +10858,7 @@ export interface ResourceAzureMysql {
10491
10858
  */
10492
10859
  secretStoreId?: string;
10493
10860
  /**
10494
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10861
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10862
  */
10496
10863
  subdomain: string;
10497
10864
  /**
@@ -10551,7 +10918,7 @@ export interface ResourceAzureMysqlManagedIdentity {
10551
10918
  */
10552
10919
  secretStoreId?: string;
10553
10920
  /**
10554
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10921
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10922
  */
10556
10923
  subdomain: string;
10557
10924
  /**
@@ -10615,7 +10982,7 @@ export interface ResourceAzurePostgres {
10615
10982
  */
10616
10983
  secretStoreId?: string;
10617
10984
  /**
10618
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10985
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
10986
  */
10620
10987
  subdomain: string;
10621
10988
  /**
@@ -10675,7 +11042,7 @@ export interface ResourceAzurePostgresManagedIdentity {
10675
11042
  */
10676
11043
  secretStoreId?: string;
10677
11044
  /**
10678
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11045
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11046
  */
10680
11047
  subdomain: string;
10681
11048
  /**
@@ -10731,7 +11098,7 @@ export interface ResourceBigQuery {
10731
11098
  */
10732
11099
  secretStoreId?: string;
10733
11100
  /**
10734
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11101
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11102
  */
10736
11103
  subdomain: string;
10737
11104
  /**
@@ -10783,7 +11150,7 @@ export interface ResourceCassandra {
10783
11150
  */
10784
11151
  secretStoreId?: string;
10785
11152
  /**
10786
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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.
10787
11154
  */
10788
11155
  subdomain: string;
10789
11156
  /**
@@ -10847,7 +11214,7 @@ export interface ResourceCitus {
10847
11214
  */
10848
11215
  secretStoreId?: string;
10849
11216
  /**
10850
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11217
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11218
  */
10852
11219
  subdomain: string;
10853
11220
  /**
@@ -10956,7 +11323,7 @@ export interface ResourceClickHouseMySql {
10956
11323
  */
10957
11324
  secretStoreId?: string;
10958
11325
  /**
10959
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11326
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11327
  */
10961
11328
  subdomain: string;
10962
11329
  /**
@@ -11012,7 +11379,7 @@ export interface ResourceClickHouseTcp {
11012
11379
  */
11013
11380
  secretStoreId?: string;
11014
11381
  /**
11015
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11382
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11383
  */
11017
11384
  subdomain: string;
11018
11385
  /**
@@ -11076,7 +11443,7 @@ export interface ResourceClustrix {
11076
11443
  */
11077
11444
  secretStoreId?: string;
11078
11445
  /**
11079
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11446
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11447
  */
11081
11448
  subdomain: string;
11082
11449
  /**
@@ -11140,7 +11507,7 @@ export interface ResourceCockroach {
11140
11507
  */
11141
11508
  secretStoreId?: string;
11142
11509
  /**
11143
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11510
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11511
  */
11145
11512
  subdomain: string;
11146
11513
  /**
@@ -11196,7 +11563,7 @@ export interface ResourceCouchbaseDatabase {
11196
11563
  */
11197
11564
  secretStoreId?: string;
11198
11565
  /**
11199
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11566
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11567
  */
11201
11568
  subdomain: string;
11202
11569
  /**
@@ -11244,7 +11611,7 @@ export interface ResourceCouchbaseWebUi {
11244
11611
  */
11245
11612
  secretStoreId?: string;
11246
11613
  /**
11247
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11614
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11615
  */
11249
11616
  subdomain: string;
11250
11617
  /**
@@ -11301,7 +11668,7 @@ export interface ResourceDb2I {
11301
11668
  */
11302
11669
  secretStoreId?: string;
11303
11670
  /**
11304
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11671
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11672
  */
11306
11673
  subdomain: string;
11307
11674
  /**
@@ -11361,7 +11728,7 @@ export interface ResourceDb2Luw {
11361
11728
  */
11362
11729
  secretStoreId?: string;
11363
11730
  /**
11364
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11731
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11732
  */
11366
11733
  subdomain: string;
11367
11734
  /**
@@ -11421,7 +11788,7 @@ export interface ResourceDocumentDbHost {
11421
11788
  */
11422
11789
  secretStoreId?: string;
11423
11790
  /**
11424
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11791
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11792
  */
11426
11793
  subdomain: string;
11427
11794
  /**
@@ -11473,7 +11840,7 @@ export interface ResourceDocumentDbHostIam {
11473
11840
  */
11474
11841
  secretStoreId?: string;
11475
11842
  /**
11476
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11843
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11844
  */
11478
11845
  subdomain: string;
11479
11846
  /**
@@ -11529,7 +11896,7 @@ export interface ResourceDocumentDbReplicaSet {
11529
11896
  */
11530
11897
  secretStoreId?: string;
11531
11898
  /**
11532
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11899
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11900
  */
11534
11901
  subdomain: string;
11535
11902
  /**
@@ -11581,7 +11948,7 @@ export interface ResourceDocumentDbReplicaSetIam {
11581
11948
  */
11582
11949
  secretStoreId?: string;
11583
11950
  /**
11584
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11951
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
11952
  */
11586
11953
  subdomain: string;
11587
11954
  /**
@@ -11629,7 +11996,7 @@ export interface ResourceDruid {
11629
11996
  */
11630
11997
  secretStoreId?: string;
11631
11998
  /**
11632
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
11999
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12000
  */
11634
12001
  subdomain: string;
11635
12002
  /**
@@ -11693,7 +12060,7 @@ export interface ResourceDynamoDb {
11693
12060
  */
11694
12061
  secretStoreId?: string;
11695
12062
  /**
11696
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12063
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12064
  */
11698
12065
  subdomain: string;
11699
12066
  /**
@@ -11745,7 +12112,7 @@ export interface ResourceDynamoDbiam {
11745
12112
  */
11746
12113
  secretStoreId?: string;
11747
12114
  /**
11748
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12115
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12116
  */
11750
12117
  subdomain: string;
11751
12118
  /**
@@ -11793,7 +12160,7 @@ export interface ResourceElastic {
11793
12160
  */
11794
12161
  secretStoreId?: string;
11795
12162
  /**
11796
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
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.
11797
12164
  */
11798
12165
  subdomain: string;
11799
12166
  /**
@@ -11849,7 +12216,7 @@ export interface ResourceElasticacheRedis {
11849
12216
  */
11850
12217
  secretStoreId?: string;
11851
12218
  /**
11852
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12219
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12220
  */
11854
12221
  subdomain: string;
11855
12222
  /**
@@ -11913,7 +12280,7 @@ export interface ResourceEntraId {
11913
12280
  */
11914
12281
  secretStoreId?: string;
11915
12282
  /**
11916
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12283
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12284
  */
11918
12285
  subdomain: string;
11919
12286
  /**
@@ -11966,7 +12333,7 @@ export interface ResourceGcp {
11966
12333
  */
11967
12334
  secretStoreId?: string;
11968
12335
  /**
11969
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12336
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12337
  */
11971
12338
  subdomain: string;
11972
12339
  /**
@@ -12014,7 +12381,7 @@ export interface ResourceGcpConsole {
12014
12381
  */
12015
12382
  sessionExpiry?: number;
12016
12383
  /**
12017
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12384
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12385
  */
12019
12386
  subdomain: string;
12020
12387
  /**
@@ -12079,7 +12446,7 @@ export interface ResourceGcpwif {
12079
12446
  */
12080
12447
  sessionExpiry?: number;
12081
12448
  /**
12082
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12449
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12450
  */
12084
12451
  subdomain: string;
12085
12452
  /**
@@ -12160,7 +12527,7 @@ export interface ResourceGoogleGke {
12160
12527
  */
12161
12528
  serviceAccountKey?: string;
12162
12529
  /**
12163
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12530
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12531
  */
12165
12532
  subdomain: string;
12166
12533
  /**
@@ -12212,7 +12579,7 @@ export interface ResourceGoogleGkeUserImpersonation {
12212
12579
  */
12213
12580
  serviceAccountKey?: string;
12214
12581
  /**
12215
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12582
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12583
  */
12217
12584
  subdomain: string;
12218
12585
  /**
@@ -12268,7 +12635,7 @@ export interface ResourceGreenplum {
12268
12635
  */
12269
12636
  secretStoreId?: string;
12270
12637
  /**
12271
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12638
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12639
  */
12273
12640
  subdomain: string;
12274
12641
  /**
@@ -12328,7 +12695,7 @@ export interface ResourceHttpAuth {
12328
12695
  */
12329
12696
  secretStoreId?: string;
12330
12697
  /**
12331
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12698
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12699
  */
12333
12700
  subdomain: string;
12334
12701
  /**
@@ -12389,7 +12756,7 @@ export interface ResourceHttpBasicAuth {
12389
12756
  */
12390
12757
  secretStoreId?: string;
12391
12758
  /**
12392
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12759
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12760
  */
12394
12761
  subdomain: string;
12395
12762
  /**
@@ -12450,7 +12817,7 @@ export interface ResourceHttpNoAuth {
12450
12817
  */
12451
12818
  secretStoreId?: string;
12452
12819
  /**
12453
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12820
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12821
  */
12455
12822
  subdomain: string;
12456
12823
  /**
@@ -12535,7 +12902,7 @@ export interface ResourceKubernetes {
12535
12902
  */
12536
12903
  secretStoreId?: string;
12537
12904
  /**
12538
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12905
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12906
  */
12540
12907
  subdomain: string;
12541
12908
  /**
@@ -12587,7 +12954,7 @@ export interface ResourceKubernetesBasicAuth {
12587
12954
  */
12588
12955
  secretStoreId?: string;
12589
12956
  /**
12590
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
12957
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
12958
  */
12592
12959
  subdomain: string;
12593
12960
  /**
@@ -12655,7 +13022,7 @@ export interface ResourceKubernetesPodIdentity {
12655
13022
  */
12656
13023
  secretStoreId?: string;
12657
13024
  /**
12658
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13025
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13026
  */
12660
13027
  subdomain: string;
12661
13028
  /**
@@ -12723,7 +13090,7 @@ export interface ResourceKubernetesServiceAccount {
12723
13090
  */
12724
13091
  secretStoreId?: string;
12725
13092
  /**
12726
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13093
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13094
  */
12728
13095
  subdomain: string;
12729
13096
  /**
@@ -12776,7 +13143,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
12776
13143
  */
12777
13144
  secretStoreId?: string;
12778
13145
  /**
12779
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13146
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13147
  */
12781
13148
  subdomain: string;
12782
13149
  /**
@@ -12841,7 +13208,7 @@ export interface ResourceKubernetesUserImpersonation {
12841
13208
  */
12842
13209
  secretStoreId?: string;
12843
13210
  /**
12844
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13211
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13212
  */
12846
13213
  subdomain: string;
12847
13214
  /**
@@ -12897,7 +13264,7 @@ export interface ResourceMaria {
12897
13264
  */
12898
13265
  secretStoreId?: string;
12899
13266
  /**
12900
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13267
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13268
  */
12902
13269
  subdomain: string;
12903
13270
  /**
@@ -12915,6 +13282,54 @@ export interface ResourceMaria {
12915
13282
  */
12916
13283
  username?: string;
12917
13284
  }
13285
+ export interface ResourceMcp {
13286
+ /**
13287
+ * 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.
13288
+ */
13289
+ bindInterface: string;
13290
+ /**
13291
+ * A filter applied to the routing logic to pin datasource to nodes.
13292
+ */
13293
+ egressFilter?: string;
13294
+ /**
13295
+ * The host to dial to initiate a connection from the egress node to this resource.
13296
+ */
13297
+ hostname: string;
13298
+ /**
13299
+ * Unique human-readable name of the Resource.
13300
+ */
13301
+ name: string;
13302
+ /**
13303
+ * The password to authenticate with.
13304
+ */
13305
+ password?: string;
13306
+ /**
13307
+ * The port to dial to initiate a connection from the egress node to this resource.
13308
+ */
13309
+ port?: number;
13310
+ /**
13311
+ * 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.
13312
+ */
13313
+ portOverride: number;
13314
+ /**
13315
+ * ID of the proxy cluster for this resource, if any.
13316
+ */
13317
+ proxyClusterId?: string;
13318
+ /**
13319
+ * ID of the secret store containing credentials for this resource, if any.
13320
+ */
13321
+ secretStoreId?: string;
13322
+ /**
13323
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
13324
+ */
13325
+ subdomain: string;
13326
+ /**
13327
+ * Tags is a map of key, value pairs.
13328
+ */
13329
+ tags?: {
13330
+ [key: string]: string;
13331
+ };
13332
+ }
12918
13333
  export interface ResourceMemcached {
12919
13334
  /**
12920
13335
  * 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 +13364,7 @@ export interface ResourceMemcached {
12949
13364
  */
12950
13365
  secretStoreId?: string;
12951
13366
  /**
12952
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13367
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13368
  */
12954
13369
  subdomain: string;
12955
13370
  /**
@@ -13005,7 +13420,7 @@ export interface ResourceMemsql {
13005
13420
  */
13006
13421
  secretStoreId?: string;
13007
13422
  /**
13008
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13423
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13424
  */
13010
13425
  subdomain: string;
13011
13426
  /**
@@ -13065,7 +13480,7 @@ export interface ResourceMongoHost {
13065
13480
  */
13066
13481
  secretStoreId?: string;
13067
13482
  /**
13068
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13483
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13484
  */
13070
13485
  subdomain: string;
13071
13486
  /**
@@ -13125,7 +13540,7 @@ export interface ResourceMongoLegacyHost {
13125
13540
  */
13126
13541
  secretStoreId?: string;
13127
13542
  /**
13128
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13543
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13544
  */
13130
13545
  subdomain: string;
13131
13546
  /**
@@ -13193,7 +13608,7 @@ export interface ResourceMongoLegacyReplicaset {
13193
13608
  */
13194
13609
  secretStoreId?: string;
13195
13610
  /**
13196
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13611
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13612
  */
13198
13613
  subdomain: string;
13199
13614
  /**
@@ -13261,7 +13676,7 @@ export interface ResourceMongoReplicaSet {
13261
13676
  */
13262
13677
  secretStoreId?: string;
13263
13678
  /**
13264
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13679
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13680
  */
13266
13681
  subdomain: string;
13267
13682
  /**
@@ -13317,7 +13732,7 @@ export interface ResourceMongoShardedCluster {
13317
13732
  */
13318
13733
  secretStoreId?: string;
13319
13734
  /**
13320
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13735
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13736
  */
13322
13737
  subdomain: string;
13323
13738
  /**
@@ -13397,7 +13812,7 @@ export interface ResourceMtlsMysql {
13397
13812
  */
13398
13813
  serverName?: string;
13399
13814
  /**
13400
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13815
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13816
  */
13402
13817
  subdomain: string;
13403
13818
  /**
@@ -13477,7 +13892,7 @@ export interface ResourceMtlsPostgres {
13477
13892
  */
13478
13893
  serverName?: string;
13479
13894
  /**
13480
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13895
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13896
  */
13482
13897
  subdomain: string;
13483
13898
  /**
@@ -13537,7 +13952,7 @@ export interface ResourceMysql {
13537
13952
  */
13538
13953
  secretStoreId?: string;
13539
13954
  /**
13540
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
13955
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
13956
  */
13542
13957
  subdomain: string;
13543
13958
  /**
@@ -13589,7 +14004,7 @@ export interface ResourceNeptune {
13589
14004
  */
13590
14005
  secretStoreId?: string;
13591
14006
  /**
13592
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14007
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14008
  */
13594
14009
  subdomain: string;
13595
14010
  /**
@@ -13653,7 +14068,7 @@ export interface ResourceNeptuneIam {
13653
14068
  */
13654
14069
  secretStoreId?: string;
13655
14070
  /**
13656
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14071
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14072
  */
13658
14073
  subdomain: string;
13659
14074
  /**
@@ -13705,7 +14120,7 @@ export interface ResourceOracle {
13705
14120
  */
13706
14121
  secretStoreId?: string;
13707
14122
  /**
13708
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14123
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14124
  */
13710
14125
  subdomain: string;
13711
14126
  /**
@@ -13765,7 +14180,7 @@ export interface ResourceOracleNne {
13765
14180
  */
13766
14181
  secretStoreId?: string;
13767
14182
  /**
13768
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14183
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14184
  */
13770
14185
  subdomain: string;
13771
14186
  /**
@@ -13774,6 +14189,10 @@ export interface ResourceOracleNne {
13774
14189
  tags?: {
13775
14190
  [key: string]: string;
13776
14191
  };
14192
+ /**
14193
+ * If set, TLS must be used to connect to this resource.
14194
+ */
14195
+ tlsRequired?: boolean;
13777
14196
  /**
13778
14197
  * The username to authenticate with.
13779
14198
  */
@@ -13825,7 +14244,7 @@ export interface ResourcePostgres {
13825
14244
  */
13826
14245
  secretStoreId?: string;
13827
14246
  /**
13828
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14247
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14248
  */
13830
14249
  subdomain: string;
13831
14250
  /**
@@ -13881,7 +14300,7 @@ export interface ResourcePresto {
13881
14300
  */
13882
14301
  secretStoreId?: string;
13883
14302
  /**
13884
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14303
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14304
  */
13886
14305
  subdomain: string;
13887
14306
  /**
@@ -13937,7 +14356,7 @@ export interface ResourceRabbitmqAmqp091 {
13937
14356
  */
13938
14357
  secretStoreId?: string;
13939
14358
  /**
13940
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14359
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14360
  */
13942
14361
  subdomain: string;
13943
14362
  /**
@@ -13989,7 +14408,7 @@ export interface ResourceRawTcp {
13989
14408
  */
13990
14409
  secretStoreId?: string;
13991
14410
  /**
13992
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14411
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14412
  */
13994
14413
  subdomain: string;
13995
14414
  /**
@@ -14045,7 +14464,7 @@ export interface ResourceRdp {
14045
14464
  */
14046
14465
  secretStoreId?: string;
14047
14466
  /**
14048
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14467
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14468
  */
14050
14469
  subdomain: string;
14051
14470
  /**
@@ -14064,6 +14483,10 @@ export interface ResourceRdpCert {
14064
14483
  * 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
14484
  */
14066
14485
  bindInterface: string;
14486
+ /**
14487
+ * 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.
14488
+ */
14489
+ dcHostnames?: string;
14067
14490
  /**
14068
14491
  * A filter applied to the routing logic to pin datasource to nodes.
14069
14492
  */
@@ -14109,7 +14532,7 @@ export interface ResourceRdpCert {
14109
14532
  */
14110
14533
  sid?: string;
14111
14534
  /**
14112
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14535
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14536
  */
14114
14537
  subdomain: string;
14115
14538
  /**
@@ -14173,7 +14596,7 @@ export interface ResourceRdsPostgresIam {
14173
14596
  */
14174
14597
  secretStoreId?: string;
14175
14598
  /**
14176
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14599
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14600
  */
14178
14601
  subdomain: string;
14179
14602
  /**
@@ -14225,7 +14648,7 @@ export interface ResourceRedis {
14225
14648
  */
14226
14649
  secretStoreId?: string;
14227
14650
  /**
14228
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14651
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14652
  */
14230
14653
  subdomain: string;
14231
14654
  /**
@@ -14281,7 +14704,7 @@ export interface ResourceRedisCluster {
14281
14704
  */
14282
14705
  secretStoreId?: string;
14283
14706
  /**
14284
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14707
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14708
  */
14286
14709
  subdomain: string;
14287
14710
  /**
@@ -14345,7 +14768,7 @@ export interface ResourceRedshift {
14345
14768
  */
14346
14769
  secretStoreId?: string;
14347
14770
  /**
14348
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14771
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14772
  */
14350
14773
  subdomain: string;
14351
14774
  /**
@@ -14413,7 +14836,7 @@ export interface ResourceRedshiftIam {
14413
14836
  */
14414
14837
  secretStoreId?: string;
14415
14838
  /**
14416
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14839
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14840
  */
14418
14841
  subdomain: string;
14419
14842
  /**
@@ -14473,7 +14896,7 @@ export interface ResourceRedshiftServerlessIam {
14473
14896
  */
14474
14897
  secretStoreId?: string;
14475
14898
  /**
14476
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14899
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14900
  */
14478
14901
  subdomain: string;
14479
14902
  /**
@@ -14534,7 +14957,7 @@ export interface ResourceSingleStore {
14534
14957
  */
14535
14958
  secretStoreId?: string;
14536
14959
  /**
14537
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
14960
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
14961
  */
14539
14962
  subdomain: string;
14540
14963
  /**
@@ -14598,7 +15021,7 @@ export interface ResourceSnowflake {
14598
15021
  */
14599
15022
  secretStoreId?: string;
14600
15023
  /**
14601
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15024
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15025
  */
14603
15026
  subdomain: string;
14604
15027
  /**
@@ -14617,6 +15040,10 @@ export interface ResourceSnowsight {
14617
15040
  * 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
15041
  */
14619
15042
  bindInterface: string;
15043
+ /**
15044
+ * If true, select the ACS with isDefault=true
15045
+ */
15046
+ connectToDefault?: boolean;
14620
15047
  /**
14621
15048
  * A filter applied to the routing logic to pin datasource to nodes.
14622
15049
  */
@@ -14646,7 +15073,7 @@ export interface ResourceSnowsight {
14646
15073
  */
14647
15074
  secretStoreId?: string;
14648
15075
  /**
14649
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15076
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15077
  */
14651
15078
  subdomain: string;
14652
15079
  /**
@@ -14710,7 +15137,7 @@ export interface ResourceSqlServer {
14710
15137
  */
14711
15138
  secretStoreId?: string;
14712
15139
  /**
14713
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15140
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15141
  */
14715
15142
  subdomain: string;
14716
15143
  /**
@@ -14782,7 +15209,7 @@ export interface ResourceSqlServerAzureAd {
14782
15209
  */
14783
15210
  secretStoreId?: string;
14784
15211
  /**
14785
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15212
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15213
  */
14787
15214
  subdomain: string;
14788
15215
  /**
@@ -14863,7 +15290,7 @@ export interface ResourceSqlServerKerberosAd {
14863
15290
  */
14864
15291
  serverSpn: string;
14865
15292
  /**
14866
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15293
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15294
  */
14868
15295
  subdomain: string;
14869
15296
  /**
@@ -14927,7 +15354,7 @@ export interface ResourceSsh {
14927
15354
  */
14928
15355
  secretStoreId?: string;
14929
15356
  /**
14930
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15357
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15358
  */
14932
15359
  subdomain: string;
14933
15360
  /**
@@ -14995,7 +15422,7 @@ export interface ResourceSshCert {
14995
15422
  */
14996
15423
  secretStoreId?: string;
14997
15424
  /**
14998
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15425
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15426
  */
15000
15427
  subdomain: string;
15001
15428
  /**
@@ -15063,7 +15490,7 @@ export interface ResourceSshCustomerKey {
15063
15490
  */
15064
15491
  secretStoreId?: string;
15065
15492
  /**
15066
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15493
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15494
  */
15068
15495
  subdomain: string;
15069
15496
  /**
@@ -15123,7 +15550,7 @@ export interface ResourceSshPassword {
15123
15550
  */
15124
15551
  secretStoreId?: string;
15125
15552
  /**
15126
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15553
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15554
  */
15128
15555
  subdomain: string;
15129
15556
  /**
@@ -15175,7 +15602,7 @@ export interface ResourceSybase {
15175
15602
  */
15176
15603
  secretStoreId?: string;
15177
15604
  /**
15178
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15605
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15606
  */
15180
15607
  subdomain: string;
15181
15608
  /**
@@ -15227,7 +15654,7 @@ export interface ResourceSybaseIq {
15227
15654
  */
15228
15655
  secretStoreId?: string;
15229
15656
  /**
15230
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15657
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15658
  */
15232
15659
  subdomain: string;
15233
15660
  /**
@@ -15279,7 +15706,7 @@ export interface ResourceTeradata {
15279
15706
  */
15280
15707
  secretStoreId?: string;
15281
15708
  /**
15282
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15709
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15710
  */
15284
15711
  subdomain: string;
15285
15712
  /**
@@ -15331,7 +15758,7 @@ export interface ResourceTrino {
15331
15758
  */
15332
15759
  secretStoreId?: string;
15333
15760
  /**
15334
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15761
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15762
  */
15336
15763
  subdomain: string;
15337
15764
  /**
@@ -15391,7 +15818,7 @@ export interface ResourceVertica {
15391
15818
  */
15392
15819
  secretStoreId?: string;
15393
15820
  /**
15394
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
15821
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource 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
15822
  */
15396
15823
  subdomain: string;
15397
15824
  /**
@@ -15518,6 +15945,66 @@ export interface SecretEngineKeyValue {
15518
15945
  [key: string]: string;
15519
15946
  };
15520
15947
  }
15948
+ export interface SecretEnginePostgresSecretEngine {
15949
+ /**
15950
+ * The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
15951
+ */
15952
+ afterReadTtl?: string;
15953
+ /**
15954
+ * Database is the database to verify credential against.
15955
+ */
15956
+ database: string;
15957
+ /**
15958
+ * Hostname is the hostname or IP address of the Postgres server.
15959
+ */
15960
+ hostname: string;
15961
+ /**
15962
+ * An interval of public/private key rotation for secret engine in days
15963
+ */
15964
+ keyRotationIntervalDays?: number;
15965
+ /**
15966
+ * Unique human-readable name of the Secret Engine.
15967
+ */
15968
+ name: string;
15969
+ /**
15970
+ * Password is the password to connect to the Postgres server.
15971
+ */
15972
+ password: string;
15973
+ /**
15974
+ * Port is the port number of the Postgres server.
15975
+ */
15976
+ port: number;
15977
+ /**
15978
+ * Public key linked with a secret engine
15979
+ */
15980
+ publicKey: string;
15981
+ /**
15982
+ * Backing secret store identifier
15983
+ */
15984
+ secretStoreId: string;
15985
+ /**
15986
+ * Backing Secret Store root path where managed secrets are going to be stored
15987
+ */
15988
+ secretStoreRootPath: string;
15989
+ /**
15990
+ * Tags is a map of key, value pairs.
15991
+ */
15992
+ tags?: {
15993
+ [key: string]: string;
15994
+ };
15995
+ /**
15996
+ * TLS enables TLS/SSL when connecting to the Postgres server.
15997
+ */
15998
+ tls?: boolean;
15999
+ /**
16000
+ * The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
16001
+ */
16002
+ ttl?: string;
16003
+ /**
16004
+ * Username is the username to connect to the Postgres server.
16005
+ */
16006
+ username: string;
16007
+ }
15521
16008
  export interface SecretStoreActiveDirectoryStore {
15522
16009
  /**
15523
16010
  * Unique human-readable name of the SecretStore.
@@ -15543,6 +16030,14 @@ export interface SecretStoreAws {
15543
16030
  * The AWS region to target e.g. us-east-1
15544
16031
  */
15545
16032
  region: string;
16033
+ /**
16034
+ * The role to assume after logging in.
16035
+ */
16036
+ roleArn?: string;
16037
+ /**
16038
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
16039
+ */
16040
+ roleExternalId?: string;
15546
16041
  /**
15547
16042
  * Tags is a map of key, value pairs.
15548
16043
  */
@@ -15812,6 +16307,18 @@ export interface SecretStoreKeyfactorX509Store {
15812
16307
  [key: string]: string;
15813
16308
  };
15814
16309
  }
16310
+ export interface SecretStoreStrongVault {
16311
+ /**
16312
+ * Unique human-readable name of the SecretStore.
16313
+ */
16314
+ name: string;
16315
+ /**
16316
+ * Tags is a map of key, value pairs.
16317
+ */
16318
+ tags?: {
16319
+ [key: string]: string;
16320
+ };
16321
+ }
15815
16322
  export interface SecretStoreVaultApprole {
15816
16323
  /**
15817
16324
  * Unique human-readable name of the SecretStore.
@@ -15916,6 +16423,70 @@ export interface SecretStoreVaultAwsEc2 {
15916
16423
  [key: string]: string;
15917
16424
  };
15918
16425
  }
16426
+ export interface SecretStoreVaultAwsEc2CertSsh {
16427
+ /**
16428
+ * The lifetime of certificates issued by this CA represented in minutes.
16429
+ */
16430
+ issuedCertTtlMinutes: number;
16431
+ /**
16432
+ * Unique human-readable name of the SecretStore.
16433
+ */
16434
+ name: string;
16435
+ /**
16436
+ * The namespace to make requests within
16437
+ */
16438
+ namespace?: string;
16439
+ /**
16440
+ * The URL of the Vault to target
16441
+ */
16442
+ serverAddress: string;
16443
+ /**
16444
+ * The signing role to be used for signing certificates
16445
+ */
16446
+ signingRole: string;
16447
+ /**
16448
+ * The mount point of the SSH engine configured with the desired CA
16449
+ */
16450
+ sshMountPoint: string;
16451
+ /**
16452
+ * Tags is a map of key, value pairs.
16453
+ */
16454
+ tags?: {
16455
+ [key: string]: string;
16456
+ };
16457
+ }
16458
+ export interface SecretStoreVaultAwsEc2CertX509 {
16459
+ /**
16460
+ * The lifetime of certificates issued by this CA represented in minutes.
16461
+ */
16462
+ issuedCertTtlMinutes: number;
16463
+ /**
16464
+ * Unique human-readable name of the SecretStore.
16465
+ */
16466
+ name: string;
16467
+ /**
16468
+ * The namespace to make requests within
16469
+ */
16470
+ namespace?: string;
16471
+ /**
16472
+ * The mount point of the PKI engine configured with the desired CA
16473
+ */
16474
+ pkiMountPoint: string;
16475
+ /**
16476
+ * The URL of the Vault to target
16477
+ */
16478
+ serverAddress: string;
16479
+ /**
16480
+ * The signing role to be used for signing certificates
16481
+ */
16482
+ signingRole: string;
16483
+ /**
16484
+ * Tags is a map of key, value pairs.
16485
+ */
16486
+ tags?: {
16487
+ [key: string]: string;
16488
+ };
16489
+ }
15919
16490
  export interface SecretStoreVaultAwsIam {
15920
16491
  /**
15921
16492
  * Unique human-readable name of the SecretStore.
@@ -15936,6 +16507,70 @@ export interface SecretStoreVaultAwsIam {
15936
16507
  [key: string]: string;
15937
16508
  };
15938
16509
  }
16510
+ export interface SecretStoreVaultAwsIamCertSsh {
16511
+ /**
16512
+ * The lifetime of certificates issued by this CA represented in minutes.
16513
+ */
16514
+ issuedCertTtlMinutes: number;
16515
+ /**
16516
+ * Unique human-readable name of the SecretStore.
16517
+ */
16518
+ name: string;
16519
+ /**
16520
+ * The namespace to make requests within
16521
+ */
16522
+ namespace?: string;
16523
+ /**
16524
+ * The URL of the Vault to target
16525
+ */
16526
+ serverAddress: string;
16527
+ /**
16528
+ * The signing role to be used for signing certificates
16529
+ */
16530
+ signingRole: string;
16531
+ /**
16532
+ * The mount point of the SSH engine configured with the desired CA
16533
+ */
16534
+ sshMountPoint: string;
16535
+ /**
16536
+ * Tags is a map of key, value pairs.
16537
+ */
16538
+ tags?: {
16539
+ [key: string]: string;
16540
+ };
16541
+ }
16542
+ export interface SecretStoreVaultAwsIamCertX509 {
16543
+ /**
16544
+ * The lifetime of certificates issued by this CA represented in minutes.
16545
+ */
16546
+ issuedCertTtlMinutes: number;
16547
+ /**
16548
+ * Unique human-readable name of the SecretStore.
16549
+ */
16550
+ name: string;
16551
+ /**
16552
+ * The namespace to make requests within
16553
+ */
16554
+ namespace?: string;
16555
+ /**
16556
+ * The mount point of the PKI engine configured with the desired CA
16557
+ */
16558
+ pkiMountPoint: string;
16559
+ /**
16560
+ * The URL of the Vault to target
16561
+ */
16562
+ serverAddress: string;
16563
+ /**
16564
+ * The signing role to be used for signing certificates
16565
+ */
16566
+ signingRole: string;
16567
+ /**
16568
+ * Tags is a map of key, value pairs.
16569
+ */
16570
+ tags?: {
16571
+ [key: string]: string;
16572
+ };
16573
+ }
15939
16574
  export interface SecretStoreVaultTls {
15940
16575
  /**
15941
16576
  * A path to a CA file accessible by a Node