@pierskarsenbarg/sdm 1.30.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/account.d.ts +3 -6
  2. package/account.js +5 -5
  3. package/account.js.map +1 -1
  4. package/accountAttachment.js +7 -7
  5. package/accountAttachment.js.map +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 +6 -0
  10. package/approvalWorkflow.js +16 -10
  11. package/approvalWorkflow.js.map +1 -1
  12. package/getAccount.d.ts +2 -2
  13. package/getAccountGroup.d.ts +101 -0
  14. package/getAccountGroup.js +66 -0
  15. package/getAccountGroup.js.map +1 -0
  16. package/getGroup.d.ts +127 -0
  17. package/getGroup.js +72 -0
  18. package/getGroup.js.map +1 -0
  19. package/getGroupRole.d.ts +101 -0
  20. package/getGroupRole.js +66 -0
  21. package/getGroupRole.js.map +1 -0
  22. package/getNode.d.ts +2 -2
  23. package/getResource.d.ts +2 -2
  24. package/getSecretEngine.d.ts +74 -2
  25. package/getSecretEngine.js +12 -0
  26. package/getSecretEngine.js.map +1 -1
  27. package/getSecretStore.d.ts +2 -2
  28. package/getWorkflow.d.ts +32 -0
  29. package/getWorkflow.js +32 -0
  30. package/getWorkflow.js.map +1 -1
  31. package/getWorkflowRole.d.ts +10 -4
  32. package/getWorkflowRole.js +10 -4
  33. package/getWorkflowRole.js.map +1 -1
  34. package/group.d.ts +110 -0
  35. package/group.js +79 -0
  36. package/group.js.map +1 -0
  37. package/groupRole.d.ts +87 -0
  38. package/groupRole.js +84 -0
  39. package/groupRole.js.map +1 -0
  40. package/identityAlias.js +10 -10
  41. package/identityAlias.js.map +1 -1
  42. package/identitySet.js +3 -3
  43. package/identitySet.js.map +1 -1
  44. package/index.d.ts +18 -0
  45. package/index.js +26 -2
  46. package/index.js.map +1 -1
  47. package/managedSecret.js +14 -14
  48. package/managedSecret.js.map +1 -1
  49. package/managedSecretValue.js +8 -8
  50. package/managedSecretValue.js.map +1 -1
  51. package/node.js +7 -7
  52. package/node.js.map +1 -1
  53. package/package.json +1 -1
  54. package/peeringGroup.js +3 -3
  55. package/peeringGroup.js.map +1 -1
  56. package/peeringGroupNode.js +5 -5
  57. package/peeringGroupNode.js.map +1 -1
  58. package/peeringGroupPeer.js +5 -5
  59. package/peeringGroupPeer.js.map +1 -1
  60. package/peeringGroupResource.js +5 -5
  61. package/peeringGroupResource.js.map +1 -1
  62. package/policy.js +7 -7
  63. package/policy.js.map +1 -1
  64. package/provider.js +4 -4
  65. package/provider.js.map +1 -1
  66. package/proxyClusterKey.js +5 -5
  67. package/proxyClusterKey.js.map +1 -1
  68. package/remoteIdentity.js +10 -10
  69. package/remoteIdentity.js.map +1 -1
  70. package/resource.d.ts +96 -27
  71. package/resource.js +221 -215
  72. package/resource.js.map +1 -1
  73. package/role.d.ts +37 -0
  74. package/role.js +45 -8
  75. package/role.js.map +1 -1
  76. package/secretEngine.d.ts +9 -15
  77. package/secretEngine.js +7 -5
  78. package/secretEngine.js.map +1 -1
  79. package/secretStore.d.ts +3 -6
  80. package/secretStore.js +47 -47
  81. package/secretStore.js.map +1 -1
  82. package/types/input.d.ts +613 -348
  83. package/types/output.d.ts +1299 -688
  84. package/utilities.js +18 -29
  85. package/utilities.js.map +1 -1
  86. package/workflow.d.ts +42 -0
  87. package/workflow.js +61 -19
  88. package/workflow.js.map +1 -1
  89. package/workflowApprover.js +8 -8
  90. package/workflowApprover.js.map +1 -1
  91. package/workflowRole.d.ts +6 -2
  92. package/workflowRole.js +13 -9
  93. package/workflowRole.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -81,15 +81,19 @@ export interface ApprovalWorkflowApprovalStep {
81
81
  }
82
82
  export interface ApprovalWorkflowApprovalStepApprover {
83
83
  /**
84
- * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
84
+ * The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
85
85
  */
86
86
  accountId?: pulumi.Input<string>;
87
87
  /**
88
- * 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)
88
+ * The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
89
+ */
90
+ groupId?: pulumi.Input<string>;
91
+ /**
92
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
89
93
  */
90
94
  reference?: pulumi.Input<string>;
91
95
  /**
92
- * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
96
+ * The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
93
97
  */
94
98
  roleId?: pulumi.Input<string>;
95
99
  }
@@ -123,29 +127,37 @@ export interface GetApprovalWorkflowApprovalStepArgs {
123
127
  }
124
128
  export interface GetApprovalWorkflowApprovalStepApprover {
125
129
  /**
126
- * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
130
+ * The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
127
131
  */
128
132
  accountId?: string;
129
133
  /**
130
- * 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)
134
+ * The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
135
+ */
136
+ groupId?: string;
137
+ /**
138
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
131
139
  */
132
140
  reference?: string;
133
141
  /**
134
- * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
142
+ * The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
135
143
  */
136
144
  roleId?: string;
137
145
  }
138
146
  export interface GetApprovalWorkflowApprovalStepApproverArgs {
139
147
  /**
140
- * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
148
+ * The account id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
141
149
  */
142
150
  accountId?: pulumi.Input<string>;
143
151
  /**
144
- * 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)
152
+ * The group id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
153
+ */
154
+ groupId?: pulumi.Input<string>;
155
+ /**
156
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, group id, or reference may be present for one approver)
145
157
  */
146
158
  reference?: pulumi.Input<string>;
147
159
  /**
148
- * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
160
+ * The role id of the approver (only one of account_id, role_id, group id, or reference may be present for one approver)
149
161
  */
150
162
  roleId?: pulumi.Input<string>;
151
163
  }
@@ -257,7 +269,7 @@ export interface NodeRelayMaintenanceWindow {
257
269
  }
258
270
  export interface ResourceAerospike {
259
271
  /**
260
- * 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.
272
+ * 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.
261
273
  */
262
274
  bindInterface?: pulumi.Input<string>;
263
275
  /**
@@ -281,7 +293,7 @@ export interface ResourceAerospike {
281
293
  */
282
294
  port?: pulumi.Input<number>;
283
295
  /**
284
- * The local port used by clients to connect to this resource.
296
+ * 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.
285
297
  */
286
298
  portOverride?: pulumi.Input<number>;
287
299
  /**
@@ -293,7 +305,7 @@ export interface ResourceAerospike {
293
305
  */
294
306
  secretStoreId?: pulumi.Input<string>;
295
307
  /**
296
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
308
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
297
309
  */
298
310
  subdomain?: pulumi.Input<string>;
299
311
  /**
@@ -317,7 +329,7 @@ export interface ResourceAks {
317
329
  */
318
330
  allowResourceRoleBypass?: pulumi.Input<boolean>;
319
331
  /**
320
- * 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.
332
+ * 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.
321
333
  */
322
334
  bindInterface?: pulumi.Input<string>;
323
335
  /**
@@ -369,7 +381,7 @@ export interface ResourceAks {
369
381
  */
370
382
  port: pulumi.Input<number>;
371
383
  /**
372
- * The local port used by clients to connect to this resource.
384
+ * 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.
373
385
  */
374
386
  portOverride?: pulumi.Input<number>;
375
387
  /**
@@ -381,7 +393,7 @@ export interface ResourceAks {
381
393
  */
382
394
  secretStoreId?: pulumi.Input<string>;
383
395
  /**
384
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
396
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
385
397
  */
386
398
  subdomain?: pulumi.Input<string>;
387
399
  /**
@@ -393,7 +405,7 @@ export interface ResourceAks {
393
405
  }
394
406
  export interface ResourceAksBasicAuth {
395
407
  /**
396
- * 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.
408
+ * 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.
397
409
  */
398
410
  bindInterface?: pulumi.Input<string>;
399
411
  /**
@@ -421,7 +433,7 @@ export interface ResourceAksBasicAuth {
421
433
  */
422
434
  port: pulumi.Input<number>;
423
435
  /**
424
- * The local port used by clients to connect to this resource.
436
+ * 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.
425
437
  */
426
438
  portOverride?: pulumi.Input<number>;
427
439
  /**
@@ -433,7 +445,7 @@ export interface ResourceAksBasicAuth {
433
445
  */
434
446
  secretStoreId?: pulumi.Input<string>;
435
447
  /**
436
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
448
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
437
449
  */
438
450
  subdomain?: pulumi.Input<string>;
439
451
  /**
@@ -453,7 +465,7 @@ export interface ResourceAksServiceAccount {
453
465
  */
454
466
  allowResourceRoleBypass?: pulumi.Input<boolean>;
455
467
  /**
456
- * 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.
468
+ * 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.
457
469
  */
458
470
  bindInterface?: pulumi.Input<string>;
459
471
  /**
@@ -493,7 +505,7 @@ export interface ResourceAksServiceAccount {
493
505
  */
494
506
  port: pulumi.Input<number>;
495
507
  /**
496
- * The local port used by clients to connect to this resource.
508
+ * 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.
497
509
  */
498
510
  portOverride?: pulumi.Input<number>;
499
511
  /**
@@ -505,7 +517,7 @@ export interface ResourceAksServiceAccount {
505
517
  */
506
518
  secretStoreId?: pulumi.Input<string>;
507
519
  /**
508
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
520
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
509
521
  */
510
522
  subdomain?: pulumi.Input<string>;
511
523
  /**
@@ -522,7 +534,7 @@ export interface ResourceAksServiceAccount {
522
534
  }
523
535
  export interface ResourceAksServiceAccountUserImpersonation {
524
536
  /**
525
- * 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.
537
+ * 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.
526
538
  */
527
539
  bindInterface?: pulumi.Input<string>;
528
540
  /**
@@ -546,7 +558,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
546
558
  */
547
559
  port: pulumi.Input<number>;
548
560
  /**
549
- * The local port used by clients to connect to this resource.
561
+ * 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.
550
562
  */
551
563
  portOverride?: pulumi.Input<number>;
552
564
  /**
@@ -558,7 +570,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
558
570
  */
559
571
  secretStoreId?: pulumi.Input<string>;
560
572
  /**
561
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
573
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
562
574
  */
563
575
  subdomain?: pulumi.Input<string>;
564
576
  /**
@@ -575,7 +587,7 @@ export interface ResourceAksServiceAccountUserImpersonation {
575
587
  }
576
588
  export interface ResourceAksUserImpersonation {
577
589
  /**
578
- * 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.
590
+ * 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.
579
591
  */
580
592
  bindInterface?: pulumi.Input<string>;
581
593
  /**
@@ -611,7 +623,7 @@ export interface ResourceAksUserImpersonation {
611
623
  */
612
624
  port: pulumi.Input<number>;
613
625
  /**
614
- * The local port used by clients to connect to this resource.
626
+ * 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.
615
627
  */
616
628
  portOverride?: pulumi.Input<number>;
617
629
  /**
@@ -623,7 +635,7 @@ export interface ResourceAksUserImpersonation {
623
635
  */
624
636
  secretStoreId?: pulumi.Input<string>;
625
637
  /**
626
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
638
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
627
639
  */
628
640
  subdomain?: pulumi.Input<string>;
629
641
  /**
@@ -643,7 +655,7 @@ export interface ResourceAmazonEks {
643
655
  */
644
656
  allowResourceRoleBypass?: pulumi.Input<boolean>;
645
657
  /**
646
- * 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.
658
+ * 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.
647
659
  */
648
660
  bindInterface?: pulumi.Input<string>;
649
661
  /**
@@ -687,7 +699,7 @@ export interface ResourceAmazonEks {
687
699
  */
688
700
  name: pulumi.Input<string>;
689
701
  /**
690
- * The local port used by clients to connect to this resource.
702
+ * 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.
691
703
  */
692
704
  portOverride?: pulumi.Input<number>;
693
705
  /**
@@ -715,7 +727,7 @@ export interface ResourceAmazonEks {
715
727
  */
716
728
  secretStoreId?: pulumi.Input<string>;
717
729
  /**
718
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
730
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
719
731
  */
720
732
  subdomain?: pulumi.Input<string>;
721
733
  /**
@@ -731,7 +743,7 @@ export interface ResourceAmazonEksInstanceProfile {
731
743
  */
732
744
  allowResourceRoleBypass?: pulumi.Input<boolean>;
733
745
  /**
734
- * 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.
746
+ * 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.
735
747
  */
736
748
  bindInterface?: pulumi.Input<string>;
737
749
  /**
@@ -775,7 +787,7 @@ export interface ResourceAmazonEksInstanceProfile {
775
787
  */
776
788
  name: pulumi.Input<string>;
777
789
  /**
778
- * The local port used by clients to connect to this resource.
790
+ * 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.
779
791
  */
780
792
  portOverride?: pulumi.Input<number>;
781
793
  /**
@@ -799,7 +811,7 @@ export interface ResourceAmazonEksInstanceProfile {
799
811
  */
800
812
  secretStoreId?: pulumi.Input<string>;
801
813
  /**
802
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
814
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
803
815
  */
804
816
  subdomain?: pulumi.Input<string>;
805
817
  /**
@@ -811,7 +823,7 @@ export interface ResourceAmazonEksInstanceProfile {
811
823
  }
812
824
  export interface ResourceAmazonEksInstanceProfileUserImpersonation {
813
825
  /**
814
- * 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.
826
+ * 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.
815
827
  */
816
828
  bindInterface?: pulumi.Input<string>;
817
829
  /**
@@ -839,7 +851,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
839
851
  */
840
852
  name: pulumi.Input<string>;
841
853
  /**
842
- * The local port used by clients to connect to this resource.
854
+ * 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.
843
855
  */
844
856
  portOverride?: pulumi.Input<number>;
845
857
  /**
@@ -863,7 +875,7 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
863
875
  */
864
876
  secretStoreId?: pulumi.Input<string>;
865
877
  /**
866
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
878
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
867
879
  */
868
880
  subdomain?: pulumi.Input<string>;
869
881
  /**
@@ -879,7 +891,7 @@ export interface ResourceAmazonEksUserImpersonation {
879
891
  */
880
892
  accessKey?: pulumi.Input<string>;
881
893
  /**
882
- * 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.
894
+ * 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.
883
895
  */
884
896
  bindInterface?: pulumi.Input<string>;
885
897
  /**
@@ -907,7 +919,7 @@ export interface ResourceAmazonEksUserImpersonation {
907
919
  */
908
920
  name: pulumi.Input<string>;
909
921
  /**
910
- * The local port used by clients to connect to this resource.
922
+ * 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.
911
923
  */
912
924
  portOverride?: pulumi.Input<number>;
913
925
  /**
@@ -935,7 +947,7 @@ export interface ResourceAmazonEksUserImpersonation {
935
947
  */
936
948
  secretStoreId?: pulumi.Input<string>;
937
949
  /**
938
- * 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.
939
951
  */
940
952
  subdomain?: pulumi.Input<string>;
941
953
  /**
@@ -951,7 +963,7 @@ export interface ResourceAmazonEs {
951
963
  */
952
964
  accessKey?: pulumi.Input<string>;
953
965
  /**
954
- * 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.
966
+ * 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.
955
967
  */
956
968
  bindInterface?: pulumi.Input<string>;
957
969
  /**
@@ -967,7 +979,7 @@ export interface ResourceAmazonEs {
967
979
  */
968
980
  name: pulumi.Input<string>;
969
981
  /**
970
- * The local port used by clients to connect to this resource.
982
+ * 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.
971
983
  */
972
984
  portOverride?: pulumi.Input<number>;
973
985
  /**
@@ -995,7 +1007,7 @@ export interface ResourceAmazonEs {
995
1007
  */
996
1008
  secretStoreId?: pulumi.Input<string>;
997
1009
  /**
998
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1010
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
999
1011
  */
1000
1012
  subdomain?: pulumi.Input<string>;
1001
1013
  /**
@@ -1007,7 +1019,7 @@ export interface ResourceAmazonEs {
1007
1019
  }
1008
1020
  export interface ResourceAmazonEsiam {
1009
1021
  /**
1010
- * 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.
1022
+ * 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.
1011
1023
  */
1012
1024
  bindInterface?: pulumi.Input<string>;
1013
1025
  /**
@@ -1023,7 +1035,7 @@ export interface ResourceAmazonEsiam {
1023
1035
  */
1024
1036
  name: pulumi.Input<string>;
1025
1037
  /**
1026
- * The local port used by clients to connect to this resource.
1038
+ * 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.
1027
1039
  */
1028
1040
  portOverride?: pulumi.Input<number>;
1029
1041
  /**
@@ -1047,7 +1059,7 @@ export interface ResourceAmazonEsiam {
1047
1059
  */
1048
1060
  secretStoreId?: pulumi.Input<string>;
1049
1061
  /**
1050
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1062
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1051
1063
  */
1052
1064
  subdomain?: pulumi.Input<string>;
1053
1065
  /**
@@ -1061,9 +1073,65 @@ export interface ResourceAmazonEsiam {
1061
1073
  */
1062
1074
  tlsRequired?: pulumi.Input<boolean>;
1063
1075
  }
1076
+ export interface ResourceAmazonmqAmqp {
1077
+ /**
1078
+ * 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.
1079
+ */
1080
+ bindInterface?: pulumi.Input<string>;
1081
+ /**
1082
+ * A filter applied to the routing logic to pin datasource to nodes.
1083
+ */
1084
+ egressFilter?: pulumi.Input<string>;
1085
+ /**
1086
+ * The host to dial to initiate a connection from the egress node to this resource.
1087
+ */
1088
+ hostname: pulumi.Input<string>;
1089
+ /**
1090
+ * Unique human-readable name of the Resource.
1091
+ */
1092
+ name: pulumi.Input<string>;
1093
+ /**
1094
+ * The password to authenticate with.
1095
+ */
1096
+ password?: pulumi.Input<string>;
1097
+ /**
1098
+ * The port to dial to initiate a connection from the egress node to this resource.
1099
+ */
1100
+ port?: pulumi.Input<number>;
1101
+ /**
1102
+ * 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.
1103
+ */
1104
+ portOverride?: pulumi.Input<number>;
1105
+ /**
1106
+ * ID of the proxy cluster for this resource, if any.
1107
+ */
1108
+ proxyClusterId?: pulumi.Input<string>;
1109
+ /**
1110
+ * ID of the secret store containing credentials for this resource, if any.
1111
+ */
1112
+ secretStoreId?: pulumi.Input<string>;
1113
+ /**
1114
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1115
+ */
1116
+ subdomain?: pulumi.Input<string>;
1117
+ /**
1118
+ * Tags is a map of key, value pairs.
1119
+ */
1120
+ tags?: pulumi.Input<{
1121
+ [key: string]: pulumi.Input<string>;
1122
+ }>;
1123
+ /**
1124
+ * If set, TLS must be used to connect to this resource.
1125
+ */
1126
+ tlsRequired?: pulumi.Input<boolean>;
1127
+ /**
1128
+ * The username to authenticate with.
1129
+ */
1130
+ username?: pulumi.Input<string>;
1131
+ }
1064
1132
  export interface ResourceAmazonmqAmqp091 {
1065
1133
  /**
1066
- * 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.
1134
+ * 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.
1067
1135
  */
1068
1136
  bindInterface?: pulumi.Input<string>;
1069
1137
  /**
@@ -1087,7 +1155,7 @@ export interface ResourceAmazonmqAmqp091 {
1087
1155
  */
1088
1156
  port?: pulumi.Input<number>;
1089
1157
  /**
1090
- * The local port used by clients to connect to this resource.
1158
+ * 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.
1091
1159
  */
1092
1160
  portOverride?: pulumi.Input<number>;
1093
1161
  /**
@@ -1099,7 +1167,7 @@ export interface ResourceAmazonmqAmqp091 {
1099
1167
  */
1100
1168
  secretStoreId?: pulumi.Input<string>;
1101
1169
  /**
1102
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1170
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1103
1171
  */
1104
1172
  subdomain?: pulumi.Input<string>;
1105
1173
  /**
@@ -1127,7 +1195,7 @@ export interface ResourceAthena {
1127
1195
  */
1128
1196
  athenaOutput: pulumi.Input<string>;
1129
1197
  /**
1130
- * 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.
1198
+ * 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.
1131
1199
  */
1132
1200
  bindInterface?: pulumi.Input<string>;
1133
1201
  /**
@@ -1139,7 +1207,7 @@ export interface ResourceAthena {
1139
1207
  */
1140
1208
  name: pulumi.Input<string>;
1141
1209
  /**
1142
- * The local port used by clients to connect to this resource.
1210
+ * 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.
1143
1211
  */
1144
1212
  portOverride?: pulumi.Input<number>;
1145
1213
  /**
@@ -1167,7 +1235,7 @@ export interface ResourceAthena {
1167
1235
  */
1168
1236
  secretStoreId?: pulumi.Input<string>;
1169
1237
  /**
1170
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1238
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1171
1239
  */
1172
1240
  subdomain?: pulumi.Input<string>;
1173
1241
  /**
@@ -1179,7 +1247,7 @@ export interface ResourceAthena {
1179
1247
  }
1180
1248
  export interface ResourceAthenaIam {
1181
1249
  /**
1182
- * 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.
1250
+ * 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.
1183
1251
  */
1184
1252
  bindInterface?: pulumi.Input<string>;
1185
1253
  /**
@@ -1195,7 +1263,7 @@ export interface ResourceAthenaIam {
1195
1263
  */
1196
1264
  output: pulumi.Input<string>;
1197
1265
  /**
1198
- * The local port used by clients to connect to this resource.
1266
+ * 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.
1199
1267
  */
1200
1268
  portOverride?: pulumi.Input<number>;
1201
1269
  /**
@@ -1219,7 +1287,7 @@ export interface ResourceAthenaIam {
1219
1287
  */
1220
1288
  secretStoreId?: pulumi.Input<string>;
1221
1289
  /**
1222
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1290
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1223
1291
  */
1224
1292
  subdomain?: pulumi.Input<string>;
1225
1293
  /**
@@ -1231,7 +1299,7 @@ export interface ResourceAthenaIam {
1231
1299
  }
1232
1300
  export interface ResourceAuroraMysql {
1233
1301
  /**
1234
- * 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.
1302
+ * 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.
1235
1303
  */
1236
1304
  bindInterface?: pulumi.Input<string>;
1237
1305
  /**
@@ -1259,7 +1327,7 @@ export interface ResourceAuroraMysql {
1259
1327
  */
1260
1328
  port?: pulumi.Input<number>;
1261
1329
  /**
1262
- * The local port used by clients to connect to this resource.
1330
+ * 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.
1263
1331
  */
1264
1332
  portOverride?: pulumi.Input<number>;
1265
1333
  /**
@@ -1275,7 +1343,7 @@ export interface ResourceAuroraMysql {
1275
1343
  */
1276
1344
  secretStoreId?: pulumi.Input<string>;
1277
1345
  /**
1278
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1346
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1279
1347
  */
1280
1348
  subdomain?: pulumi.Input<string>;
1281
1349
  /**
@@ -1295,7 +1363,7 @@ export interface ResourceAuroraMysql {
1295
1363
  }
1296
1364
  export interface ResourceAuroraMysqlIam {
1297
1365
  /**
1298
- * 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.
1366
+ * 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.
1299
1367
  */
1300
1368
  bindInterface?: pulumi.Input<string>;
1301
1369
  /**
@@ -1319,7 +1387,7 @@ export interface ResourceAuroraMysqlIam {
1319
1387
  */
1320
1388
  port?: pulumi.Input<number>;
1321
1389
  /**
1322
- * The local port used by clients to connect to this resource.
1390
+ * 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.
1323
1391
  */
1324
1392
  portOverride?: pulumi.Input<number>;
1325
1393
  /**
@@ -1339,7 +1407,7 @@ export interface ResourceAuroraMysqlIam {
1339
1407
  */
1340
1408
  secretStoreId?: pulumi.Input<string>;
1341
1409
  /**
1342
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1410
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1343
1411
  */
1344
1412
  subdomain?: pulumi.Input<string>;
1345
1413
  /**
@@ -1355,7 +1423,7 @@ export interface ResourceAuroraMysqlIam {
1355
1423
  }
1356
1424
  export interface ResourceAuroraPostgres {
1357
1425
  /**
1358
- * 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.
1426
+ * 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.
1359
1427
  */
1360
1428
  bindInterface?: pulumi.Input<string>;
1361
1429
  /**
@@ -1387,7 +1455,7 @@ export interface ResourceAuroraPostgres {
1387
1455
  */
1388
1456
  port?: pulumi.Input<number>;
1389
1457
  /**
1390
- * The local port used by clients to connect to this resource.
1458
+ * 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.
1391
1459
  */
1392
1460
  portOverride?: pulumi.Input<number>;
1393
1461
  /**
@@ -1399,7 +1467,7 @@ export interface ResourceAuroraPostgres {
1399
1467
  */
1400
1468
  secretStoreId?: pulumi.Input<string>;
1401
1469
  /**
1402
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1470
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1403
1471
  */
1404
1472
  subdomain?: pulumi.Input<string>;
1405
1473
  /**
@@ -1415,7 +1483,7 @@ export interface ResourceAuroraPostgres {
1415
1483
  }
1416
1484
  export interface ResourceAuroraPostgresIam {
1417
1485
  /**
1418
- * 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.
1486
+ * 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.
1419
1487
  */
1420
1488
  bindInterface?: pulumi.Input<string>;
1421
1489
  /**
@@ -1443,7 +1511,7 @@ export interface ResourceAuroraPostgresIam {
1443
1511
  */
1444
1512
  port?: pulumi.Input<number>;
1445
1513
  /**
1446
- * The local port used by clients to connect to this resource.
1514
+ * 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.
1447
1515
  */
1448
1516
  portOverride?: pulumi.Input<number>;
1449
1517
  /**
@@ -1463,7 +1531,7 @@ export interface ResourceAuroraPostgresIam {
1463
1531
  */
1464
1532
  secretStoreId?: pulumi.Input<string>;
1465
1533
  /**
1466
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1534
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1467
1535
  */
1468
1536
  subdomain?: pulumi.Input<string>;
1469
1537
  /**
@@ -1483,7 +1551,7 @@ export interface ResourceAws {
1483
1551
  */
1484
1552
  accessKey?: pulumi.Input<string>;
1485
1553
  /**
1486
- * 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.
1554
+ * 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.
1487
1555
  */
1488
1556
  bindInterface?: pulumi.Input<string>;
1489
1557
  /**
@@ -1499,7 +1567,7 @@ export interface ResourceAws {
1499
1567
  */
1500
1568
  name: pulumi.Input<string>;
1501
1569
  /**
1502
- * The local port used by clients to connect to this resource.
1570
+ * 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.
1503
1571
  */
1504
1572
  portOverride?: pulumi.Input<number>;
1505
1573
  /**
@@ -1523,7 +1591,7 @@ export interface ResourceAws {
1523
1591
  */
1524
1592
  secretStoreId?: pulumi.Input<string>;
1525
1593
  /**
1526
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1594
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1527
1595
  */
1528
1596
  subdomain?: pulumi.Input<string>;
1529
1597
  /**
@@ -1535,7 +1603,7 @@ export interface ResourceAws {
1535
1603
  }
1536
1604
  export interface ResourceAwsConsole {
1537
1605
  /**
1538
- * 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.
1606
+ * 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.
1539
1607
  */
1540
1608
  bindInterface?: pulumi.Input<string>;
1541
1609
  /**
@@ -1559,7 +1627,7 @@ export interface ResourceAwsConsole {
1559
1627
  */
1560
1628
  name: pulumi.Input<string>;
1561
1629
  /**
1562
- * The local port used by clients to connect to this resource.
1630
+ * 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.
1563
1631
  */
1564
1632
  portOverride?: pulumi.Input<number>;
1565
1633
  /**
@@ -1587,7 +1655,7 @@ export interface ResourceAwsConsole {
1587
1655
  */
1588
1656
  sessionExpiry?: pulumi.Input<number>;
1589
1657
  /**
1590
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1658
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1591
1659
  */
1592
1660
  subdomain: pulumi.Input<string>;
1593
1661
  /**
@@ -1603,7 +1671,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
1603
1671
  */
1604
1672
  accessKey?: pulumi.Input<string>;
1605
1673
  /**
1606
- * 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.
1674
+ * 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.
1607
1675
  */
1608
1676
  bindInterface?: pulumi.Input<string>;
1609
1677
  /**
@@ -1623,7 +1691,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
1623
1691
  */
1624
1692
  name: pulumi.Input<string>;
1625
1693
  /**
1626
- * The local port used by clients to connect to this resource.
1694
+ * 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.
1627
1695
  */
1628
1696
  portOverride?: pulumi.Input<number>;
1629
1697
  /**
@@ -1655,7 +1723,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
1655
1723
  */
1656
1724
  sessionExpiry?: pulumi.Input<number>;
1657
1725
  /**
1658
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1726
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1659
1727
  */
1660
1728
  subdomain: pulumi.Input<string>;
1661
1729
  /**
@@ -1667,7 +1735,7 @@ export interface ResourceAwsConsoleStaticKeyPair {
1667
1735
  }
1668
1736
  export interface ResourceAwsInstanceProfile {
1669
1737
  /**
1670
- * 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.
1738
+ * 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.
1671
1739
  */
1672
1740
  bindInterface?: pulumi.Input<string>;
1673
1741
  /**
@@ -1683,7 +1751,7 @@ export interface ResourceAwsInstanceProfile {
1683
1751
  */
1684
1752
  name: pulumi.Input<string>;
1685
1753
  /**
1686
- * The local port used by clients to connect to this resource.
1754
+ * 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.
1687
1755
  */
1688
1756
  portOverride?: pulumi.Input<number>;
1689
1757
  /**
@@ -1707,7 +1775,7 @@ export interface ResourceAwsInstanceProfile {
1707
1775
  */
1708
1776
  secretStoreId?: pulumi.Input<string>;
1709
1777
  /**
1710
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1778
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1711
1779
  */
1712
1780
  subdomain?: pulumi.Input<string>;
1713
1781
  /**
@@ -1723,7 +1791,7 @@ export interface ResourceAzure {
1723
1791
  */
1724
1792
  appId?: pulumi.Input<string>;
1725
1793
  /**
1726
- * 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.
1794
+ * 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.
1727
1795
  */
1728
1796
  bindInterface?: pulumi.Input<string>;
1729
1797
  /**
@@ -1739,7 +1807,7 @@ export interface ResourceAzure {
1739
1807
  */
1740
1808
  password?: pulumi.Input<string>;
1741
1809
  /**
1742
- * The local port used by clients to connect to this resource.
1810
+ * 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.
1743
1811
  */
1744
1812
  portOverride?: pulumi.Input<number>;
1745
1813
  /**
@@ -1751,7 +1819,7 @@ export interface ResourceAzure {
1751
1819
  */
1752
1820
  secretStoreId?: pulumi.Input<string>;
1753
1821
  /**
1754
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1822
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1755
1823
  */
1756
1824
  subdomain?: pulumi.Input<string>;
1757
1825
  /**
@@ -1772,7 +1840,7 @@ export interface ResourceAzureCertificate {
1772
1840
  */
1773
1841
  appId?: pulumi.Input<string>;
1774
1842
  /**
1775
- * 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.
1843
+ * 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.
1776
1844
  */
1777
1845
  bindInterface?: pulumi.Input<string>;
1778
1846
  /**
@@ -1788,7 +1856,7 @@ export interface ResourceAzureCertificate {
1788
1856
  */
1789
1857
  name: pulumi.Input<string>;
1790
1858
  /**
1791
- * The local port used by clients to connect to this resource.
1859
+ * 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.
1792
1860
  */
1793
1861
  portOverride?: pulumi.Input<number>;
1794
1862
  /**
@@ -1800,7 +1868,7 @@ export interface ResourceAzureCertificate {
1800
1868
  */
1801
1869
  secretStoreId?: pulumi.Input<string>;
1802
1870
  /**
1803
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1871
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1804
1872
  */
1805
1873
  subdomain?: pulumi.Input<string>;
1806
1874
  /**
@@ -1815,61 +1883,73 @@ export interface ResourceAzureCertificate {
1815
1883
  */
1816
1884
  tenantId?: pulumi.Input<string>;
1817
1885
  }
1818
- export interface ResourceAzureConsole {
1886
+ export interface ResourceAzureMysql {
1819
1887
  /**
1820
- * 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.
1888
+ * 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.
1821
1889
  */
1822
1890
  bindInterface?: pulumi.Input<string>;
1823
1891
  /**
1824
- * The connector ID to authenticate through.
1892
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
1825
1893
  */
1826
- connectorId: pulumi.Input<string>;
1894
+ database?: pulumi.Input<string>;
1827
1895
  /**
1828
1896
  * A filter applied to the routing logic to pin datasource to nodes.
1829
1897
  */
1830
1898
  egressFilter?: pulumi.Input<string>;
1831
1899
  /**
1832
- * The ID of the identity set to use for identity connections.
1833
- */
1834
- identitySetId?: pulumi.Input<string>;
1835
- /**
1836
- * The management group ID to authenticate scope Privileges to.
1900
+ * The host to dial to initiate a connection from the egress node to this resource.
1837
1901
  */
1838
- managementGroupId?: pulumi.Input<string>;
1902
+ hostname: pulumi.Input<string>;
1839
1903
  /**
1840
1904
  * Unique human-readable name of the Resource.
1841
1905
  */
1842
1906
  name: pulumi.Input<string>;
1843
1907
  /**
1844
- * The privilege levels specify which Groups are managed externally
1908
+ * The password to authenticate with.
1845
1909
  */
1846
- privilegeLevels: pulumi.Input<string>;
1910
+ password?: pulumi.Input<string>;
1911
+ /**
1912
+ * The port to dial to initiate a connection from the egress node to this resource.
1913
+ */
1914
+ port?: pulumi.Input<number>;
1915
+ /**
1916
+ * 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.
1917
+ */
1918
+ portOverride?: pulumi.Input<number>;
1847
1919
  /**
1848
1920
  * ID of the proxy cluster for this resource, if any.
1849
1921
  */
1850
1922
  proxyClusterId?: pulumi.Input<string>;
1923
+ /**
1924
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
1925
+ */
1926
+ requireNativeAuth?: pulumi.Input<boolean>;
1851
1927
  /**
1852
1928
  * ID of the secret store containing credentials for this resource, if any.
1853
1929
  */
1854
1930
  secretStoreId?: pulumi.Input<string>;
1855
1931
  /**
1856
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1932
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1857
1933
  */
1858
1934
  subdomain?: pulumi.Input<string>;
1859
- /**
1860
- * The subscription ID to authenticate scope Privileges to.
1861
- */
1862
- subscriptionId?: pulumi.Input<string>;
1863
1935
  /**
1864
1936
  * Tags is a map of key, value pairs.
1865
1937
  */
1866
1938
  tags?: pulumi.Input<{
1867
1939
  [key: string]: pulumi.Input<string>;
1868
1940
  }>;
1941
+ /**
1942
+ * If true, appends the hostname to the username when hitting a database.azure.com address
1943
+ */
1944
+ useAzureSingleServerUsernames?: pulumi.Input<boolean>;
1945
+ /**
1946
+ * The username to authenticate with.
1947
+ */
1948
+ username?: pulumi.Input<string>;
1869
1949
  }
1870
- export interface ResourceAzureMysql {
1950
+ export interface ResourceAzureMysqlManagedIdentity {
1871
1951
  /**
1872
- * 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.
1952
+ * 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.
1873
1953
  */
1874
1954
  bindInterface?: pulumi.Input<string>;
1875
1955
  /**
@@ -1897,23 +1977,19 @@ export interface ResourceAzureMysql {
1897
1977
  */
1898
1978
  port?: pulumi.Input<number>;
1899
1979
  /**
1900
- * The local port used by clients to connect to this resource.
1980
+ * 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.
1901
1981
  */
1902
1982
  portOverride?: pulumi.Input<number>;
1903
1983
  /**
1904
1984
  * ID of the proxy cluster for this resource, if any.
1905
1985
  */
1906
1986
  proxyClusterId?: pulumi.Input<string>;
1907
- /**
1908
- * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
1909
- */
1910
- requireNativeAuth?: pulumi.Input<boolean>;
1911
1987
  /**
1912
1988
  * ID of the secret store containing credentials for this resource, if any.
1913
1989
  */
1914
1990
  secretStoreId?: pulumi.Input<string>;
1915
1991
  /**
1916
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1992
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1917
1993
  */
1918
1994
  subdomain?: pulumi.Input<string>;
1919
1995
  /**
@@ -1933,7 +2009,7 @@ export interface ResourceAzureMysql {
1933
2009
  }
1934
2010
  export interface ResourceAzurePostgres {
1935
2011
  /**
1936
- * 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.
2012
+ * 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.
1937
2013
  */
1938
2014
  bindInterface?: pulumi.Input<string>;
1939
2015
  /**
@@ -1965,7 +2041,7 @@ export interface ResourceAzurePostgres {
1965
2041
  */
1966
2042
  port?: pulumi.Input<number>;
1967
2043
  /**
1968
- * The local port used by clients to connect to this resource.
2044
+ * 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.
1969
2045
  */
1970
2046
  portOverride?: pulumi.Input<number>;
1971
2047
  /**
@@ -1977,7 +2053,7 @@ export interface ResourceAzurePostgres {
1977
2053
  */
1978
2054
  secretStoreId?: pulumi.Input<string>;
1979
2055
  /**
1980
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2056
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
1981
2057
  */
1982
2058
  subdomain?: pulumi.Input<string>;
1983
2059
  /**
@@ -1993,7 +2069,7 @@ export interface ResourceAzurePostgres {
1993
2069
  }
1994
2070
  export interface ResourceAzurePostgresManagedIdentity {
1995
2071
  /**
1996
- * 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.
2072
+ * 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.
1997
2073
  */
1998
2074
  bindInterface?: pulumi.Input<string>;
1999
2075
  /**
@@ -2025,7 +2101,7 @@ export interface ResourceAzurePostgresManagedIdentity {
2025
2101
  */
2026
2102
  port?: pulumi.Input<number>;
2027
2103
  /**
2028
- * The local port used by clients to connect to this resource.
2104
+ * 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.
2029
2105
  */
2030
2106
  portOverride?: pulumi.Input<number>;
2031
2107
  /**
@@ -2037,7 +2113,7 @@ export interface ResourceAzurePostgresManagedIdentity {
2037
2113
  */
2038
2114
  secretStoreId?: pulumi.Input<string>;
2039
2115
  /**
2040
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2116
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2041
2117
  */
2042
2118
  subdomain?: pulumi.Input<string>;
2043
2119
  /**
@@ -2057,7 +2133,7 @@ export interface ResourceAzurePostgresManagedIdentity {
2057
2133
  }
2058
2134
  export interface ResourceBigQuery {
2059
2135
  /**
2060
- * 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.
2136
+ * 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.
2061
2137
  */
2062
2138
  bindInterface?: pulumi.Input<string>;
2063
2139
  /**
@@ -2073,7 +2149,7 @@ export interface ResourceBigQuery {
2073
2149
  */
2074
2150
  name: pulumi.Input<string>;
2075
2151
  /**
2076
- * The local port used by clients to connect to this resource.
2152
+ * 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.
2077
2153
  */
2078
2154
  portOverride?: pulumi.Input<number>;
2079
2155
  /**
@@ -2093,7 +2169,7 @@ export interface ResourceBigQuery {
2093
2169
  */
2094
2170
  secretStoreId?: pulumi.Input<string>;
2095
2171
  /**
2096
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2172
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2097
2173
  */
2098
2174
  subdomain?: pulumi.Input<string>;
2099
2175
  /**
@@ -2109,7 +2185,7 @@ export interface ResourceBigQuery {
2109
2185
  }
2110
2186
  export interface ResourceCassandra {
2111
2187
  /**
2112
- * 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.
2188
+ * 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.
2113
2189
  */
2114
2190
  bindInterface?: pulumi.Input<string>;
2115
2191
  /**
@@ -2133,7 +2209,7 @@ export interface ResourceCassandra {
2133
2209
  */
2134
2210
  port?: pulumi.Input<number>;
2135
2211
  /**
2136
- * The local port used by clients to connect to this resource.
2212
+ * 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.
2137
2213
  */
2138
2214
  portOverride?: pulumi.Input<number>;
2139
2215
  /**
@@ -2145,7 +2221,7 @@ export interface ResourceCassandra {
2145
2221
  */
2146
2222
  secretStoreId?: pulumi.Input<string>;
2147
2223
  /**
2148
- * 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.
2149
2225
  */
2150
2226
  subdomain?: pulumi.Input<string>;
2151
2227
  /**
@@ -2165,7 +2241,7 @@ export interface ResourceCassandra {
2165
2241
  }
2166
2242
  export interface ResourceCitus {
2167
2243
  /**
2168
- * 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.
2244
+ * 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.
2169
2245
  */
2170
2246
  bindInterface?: pulumi.Input<string>;
2171
2247
  /**
@@ -2197,7 +2273,7 @@ export interface ResourceCitus {
2197
2273
  */
2198
2274
  port?: pulumi.Input<number>;
2199
2275
  /**
2200
- * The local port used by clients to connect to this resource.
2276
+ * 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.
2201
2277
  */
2202
2278
  portOverride?: pulumi.Input<number>;
2203
2279
  /**
@@ -2209,7 +2285,7 @@ export interface ResourceCitus {
2209
2285
  */
2210
2286
  secretStoreId?: pulumi.Input<string>;
2211
2287
  /**
2212
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2288
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2213
2289
  */
2214
2290
  subdomain?: pulumi.Input<string>;
2215
2291
  /**
@@ -2225,7 +2301,7 @@ export interface ResourceCitus {
2225
2301
  }
2226
2302
  export interface ResourceClickHouseHttp {
2227
2303
  /**
2228
- * 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.
2304
+ * 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.
2229
2305
  */
2230
2306
  bindInterface?: pulumi.Input<string>;
2231
2307
  /**
@@ -2245,7 +2321,7 @@ export interface ResourceClickHouseHttp {
2245
2321
  */
2246
2322
  password?: pulumi.Input<string>;
2247
2323
  /**
2248
- * The local port used by clients to connect to this resource.
2324
+ * 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.
2249
2325
  */
2250
2326
  portOverride?: pulumi.Input<number>;
2251
2327
  /**
@@ -2274,7 +2350,7 @@ export interface ResourceClickHouseHttp {
2274
2350
  }
2275
2351
  export interface ResourceClickHouseMySql {
2276
2352
  /**
2277
- * 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.
2353
+ * 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.
2278
2354
  */
2279
2355
  bindInterface?: pulumi.Input<string>;
2280
2356
  /**
@@ -2302,7 +2378,7 @@ export interface ResourceClickHouseMySql {
2302
2378
  */
2303
2379
  port?: pulumi.Input<number>;
2304
2380
  /**
2305
- * The local port used by clients to connect to this resource.
2381
+ * 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.
2306
2382
  */
2307
2383
  portOverride?: pulumi.Input<number>;
2308
2384
  /**
@@ -2318,7 +2394,7 @@ export interface ResourceClickHouseMySql {
2318
2394
  */
2319
2395
  secretStoreId?: pulumi.Input<string>;
2320
2396
  /**
2321
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2397
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2322
2398
  */
2323
2399
  subdomain?: pulumi.Input<string>;
2324
2400
  /**
@@ -2334,7 +2410,7 @@ export interface ResourceClickHouseMySql {
2334
2410
  }
2335
2411
  export interface ResourceClickHouseTcp {
2336
2412
  /**
2337
- * 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.
2413
+ * 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.
2338
2414
  */
2339
2415
  bindInterface?: pulumi.Input<string>;
2340
2416
  /**
@@ -2362,7 +2438,7 @@ export interface ResourceClickHouseTcp {
2362
2438
  */
2363
2439
  port: pulumi.Input<number>;
2364
2440
  /**
2365
- * The local port used by clients to connect to this resource.
2441
+ * 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.
2366
2442
  */
2367
2443
  portOverride?: pulumi.Input<number>;
2368
2444
  /**
@@ -2374,7 +2450,7 @@ export interface ResourceClickHouseTcp {
2374
2450
  */
2375
2451
  secretStoreId?: pulumi.Input<string>;
2376
2452
  /**
2377
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2453
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2378
2454
  */
2379
2455
  subdomain?: pulumi.Input<string>;
2380
2456
  /**
@@ -2394,7 +2470,7 @@ export interface ResourceClickHouseTcp {
2394
2470
  }
2395
2471
  export interface ResourceClustrix {
2396
2472
  /**
2397
- * 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.
2473
+ * 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.
2398
2474
  */
2399
2475
  bindInterface?: pulumi.Input<string>;
2400
2476
  /**
@@ -2422,7 +2498,7 @@ export interface ResourceClustrix {
2422
2498
  */
2423
2499
  port?: pulumi.Input<number>;
2424
2500
  /**
2425
- * The local port used by clients to connect to this resource.
2501
+ * 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.
2426
2502
  */
2427
2503
  portOverride?: pulumi.Input<number>;
2428
2504
  /**
@@ -2438,7 +2514,7 @@ export interface ResourceClustrix {
2438
2514
  */
2439
2515
  secretStoreId?: pulumi.Input<string>;
2440
2516
  /**
2441
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2517
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2442
2518
  */
2443
2519
  subdomain?: pulumi.Input<string>;
2444
2520
  /**
@@ -2458,7 +2534,7 @@ export interface ResourceClustrix {
2458
2534
  }
2459
2535
  export interface ResourceCockroach {
2460
2536
  /**
2461
- * 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.
2537
+ * 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.
2462
2538
  */
2463
2539
  bindInterface?: pulumi.Input<string>;
2464
2540
  /**
@@ -2490,7 +2566,7 @@ export interface ResourceCockroach {
2490
2566
  */
2491
2567
  port?: pulumi.Input<number>;
2492
2568
  /**
2493
- * The local port used by clients to connect to this resource.
2569
+ * 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.
2494
2570
  */
2495
2571
  portOverride?: pulumi.Input<number>;
2496
2572
  /**
@@ -2502,7 +2578,7 @@ export interface ResourceCockroach {
2502
2578
  */
2503
2579
  secretStoreId?: pulumi.Input<string>;
2504
2580
  /**
2505
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2581
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2506
2582
  */
2507
2583
  subdomain?: pulumi.Input<string>;
2508
2584
  /**
@@ -2518,7 +2594,7 @@ export interface ResourceCockroach {
2518
2594
  }
2519
2595
  export interface ResourceCouchbaseDatabase {
2520
2596
  /**
2521
- * 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.
2597
+ * 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.
2522
2598
  */
2523
2599
  bindInterface?: pulumi.Input<string>;
2524
2600
  /**
@@ -2546,7 +2622,7 @@ export interface ResourceCouchbaseDatabase {
2546
2622
  */
2547
2623
  port?: pulumi.Input<number>;
2548
2624
  /**
2549
- * The local port used by clients to connect to this resource.
2625
+ * 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.
2550
2626
  */
2551
2627
  portOverride?: pulumi.Input<number>;
2552
2628
  /**
@@ -2558,7 +2634,7 @@ export interface ResourceCouchbaseDatabase {
2558
2634
  */
2559
2635
  secretStoreId?: pulumi.Input<string>;
2560
2636
  /**
2561
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2637
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2562
2638
  */
2563
2639
  subdomain?: pulumi.Input<string>;
2564
2640
  /**
@@ -2578,7 +2654,7 @@ export interface ResourceCouchbaseDatabase {
2578
2654
  }
2579
2655
  export interface ResourceCouchbaseWebUi {
2580
2656
  /**
2581
- * 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.
2657
+ * 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.
2582
2658
  */
2583
2659
  bindInterface?: pulumi.Input<string>;
2584
2660
  /**
@@ -2594,7 +2670,7 @@ export interface ResourceCouchbaseWebUi {
2594
2670
  */
2595
2671
  password?: pulumi.Input<string>;
2596
2672
  /**
2597
- * The local port used by clients to connect to this resource.
2673
+ * 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.
2598
2674
  */
2599
2675
  portOverride?: pulumi.Input<number>;
2600
2676
  /**
@@ -2606,7 +2682,7 @@ export interface ResourceCouchbaseWebUi {
2606
2682
  */
2607
2683
  secretStoreId?: pulumi.Input<string>;
2608
2684
  /**
2609
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2685
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2610
2686
  */
2611
2687
  subdomain: pulumi.Input<string>;
2612
2688
  /**
@@ -2627,7 +2703,7 @@ export interface ResourceCouchbaseWebUi {
2627
2703
  }
2628
2704
  export interface ResourceDb2I {
2629
2705
  /**
2630
- * 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.
2706
+ * 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.
2631
2707
  */
2632
2708
  bindInterface?: pulumi.Input<string>;
2633
2709
  /**
@@ -2651,7 +2727,7 @@ export interface ResourceDb2I {
2651
2727
  */
2652
2728
  port: pulumi.Input<number>;
2653
2729
  /**
2654
- * The local port used by clients to connect to this resource.
2730
+ * 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.
2655
2731
  */
2656
2732
  portOverride?: pulumi.Input<number>;
2657
2733
  /**
@@ -2663,7 +2739,7 @@ export interface ResourceDb2I {
2663
2739
  */
2664
2740
  secretStoreId?: pulumi.Input<string>;
2665
2741
  /**
2666
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2742
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2667
2743
  */
2668
2744
  subdomain?: pulumi.Input<string>;
2669
2745
  /**
@@ -2683,7 +2759,7 @@ export interface ResourceDb2I {
2683
2759
  }
2684
2760
  export interface ResourceDb2Luw {
2685
2761
  /**
2686
- * 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.
2762
+ * 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.
2687
2763
  */
2688
2764
  bindInterface?: pulumi.Input<string>;
2689
2765
  /**
@@ -2711,7 +2787,7 @@ export interface ResourceDb2Luw {
2711
2787
  */
2712
2788
  port?: pulumi.Input<number>;
2713
2789
  /**
2714
- * The local port used by clients to connect to this resource.
2790
+ * 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.
2715
2791
  */
2716
2792
  portOverride?: pulumi.Input<number>;
2717
2793
  /**
@@ -2723,7 +2799,7 @@ export interface ResourceDb2Luw {
2723
2799
  */
2724
2800
  secretStoreId?: pulumi.Input<string>;
2725
2801
  /**
2726
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2802
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2727
2803
  */
2728
2804
  subdomain?: pulumi.Input<string>;
2729
2805
  /**
@@ -2747,7 +2823,7 @@ export interface ResourceDocumentDbHost {
2747
2823
  */
2748
2824
  authDatabase: pulumi.Input<string>;
2749
2825
  /**
2750
- * 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.
2826
+ * 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.
2751
2827
  */
2752
2828
  bindInterface?: pulumi.Input<string>;
2753
2829
  /**
@@ -2771,7 +2847,7 @@ export interface ResourceDocumentDbHost {
2771
2847
  */
2772
2848
  port?: pulumi.Input<number>;
2773
2849
  /**
2774
- * The local port used by clients to connect to this resource.
2850
+ * 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.
2775
2851
  */
2776
2852
  portOverride?: pulumi.Input<number>;
2777
2853
  /**
@@ -2783,7 +2859,7 @@ export interface ResourceDocumentDbHost {
2783
2859
  */
2784
2860
  secretStoreId?: pulumi.Input<string>;
2785
2861
  /**
2786
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2862
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2787
2863
  */
2788
2864
  subdomain?: pulumi.Input<string>;
2789
2865
  /**
@@ -2799,7 +2875,7 @@ export interface ResourceDocumentDbHost {
2799
2875
  }
2800
2876
  export interface ResourceDocumentDbHostIam {
2801
2877
  /**
2802
- * 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.
2878
+ * 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.
2803
2879
  */
2804
2880
  bindInterface?: pulumi.Input<string>;
2805
2881
  /**
@@ -2819,7 +2895,7 @@ export interface ResourceDocumentDbHostIam {
2819
2895
  */
2820
2896
  port?: pulumi.Input<number>;
2821
2897
  /**
2822
- * The local port used by clients to connect to this resource.
2898
+ * 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.
2823
2899
  */
2824
2900
  portOverride?: pulumi.Input<number>;
2825
2901
  /**
@@ -2835,7 +2911,7 @@ export interface ResourceDocumentDbHostIam {
2835
2911
  */
2836
2912
  secretStoreId?: pulumi.Input<string>;
2837
2913
  /**
2838
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2914
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2839
2915
  */
2840
2916
  subdomain?: pulumi.Input<string>;
2841
2917
  /**
@@ -2851,7 +2927,7 @@ export interface ResourceDocumentDbReplicaSet {
2851
2927
  */
2852
2928
  authDatabase: pulumi.Input<string>;
2853
2929
  /**
2854
- * 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.
2930
+ * 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.
2855
2931
  */
2856
2932
  bindInterface?: pulumi.Input<string>;
2857
2933
  /**
@@ -2875,7 +2951,7 @@ export interface ResourceDocumentDbReplicaSet {
2875
2951
  */
2876
2952
  password?: pulumi.Input<string>;
2877
2953
  /**
2878
- * The local port used by clients to connect to this resource.
2954
+ * 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.
2879
2955
  */
2880
2956
  portOverride?: pulumi.Input<number>;
2881
2957
  /**
@@ -2891,7 +2967,7 @@ export interface ResourceDocumentDbReplicaSet {
2891
2967
  */
2892
2968
  secretStoreId?: pulumi.Input<string>;
2893
2969
  /**
2894
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2970
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2895
2971
  */
2896
2972
  subdomain?: pulumi.Input<string>;
2897
2973
  /**
@@ -2907,7 +2983,7 @@ export interface ResourceDocumentDbReplicaSet {
2907
2983
  }
2908
2984
  export interface ResourceDocumentDbReplicaSetIam {
2909
2985
  /**
2910
- * 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.
2986
+ * 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.
2911
2987
  */
2912
2988
  bindInterface?: pulumi.Input<string>;
2913
2989
  /**
@@ -2927,7 +3003,7 @@ export interface ResourceDocumentDbReplicaSetIam {
2927
3003
  */
2928
3004
  name: pulumi.Input<string>;
2929
3005
  /**
2930
- * The local port used by clients to connect to this resource.
3006
+ * 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.
2931
3007
  */
2932
3008
  portOverride?: pulumi.Input<number>;
2933
3009
  /**
@@ -2943,7 +3019,7 @@ export interface ResourceDocumentDbReplicaSetIam {
2943
3019
  */
2944
3020
  secretStoreId?: pulumi.Input<string>;
2945
3021
  /**
2946
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3022
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2947
3023
  */
2948
3024
  subdomain?: pulumi.Input<string>;
2949
3025
  /**
@@ -2955,7 +3031,7 @@ export interface ResourceDocumentDbReplicaSetIam {
2955
3031
  }
2956
3032
  export interface ResourceDruid {
2957
3033
  /**
2958
- * 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.
3034
+ * 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.
2959
3035
  */
2960
3036
  bindInterface?: pulumi.Input<string>;
2961
3037
  /**
@@ -2979,7 +3055,7 @@ export interface ResourceDruid {
2979
3055
  */
2980
3056
  port?: pulumi.Input<number>;
2981
3057
  /**
2982
- * The local port used by clients to connect to this resource.
3058
+ * 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.
2983
3059
  */
2984
3060
  portOverride?: pulumi.Input<number>;
2985
3061
  /**
@@ -2991,7 +3067,7 @@ export interface ResourceDruid {
2991
3067
  */
2992
3068
  secretStoreId?: pulumi.Input<string>;
2993
3069
  /**
2994
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3070
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
2995
3071
  */
2996
3072
  subdomain?: pulumi.Input<string>;
2997
3073
  /**
@@ -3011,7 +3087,7 @@ export interface ResourceDynamoDb {
3011
3087
  */
3012
3088
  accessKey?: pulumi.Input<string>;
3013
3089
  /**
3014
- * 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.
3090
+ * 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.
3015
3091
  */
3016
3092
  bindInterface?: pulumi.Input<string>;
3017
3093
  /**
@@ -3027,7 +3103,7 @@ export interface ResourceDynamoDb {
3027
3103
  */
3028
3104
  name: pulumi.Input<string>;
3029
3105
  /**
3030
- * The local port used by clients to connect to this resource.
3106
+ * 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.
3031
3107
  */
3032
3108
  portOverride?: pulumi.Input<number>;
3033
3109
  /**
@@ -3055,7 +3131,7 @@ export interface ResourceDynamoDb {
3055
3131
  */
3056
3132
  secretStoreId?: pulumi.Input<string>;
3057
3133
  /**
3058
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3134
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3059
3135
  */
3060
3136
  subdomain?: pulumi.Input<string>;
3061
3137
  /**
@@ -3067,7 +3143,7 @@ export interface ResourceDynamoDb {
3067
3143
  }
3068
3144
  export interface ResourceDynamoDbiam {
3069
3145
  /**
3070
- * 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.
3146
+ * 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.
3071
3147
  */
3072
3148
  bindInterface?: pulumi.Input<string>;
3073
3149
  /**
@@ -3083,7 +3159,7 @@ export interface ResourceDynamoDbiam {
3083
3159
  */
3084
3160
  name: pulumi.Input<string>;
3085
3161
  /**
3086
- * The local port used by clients to connect to this resource.
3162
+ * 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.
3087
3163
  */
3088
3164
  portOverride?: pulumi.Input<number>;
3089
3165
  /**
@@ -3107,7 +3183,7 @@ export interface ResourceDynamoDbiam {
3107
3183
  */
3108
3184
  secretStoreId?: pulumi.Input<string>;
3109
3185
  /**
3110
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3186
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3111
3187
  */
3112
3188
  subdomain?: pulumi.Input<string>;
3113
3189
  /**
@@ -3119,7 +3195,7 @@ export interface ResourceDynamoDbiam {
3119
3195
  }
3120
3196
  export interface ResourceElastic {
3121
3197
  /**
3122
- * 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.
3198
+ * 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.
3123
3199
  */
3124
3200
  bindInterface?: pulumi.Input<string>;
3125
3201
  /**
@@ -3143,7 +3219,7 @@ export interface ResourceElastic {
3143
3219
  */
3144
3220
  port?: pulumi.Input<number>;
3145
3221
  /**
3146
- * The local port used by clients to connect to this resource.
3222
+ * 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.
3147
3223
  */
3148
3224
  portOverride?: pulumi.Input<number>;
3149
3225
  /**
@@ -3155,7 +3231,7 @@ export interface ResourceElastic {
3155
3231
  */
3156
3232
  secretStoreId?: pulumi.Input<string>;
3157
3233
  /**
3158
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3234
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3159
3235
  */
3160
3236
  subdomain?: pulumi.Input<string>;
3161
3237
  /**
@@ -3175,7 +3251,7 @@ export interface ResourceElastic {
3175
3251
  }
3176
3252
  export interface ResourceElasticacheRedis {
3177
3253
  /**
3178
- * 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.
3254
+ * 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.
3179
3255
  */
3180
3256
  bindInterface?: pulumi.Input<string>;
3181
3257
  /**
@@ -3199,7 +3275,7 @@ export interface ResourceElasticacheRedis {
3199
3275
  */
3200
3276
  port?: pulumi.Input<number>;
3201
3277
  /**
3202
- * The local port used by clients to connect to this resource.
3278
+ * 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.
3203
3279
  */
3204
3280
  portOverride?: pulumi.Input<number>;
3205
3281
  /**
@@ -3211,7 +3287,7 @@ export interface ResourceElasticacheRedis {
3211
3287
  */
3212
3288
  secretStoreId?: pulumi.Input<string>;
3213
3289
  /**
3214
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3290
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3215
3291
  */
3216
3292
  subdomain?: pulumi.Input<string>;
3217
3293
  /**
@@ -3229,9 +3305,74 @@ export interface ResourceElasticacheRedis {
3229
3305
  */
3230
3306
  username?: pulumi.Input<string>;
3231
3307
  }
3308
+ export interface ResourceEntraId {
3309
+ /**
3310
+ * 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.
3311
+ */
3312
+ bindInterface?: pulumi.Input<string>;
3313
+ /**
3314
+ * If true, configures discovery of a cluster to be run from a node.
3315
+ */
3316
+ discoveryEnabled?: pulumi.Input<boolean>;
3317
+ /**
3318
+ * A filter applied to the routing logic to pin datasource to nodes.
3319
+ */
3320
+ egressFilter?: pulumi.Input<string>;
3321
+ /**
3322
+ * comma separated list of group names to filter by. Supports wildcards (*)
3323
+ */
3324
+ groupNames?: pulumi.Input<string>;
3325
+ /**
3326
+ * The ID of the identity set to use for identity connections.
3327
+ */
3328
+ identitySetId: pulumi.Input<string>;
3329
+ /**
3330
+ * The management group ID to authenticate scope Privileges to.
3331
+ */
3332
+ managementGroupId?: pulumi.Input<string>;
3333
+ /**
3334
+ * Unique human-readable name of the Resource.
3335
+ */
3336
+ name: pulumi.Input<string>;
3337
+ /**
3338
+ * The privilege levels specify which Groups are managed externally
3339
+ */
3340
+ privilegeLevels?: pulumi.Input<string>;
3341
+ /**
3342
+ * ID of the proxy cluster for this resource, if any.
3343
+ */
3344
+ proxyClusterId?: pulumi.Input<string>;
3345
+ /**
3346
+ * filters discovered groups to the specified Resource Group
3347
+ */
3348
+ resourceGroupId?: pulumi.Input<string>;
3349
+ /**
3350
+ * ID of the secret store containing credentials for this resource, if any.
3351
+ */
3352
+ secretStoreId?: pulumi.Input<string>;
3353
+ /**
3354
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3355
+ */
3356
+ subdomain?: pulumi.Input<string>;
3357
+ /**
3358
+ * The subscription ID to authenticate scope Privileges to.
3359
+ */
3360
+ subscriptionId?: pulumi.Input<string>;
3361
+ /**
3362
+ * Tags is a map of key, value pairs.
3363
+ */
3364
+ tags?: pulumi.Input<{
3365
+ [key: string]: pulumi.Input<string>;
3366
+ }>;
3367
+ /**
3368
+ * The Azure AD directory (tenant) ID with which to authenticate.
3369
+ * * sql_server_kerberos_ad:
3370
+ */
3371
+ tenantId: pulumi.Input<string>;
3372
+ }
3232
3373
  export interface ResourceGcp {
3233
3374
  /**
3234
- * 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.
3375
+ * 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.
3235
3376
  */
3236
3377
  bindInterface?: pulumi.Input<string>;
3237
3378
  /**
@@ -3247,7 +3388,7 @@ export interface ResourceGcp {
3247
3388
  */
3248
3389
  name: pulumi.Input<string>;
3249
3390
  /**
3250
- * The local port used by clients to connect to this resource.
3391
+ * 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.
3251
3392
  */
3252
3393
  portOverride?: pulumi.Input<number>;
3253
3394
  /**
@@ -3263,7 +3404,7 @@ export interface ResourceGcp {
3263
3404
  */
3264
3405
  secretStoreId?: pulumi.Input<string>;
3265
3406
  /**
3266
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3407
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3267
3408
  */
3268
3409
  subdomain?: pulumi.Input<string>;
3269
3410
  /**
@@ -3275,7 +3416,7 @@ export interface ResourceGcp {
3275
3416
  }
3276
3417
  export interface ResourceGcpConsole {
3277
3418
  /**
3278
- * 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.
3419
+ * 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.
3279
3420
  */
3280
3421
  bindInterface?: pulumi.Input<string>;
3281
3422
  /**
@@ -3295,7 +3436,7 @@ export interface ResourceGcpConsole {
3295
3436
  */
3296
3437
  name: pulumi.Input<string>;
3297
3438
  /**
3298
- * The local port used by clients to connect to this resource.
3439
+ * 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.
3299
3440
  */
3300
3441
  portOverride?: pulumi.Input<number>;
3301
3442
  /**
@@ -3311,7 +3452,7 @@ export interface ResourceGcpConsole {
3311
3452
  */
3312
3453
  sessionExpiry?: pulumi.Input<number>;
3313
3454
  /**
3314
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3455
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3315
3456
  */
3316
3457
  subdomain: pulumi.Input<string>;
3317
3458
  /**
@@ -3332,7 +3473,7 @@ export interface ResourceGcpConsole {
3332
3473
  }
3333
3474
  export interface ResourceGcpwif {
3334
3475
  /**
3335
- * 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.
3476
+ * 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.
3336
3477
  */
3337
3478
  bindInterface?: pulumi.Input<string>;
3338
3479
  /**
@@ -3352,7 +3493,7 @@ export interface ResourceGcpwif {
3352
3493
  */
3353
3494
  name: pulumi.Input<string>;
3354
3495
  /**
3355
- * The local port used by clients to connect to this resource.
3496
+ * 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.
3356
3497
  */
3357
3498
  portOverride?: pulumi.Input<number>;
3358
3499
  /**
@@ -3376,7 +3517,7 @@ export interface ResourceGcpwif {
3376
3517
  */
3377
3518
  sessionExpiry?: pulumi.Input<number>;
3378
3519
  /**
3379
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3520
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3380
3521
  */
3381
3522
  subdomain?: pulumi.Input<string>;
3382
3523
  /**
@@ -3401,7 +3542,7 @@ export interface ResourceGoogleGke {
3401
3542
  */
3402
3543
  allowResourceRoleBypass?: pulumi.Input<boolean>;
3403
3544
  /**
3404
- * 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.
3545
+ * 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.
3405
3546
  */
3406
3547
  bindInterface?: pulumi.Input<string>;
3407
3548
  /**
@@ -3441,7 +3582,7 @@ export interface ResourceGoogleGke {
3441
3582
  */
3442
3583
  name: pulumi.Input<string>;
3443
3584
  /**
3444
- * The local port used by clients to connect to this resource.
3585
+ * 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.
3445
3586
  */
3446
3587
  portOverride?: pulumi.Input<number>;
3447
3588
  /**
@@ -3457,7 +3598,7 @@ export interface ResourceGoogleGke {
3457
3598
  */
3458
3599
  serviceAccountKey?: pulumi.Input<string>;
3459
3600
  /**
3460
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3601
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3461
3602
  */
3462
3603
  subdomain?: pulumi.Input<string>;
3463
3604
  /**
@@ -3469,7 +3610,7 @@ export interface ResourceGoogleGke {
3469
3610
  }
3470
3611
  export interface ResourceGoogleGkeUserImpersonation {
3471
3612
  /**
3472
- * 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.
3613
+ * 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.
3473
3614
  */
3474
3615
  bindInterface?: pulumi.Input<string>;
3475
3616
  /**
@@ -3493,7 +3634,7 @@ export interface ResourceGoogleGkeUserImpersonation {
3493
3634
  */
3494
3635
  name: pulumi.Input<string>;
3495
3636
  /**
3496
- * The local port used by clients to connect to this resource.
3637
+ * 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.
3497
3638
  */
3498
3639
  portOverride?: pulumi.Input<number>;
3499
3640
  /**
@@ -3509,7 +3650,7 @@ export interface ResourceGoogleGkeUserImpersonation {
3509
3650
  */
3510
3651
  serviceAccountKey?: pulumi.Input<string>;
3511
3652
  /**
3512
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3653
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3513
3654
  */
3514
3655
  subdomain?: pulumi.Input<string>;
3515
3656
  /**
@@ -3521,7 +3662,7 @@ export interface ResourceGoogleGkeUserImpersonation {
3521
3662
  }
3522
3663
  export interface ResourceGreenplum {
3523
3664
  /**
3524
- * 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.
3665
+ * 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.
3525
3666
  */
3526
3667
  bindInterface?: pulumi.Input<string>;
3527
3668
  /**
@@ -3553,7 +3694,7 @@ export interface ResourceGreenplum {
3553
3694
  */
3554
3695
  port?: pulumi.Input<number>;
3555
3696
  /**
3556
- * The local port used by clients to connect to this resource.
3697
+ * 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.
3557
3698
  */
3558
3699
  portOverride?: pulumi.Input<number>;
3559
3700
  /**
@@ -3565,7 +3706,7 @@ export interface ResourceGreenplum {
3565
3706
  */
3566
3707
  secretStoreId?: pulumi.Input<string>;
3567
3708
  /**
3568
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3709
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3569
3710
  */
3570
3711
  subdomain?: pulumi.Input<string>;
3571
3712
  /**
@@ -3585,7 +3726,7 @@ export interface ResourceHttpAuth {
3585
3726
  */
3586
3727
  authHeader?: pulumi.Input<string>;
3587
3728
  /**
3588
- * 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.
3729
+ * 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.
3589
3730
  */
3590
3731
  bindInterface?: pulumi.Input<string>;
3591
3732
  /**
@@ -3613,7 +3754,7 @@ export interface ResourceHttpAuth {
3613
3754
  */
3614
3755
  name: pulumi.Input<string>;
3615
3756
  /**
3616
- * The local port used by clients to connect to this resource.
3757
+ * 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.
3617
3758
  */
3618
3759
  portOverride?: pulumi.Input<number>;
3619
3760
  /**
@@ -3625,7 +3766,7 @@ export interface ResourceHttpAuth {
3625
3766
  */
3626
3767
  secretStoreId?: pulumi.Input<string>;
3627
3768
  /**
3628
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3769
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3629
3770
  */
3630
3771
  subdomain: pulumi.Input<string>;
3631
3772
  /**
@@ -3642,7 +3783,7 @@ export interface ResourceHttpAuth {
3642
3783
  }
3643
3784
  export interface ResourceHttpBasicAuth {
3644
3785
  /**
3645
- * 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.
3786
+ * 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.
3646
3787
  */
3647
3788
  bindInterface?: pulumi.Input<string>;
3648
3789
  /**
@@ -3674,7 +3815,7 @@ export interface ResourceHttpBasicAuth {
3674
3815
  */
3675
3816
  password?: pulumi.Input<string>;
3676
3817
  /**
3677
- * The local port used by clients to connect to this resource.
3818
+ * 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.
3678
3819
  */
3679
3820
  portOverride?: pulumi.Input<number>;
3680
3821
  /**
@@ -3686,7 +3827,7 @@ export interface ResourceHttpBasicAuth {
3686
3827
  */
3687
3828
  secretStoreId?: pulumi.Input<string>;
3688
3829
  /**
3689
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3830
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3690
3831
  */
3691
3832
  subdomain: pulumi.Input<string>;
3692
3833
  /**
@@ -3707,7 +3848,7 @@ export interface ResourceHttpBasicAuth {
3707
3848
  }
3708
3849
  export interface ResourceHttpNoAuth {
3709
3850
  /**
3710
- * 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.
3851
+ * 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.
3711
3852
  */
3712
3853
  bindInterface?: pulumi.Input<string>;
3713
3854
  /**
@@ -3735,7 +3876,7 @@ export interface ResourceHttpNoAuth {
3735
3876
  */
3736
3877
  name: pulumi.Input<string>;
3737
3878
  /**
3738
- * The local port used by clients to connect to this resource.
3879
+ * 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.
3739
3880
  */
3740
3881
  portOverride?: pulumi.Input<number>;
3741
3882
  /**
@@ -3747,7 +3888,7 @@ export interface ResourceHttpNoAuth {
3747
3888
  */
3748
3889
  secretStoreId?: pulumi.Input<string>;
3749
3890
  /**
3750
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3891
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3751
3892
  */
3752
3893
  subdomain: pulumi.Input<string>;
3753
3894
  /**
@@ -3768,7 +3909,7 @@ export interface ResourceKubernetes {
3768
3909
  */
3769
3910
  allowResourceRoleBypass?: pulumi.Input<boolean>;
3770
3911
  /**
3771
- * 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.
3912
+ * 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.
3772
3913
  */
3773
3914
  bindInterface?: pulumi.Input<string>;
3774
3915
  /**
@@ -3820,7 +3961,7 @@ export interface ResourceKubernetes {
3820
3961
  */
3821
3962
  port: pulumi.Input<number>;
3822
3963
  /**
3823
- * The local port used by clients to connect to this resource.
3964
+ * 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.
3824
3965
  */
3825
3966
  portOverride?: pulumi.Input<number>;
3826
3967
  /**
@@ -3832,7 +3973,7 @@ export interface ResourceKubernetes {
3832
3973
  */
3833
3974
  secretStoreId?: pulumi.Input<string>;
3834
3975
  /**
3835
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3976
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3836
3977
  */
3837
3978
  subdomain?: pulumi.Input<string>;
3838
3979
  /**
@@ -3844,7 +3985,7 @@ export interface ResourceKubernetes {
3844
3985
  }
3845
3986
  export interface ResourceKubernetesBasicAuth {
3846
3987
  /**
3847
- * 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.
3988
+ * 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.
3848
3989
  */
3849
3990
  bindInterface?: pulumi.Input<string>;
3850
3991
  /**
@@ -3872,7 +4013,7 @@ export interface ResourceKubernetesBasicAuth {
3872
4013
  */
3873
4014
  port: pulumi.Input<number>;
3874
4015
  /**
3875
- * The local port used by clients to connect to this resource.
4016
+ * 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.
3876
4017
  */
3877
4018
  portOverride?: pulumi.Input<number>;
3878
4019
  /**
@@ -3884,7 +4025,7 @@ export interface ResourceKubernetesBasicAuth {
3884
4025
  */
3885
4026
  secretStoreId?: pulumi.Input<string>;
3886
4027
  /**
3887
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4028
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3888
4029
  */
3889
4030
  subdomain?: pulumi.Input<string>;
3890
4031
  /**
@@ -3904,7 +4045,7 @@ export interface ResourceKubernetesPodIdentity {
3904
4045
  */
3905
4046
  allowResourceRoleBypass?: pulumi.Input<boolean>;
3906
4047
  /**
3907
- * 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.
4048
+ * 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.
3908
4049
  */
3909
4050
  bindInterface?: pulumi.Input<string>;
3910
4051
  /**
@@ -3940,7 +4081,7 @@ export interface ResourceKubernetesPodIdentity {
3940
4081
  */
3941
4082
  name: pulumi.Input<string>;
3942
4083
  /**
3943
- * The local port used by clients to connect to this resource.
4084
+ * 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.
3944
4085
  */
3945
4086
  portOverride?: pulumi.Input<number>;
3946
4087
  /**
@@ -3952,7 +4093,7 @@ export interface ResourceKubernetesPodIdentity {
3952
4093
  */
3953
4094
  secretStoreId?: pulumi.Input<string>;
3954
4095
  /**
3955
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4096
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
3956
4097
  */
3957
4098
  subdomain?: pulumi.Input<string>;
3958
4099
  /**
@@ -3968,7 +4109,7 @@ export interface ResourceKubernetesServiceAccount {
3968
4109
  */
3969
4110
  allowResourceRoleBypass?: pulumi.Input<boolean>;
3970
4111
  /**
3971
- * 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.
4112
+ * 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.
3972
4113
  */
3973
4114
  bindInterface?: pulumi.Input<string>;
3974
4115
  /**
@@ -4008,7 +4149,7 @@ export interface ResourceKubernetesServiceAccount {
4008
4149
  */
4009
4150
  port: pulumi.Input<number>;
4010
4151
  /**
4011
- * The local port used by clients to connect to this resource.
4152
+ * 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.
4012
4153
  */
4013
4154
  portOverride?: pulumi.Input<number>;
4014
4155
  /**
@@ -4020,7 +4161,7 @@ export interface ResourceKubernetesServiceAccount {
4020
4161
  */
4021
4162
  secretStoreId?: pulumi.Input<string>;
4022
4163
  /**
4023
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4164
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4024
4165
  */
4025
4166
  subdomain?: pulumi.Input<string>;
4026
4167
  /**
@@ -4037,7 +4178,7 @@ export interface ResourceKubernetesServiceAccount {
4037
4178
  }
4038
4179
  export interface ResourceKubernetesServiceAccountUserImpersonation {
4039
4180
  /**
4040
- * 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.
4181
+ * 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.
4041
4182
  */
4042
4183
  bindInterface?: pulumi.Input<string>;
4043
4184
  /**
@@ -4061,7 +4202,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
4061
4202
  */
4062
4203
  port: pulumi.Input<number>;
4063
4204
  /**
4064
- * The local port used by clients to connect to this resource.
4205
+ * 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.
4065
4206
  */
4066
4207
  portOverride?: pulumi.Input<number>;
4067
4208
  /**
@@ -4073,7 +4214,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
4073
4214
  */
4074
4215
  secretStoreId?: pulumi.Input<string>;
4075
4216
  /**
4076
- * 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.
4077
4218
  */
4078
4219
  subdomain?: pulumi.Input<string>;
4079
4220
  /**
@@ -4090,7 +4231,7 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
4090
4231
  }
4091
4232
  export interface ResourceKubernetesUserImpersonation {
4092
4233
  /**
4093
- * 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.
4234
+ * 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.
4094
4235
  */
4095
4236
  bindInterface?: pulumi.Input<string>;
4096
4237
  /**
@@ -4126,7 +4267,7 @@ export interface ResourceKubernetesUserImpersonation {
4126
4267
  */
4127
4268
  port: pulumi.Input<number>;
4128
4269
  /**
4129
- * The local port used by clients to connect to this resource.
4270
+ * 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.
4130
4271
  */
4131
4272
  portOverride?: pulumi.Input<number>;
4132
4273
  /**
@@ -4138,7 +4279,7 @@ export interface ResourceKubernetesUserImpersonation {
4138
4279
  */
4139
4280
  secretStoreId?: pulumi.Input<string>;
4140
4281
  /**
4141
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4282
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4142
4283
  */
4143
4284
  subdomain?: pulumi.Input<string>;
4144
4285
  /**
@@ -4150,7 +4291,7 @@ export interface ResourceKubernetesUserImpersonation {
4150
4291
  }
4151
4292
  export interface ResourceMaria {
4152
4293
  /**
4153
- * 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.
4294
+ * 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.
4154
4295
  */
4155
4296
  bindInterface?: pulumi.Input<string>;
4156
4297
  /**
@@ -4178,7 +4319,7 @@ export interface ResourceMaria {
4178
4319
  */
4179
4320
  port?: pulumi.Input<number>;
4180
4321
  /**
4181
- * The local port used by clients to connect to this resource.
4322
+ * 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.
4182
4323
  */
4183
4324
  portOverride?: pulumi.Input<number>;
4184
4325
  /**
@@ -4194,7 +4335,7 @@ export interface ResourceMaria {
4194
4335
  */
4195
4336
  secretStoreId?: pulumi.Input<string>;
4196
4337
  /**
4197
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4338
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4198
4339
  */
4199
4340
  subdomain?: pulumi.Input<string>;
4200
4341
  /**
@@ -4212,9 +4353,57 @@ export interface ResourceMaria {
4212
4353
  */
4213
4354
  username?: pulumi.Input<string>;
4214
4355
  }
4356
+ export interface ResourceMcp {
4357
+ /**
4358
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
4359
+ */
4360
+ bindInterface?: pulumi.Input<string>;
4361
+ /**
4362
+ * A filter applied to the routing logic to pin datasource to nodes.
4363
+ */
4364
+ egressFilter?: pulumi.Input<string>;
4365
+ /**
4366
+ * The host to dial to initiate a connection from the egress node to this resource.
4367
+ */
4368
+ hostname: pulumi.Input<string>;
4369
+ /**
4370
+ * Unique human-readable name of the Resource.
4371
+ */
4372
+ name: pulumi.Input<string>;
4373
+ /**
4374
+ * The password to authenticate with.
4375
+ */
4376
+ password?: pulumi.Input<string>;
4377
+ /**
4378
+ * The port to dial to initiate a connection from the egress node to this resource.
4379
+ */
4380
+ port?: pulumi.Input<number>;
4381
+ /**
4382
+ * The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
4383
+ */
4384
+ portOverride?: pulumi.Input<number>;
4385
+ /**
4386
+ * ID of the proxy cluster for this resource, if any.
4387
+ */
4388
+ proxyClusterId?: pulumi.Input<string>;
4389
+ /**
4390
+ * ID of the secret store containing credentials for this resource, if any.
4391
+ */
4392
+ secretStoreId?: pulumi.Input<string>;
4393
+ /**
4394
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4395
+ */
4396
+ subdomain?: pulumi.Input<string>;
4397
+ /**
4398
+ * Tags is a map of key, value pairs.
4399
+ */
4400
+ tags?: pulumi.Input<{
4401
+ [key: string]: pulumi.Input<string>;
4402
+ }>;
4403
+ }
4215
4404
  export interface ResourceMemcached {
4216
4405
  /**
4217
- * 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.
4406
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
4218
4407
  */
4219
4408
  bindInterface?: pulumi.Input<string>;
4220
4409
  /**
@@ -4234,7 +4423,7 @@ export interface ResourceMemcached {
4234
4423
  */
4235
4424
  port?: pulumi.Input<number>;
4236
4425
  /**
4237
- * The local port used by clients to connect to this resource.
4426
+ * 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.
4238
4427
  */
4239
4428
  portOverride?: pulumi.Input<number>;
4240
4429
  /**
@@ -4246,7 +4435,7 @@ export interface ResourceMemcached {
4246
4435
  */
4247
4436
  secretStoreId?: pulumi.Input<string>;
4248
4437
  /**
4249
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4438
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4250
4439
  */
4251
4440
  subdomain?: pulumi.Input<string>;
4252
4441
  /**
@@ -4258,7 +4447,7 @@ export interface ResourceMemcached {
4258
4447
  }
4259
4448
  export interface ResourceMemsql {
4260
4449
  /**
4261
- * 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.
4450
+ * 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.
4262
4451
  */
4263
4452
  bindInterface?: pulumi.Input<string>;
4264
4453
  /**
@@ -4286,7 +4475,7 @@ export interface ResourceMemsql {
4286
4475
  */
4287
4476
  port?: pulumi.Input<number>;
4288
4477
  /**
4289
- * The local port used by clients to connect to this resource.
4478
+ * 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.
4290
4479
  */
4291
4480
  portOverride?: pulumi.Input<number>;
4292
4481
  /**
@@ -4302,7 +4491,7 @@ export interface ResourceMemsql {
4302
4491
  */
4303
4492
  secretStoreId?: pulumi.Input<string>;
4304
4493
  /**
4305
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4494
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4306
4495
  */
4307
4496
  subdomain?: pulumi.Input<string>;
4308
4497
  /**
@@ -4326,7 +4515,7 @@ export interface ResourceMongoHost {
4326
4515
  */
4327
4516
  authDatabase: pulumi.Input<string>;
4328
4517
  /**
4329
- * 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.
4518
+ * 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.
4330
4519
  */
4331
4520
  bindInterface?: pulumi.Input<string>;
4332
4521
  /**
@@ -4350,7 +4539,7 @@ export interface ResourceMongoHost {
4350
4539
  */
4351
4540
  port?: pulumi.Input<number>;
4352
4541
  /**
4353
- * The local port used by clients to connect to this resource.
4542
+ * 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.
4354
4543
  */
4355
4544
  portOverride?: pulumi.Input<number>;
4356
4545
  /**
@@ -4362,7 +4551,7 @@ export interface ResourceMongoHost {
4362
4551
  */
4363
4552
  secretStoreId?: pulumi.Input<string>;
4364
4553
  /**
4365
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4554
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4366
4555
  */
4367
4556
  subdomain?: pulumi.Input<string>;
4368
4557
  /**
@@ -4386,7 +4575,7 @@ export interface ResourceMongoLegacyHost {
4386
4575
  */
4387
4576
  authDatabase: pulumi.Input<string>;
4388
4577
  /**
4389
- * 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.
4578
+ * 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.
4390
4579
  */
4391
4580
  bindInterface?: pulumi.Input<string>;
4392
4581
  /**
@@ -4410,7 +4599,7 @@ export interface ResourceMongoLegacyHost {
4410
4599
  */
4411
4600
  port?: pulumi.Input<number>;
4412
4601
  /**
4413
- * The local port used by clients to connect to this resource.
4602
+ * 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.
4414
4603
  */
4415
4604
  portOverride?: pulumi.Input<number>;
4416
4605
  /**
@@ -4422,7 +4611,7 @@ export interface ResourceMongoLegacyHost {
4422
4611
  */
4423
4612
  secretStoreId?: pulumi.Input<string>;
4424
4613
  /**
4425
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4614
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4426
4615
  */
4427
4616
  subdomain?: pulumi.Input<string>;
4428
4617
  /**
@@ -4446,7 +4635,7 @@ export interface ResourceMongoLegacyReplicaset {
4446
4635
  */
4447
4636
  authDatabase: pulumi.Input<string>;
4448
4637
  /**
4449
- * 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.
4638
+ * 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.
4450
4639
  */
4451
4640
  bindInterface?: pulumi.Input<string>;
4452
4641
  /**
@@ -4474,7 +4663,7 @@ export interface ResourceMongoLegacyReplicaset {
4474
4663
  */
4475
4664
  port?: pulumi.Input<number>;
4476
4665
  /**
4477
- * The local port used by clients to connect to this resource.
4666
+ * 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.
4478
4667
  */
4479
4668
  portOverride?: pulumi.Input<number>;
4480
4669
  /**
@@ -4490,7 +4679,7 @@ export interface ResourceMongoLegacyReplicaset {
4490
4679
  */
4491
4680
  secretStoreId?: pulumi.Input<string>;
4492
4681
  /**
4493
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4682
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4494
4683
  */
4495
4684
  subdomain?: pulumi.Input<string>;
4496
4685
  /**
@@ -4514,7 +4703,7 @@ export interface ResourceMongoReplicaSet {
4514
4703
  */
4515
4704
  authDatabase: pulumi.Input<string>;
4516
4705
  /**
4517
- * 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.
4706
+ * 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.
4518
4707
  */
4519
4708
  bindInterface?: pulumi.Input<string>;
4520
4709
  /**
@@ -4542,7 +4731,7 @@ export interface ResourceMongoReplicaSet {
4542
4731
  */
4543
4732
  port?: pulumi.Input<number>;
4544
4733
  /**
4545
- * The local port used by clients to connect to this resource.
4734
+ * 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.
4546
4735
  */
4547
4736
  portOverride?: pulumi.Input<number>;
4548
4737
  /**
@@ -4558,7 +4747,7 @@ export interface ResourceMongoReplicaSet {
4558
4747
  */
4559
4748
  secretStoreId?: pulumi.Input<string>;
4560
4749
  /**
4561
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4750
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4562
4751
  */
4563
4752
  subdomain?: pulumi.Input<string>;
4564
4753
  /**
@@ -4582,7 +4771,7 @@ export interface ResourceMongoShardedCluster {
4582
4771
  */
4583
4772
  authDatabase: pulumi.Input<string>;
4584
4773
  /**
4585
- * 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.
4774
+ * 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.
4586
4775
  */
4587
4776
  bindInterface?: pulumi.Input<string>;
4588
4777
  /**
@@ -4602,7 +4791,7 @@ export interface ResourceMongoShardedCluster {
4602
4791
  */
4603
4792
  password?: pulumi.Input<string>;
4604
4793
  /**
4605
- * The local port used by clients to connect to this resource.
4794
+ * 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.
4606
4795
  */
4607
4796
  portOverride?: pulumi.Input<number>;
4608
4797
  /**
@@ -4614,7 +4803,7 @@ export interface ResourceMongoShardedCluster {
4614
4803
  */
4615
4804
  secretStoreId?: pulumi.Input<string>;
4616
4805
  /**
4617
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4806
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4618
4807
  */
4619
4808
  subdomain?: pulumi.Input<string>;
4620
4809
  /**
@@ -4634,7 +4823,7 @@ export interface ResourceMongoShardedCluster {
4634
4823
  }
4635
4824
  export interface ResourceMtlsMysql {
4636
4825
  /**
4637
- * 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.
4826
+ * 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.
4638
4827
  */
4639
4828
  bindInterface?: pulumi.Input<string>;
4640
4829
  /**
@@ -4674,7 +4863,7 @@ export interface ResourceMtlsMysql {
4674
4863
  */
4675
4864
  port?: pulumi.Input<number>;
4676
4865
  /**
4677
- * The local port used by clients to connect to this resource.
4866
+ * 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.
4678
4867
  */
4679
4868
  portOverride?: pulumi.Input<number>;
4680
4869
  /**
@@ -4694,7 +4883,7 @@ export interface ResourceMtlsMysql {
4694
4883
  */
4695
4884
  serverName?: pulumi.Input<string>;
4696
4885
  /**
4697
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4886
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4698
4887
  */
4699
4888
  subdomain?: pulumi.Input<string>;
4700
4889
  /**
@@ -4714,7 +4903,7 @@ export interface ResourceMtlsMysql {
4714
4903
  }
4715
4904
  export interface ResourceMtlsPostgres {
4716
4905
  /**
4717
- * 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.
4906
+ * 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.
4718
4907
  */
4719
4908
  bindInterface?: pulumi.Input<string>;
4720
4909
  /**
@@ -4758,7 +4947,7 @@ export interface ResourceMtlsPostgres {
4758
4947
  */
4759
4948
  port?: pulumi.Input<number>;
4760
4949
  /**
4761
- * The local port used by clients to connect to this resource.
4950
+ * 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.
4762
4951
  */
4763
4952
  portOverride?: pulumi.Input<number>;
4764
4953
  /**
@@ -4774,7 +4963,7 @@ export interface ResourceMtlsPostgres {
4774
4963
  */
4775
4964
  serverName?: pulumi.Input<string>;
4776
4965
  /**
4777
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4966
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4778
4967
  */
4779
4968
  subdomain?: pulumi.Input<string>;
4780
4969
  /**
@@ -4790,7 +4979,7 @@ export interface ResourceMtlsPostgres {
4790
4979
  }
4791
4980
  export interface ResourceMysql {
4792
4981
  /**
4793
- * 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.
4982
+ * 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.
4794
4983
  */
4795
4984
  bindInterface?: pulumi.Input<string>;
4796
4985
  /**
@@ -4818,7 +5007,7 @@ export interface ResourceMysql {
4818
5007
  */
4819
5008
  port?: pulumi.Input<number>;
4820
5009
  /**
4821
- * The local port used by clients to connect to this resource.
5010
+ * 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.
4822
5011
  */
4823
5012
  portOverride?: pulumi.Input<number>;
4824
5013
  /**
@@ -4834,7 +5023,7 @@ export interface ResourceMysql {
4834
5023
  */
4835
5024
  secretStoreId?: pulumi.Input<string>;
4836
5025
  /**
4837
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5026
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4838
5027
  */
4839
5028
  subdomain?: pulumi.Input<string>;
4840
5029
  /**
@@ -4854,7 +5043,7 @@ export interface ResourceMysql {
4854
5043
  }
4855
5044
  export interface ResourceNeptune {
4856
5045
  /**
4857
- * 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.
5046
+ * 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.
4858
5047
  */
4859
5048
  bindInterface?: pulumi.Input<string>;
4860
5049
  /**
@@ -4874,7 +5063,7 @@ export interface ResourceNeptune {
4874
5063
  */
4875
5064
  port?: pulumi.Input<number>;
4876
5065
  /**
4877
- * The local port used by clients to connect to this resource.
5066
+ * 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.
4878
5067
  */
4879
5068
  portOverride?: pulumi.Input<number>;
4880
5069
  /**
@@ -4886,7 +5075,7 @@ export interface ResourceNeptune {
4886
5075
  */
4887
5076
  secretStoreId?: pulumi.Input<string>;
4888
5077
  /**
4889
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5078
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4890
5079
  */
4891
5080
  subdomain?: pulumi.Input<string>;
4892
5081
  /**
@@ -4902,7 +5091,7 @@ export interface ResourceNeptuneIam {
4902
5091
  */
4903
5092
  accessKey?: pulumi.Input<string>;
4904
5093
  /**
4905
- * 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.
5094
+ * 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.
4906
5095
  */
4907
5096
  bindInterface?: pulumi.Input<string>;
4908
5097
  /**
@@ -4922,7 +5111,7 @@ export interface ResourceNeptuneIam {
4922
5111
  */
4923
5112
  port?: pulumi.Input<number>;
4924
5113
  /**
4925
- * The local port used by clients to connect to this resource.
5114
+ * 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.
4926
5115
  */
4927
5116
  portOverride?: pulumi.Input<number>;
4928
5117
  /**
@@ -4950,7 +5139,7 @@ export interface ResourceNeptuneIam {
4950
5139
  */
4951
5140
  secretStoreId?: pulumi.Input<string>;
4952
5141
  /**
4953
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5142
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
4954
5143
  */
4955
5144
  subdomain?: pulumi.Input<string>;
4956
5145
  /**
@@ -4962,7 +5151,7 @@ export interface ResourceNeptuneIam {
4962
5151
  }
4963
5152
  export interface ResourceOracle {
4964
5153
  /**
4965
- * 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.
5154
+ * 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.
4966
5155
  */
4967
5156
  bindInterface?: pulumi.Input<string>;
4968
5157
  /**
@@ -4990,7 +5179,7 @@ export interface ResourceOracle {
4990
5179
  */
4991
5180
  port: pulumi.Input<number>;
4992
5181
  /**
4993
- * The local port used by clients to connect to this resource.
5182
+ * 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.
4994
5183
  */
4995
5184
  portOverride?: pulumi.Input<number>;
4996
5185
  /**
@@ -5002,7 +5191,7 @@ export interface ResourceOracle {
5002
5191
  */
5003
5192
  secretStoreId?: pulumi.Input<string>;
5004
5193
  /**
5005
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5194
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5006
5195
  */
5007
5196
  subdomain?: pulumi.Input<string>;
5008
5197
  /**
@@ -5022,7 +5211,7 @@ export interface ResourceOracle {
5022
5211
  }
5023
5212
  export interface ResourceOracleNne {
5024
5213
  /**
5025
- * 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.
5214
+ * 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.
5026
5215
  */
5027
5216
  bindInterface?: pulumi.Input<string>;
5028
5217
  /**
@@ -5050,7 +5239,7 @@ export interface ResourceOracleNne {
5050
5239
  */
5051
5240
  port: pulumi.Input<number>;
5052
5241
  /**
5053
- * The local port used by clients to connect to this resource.
5242
+ * 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.
5054
5243
  */
5055
5244
  portOverride?: pulumi.Input<number>;
5056
5245
  /**
@@ -5062,7 +5251,7 @@ export interface ResourceOracleNne {
5062
5251
  */
5063
5252
  secretStoreId?: pulumi.Input<string>;
5064
5253
  /**
5065
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5254
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5066
5255
  */
5067
5256
  subdomain?: pulumi.Input<string>;
5068
5257
  /**
@@ -5071,6 +5260,10 @@ export interface ResourceOracleNne {
5071
5260
  tags?: pulumi.Input<{
5072
5261
  [key: string]: pulumi.Input<string>;
5073
5262
  }>;
5263
+ /**
5264
+ * If set, TLS must be used to connect to this resource.
5265
+ */
5266
+ tlsRequired?: pulumi.Input<boolean>;
5074
5267
  /**
5075
5268
  * The username to authenticate with.
5076
5269
  */
@@ -5078,7 +5271,7 @@ export interface ResourceOracleNne {
5078
5271
  }
5079
5272
  export interface ResourcePostgres {
5080
5273
  /**
5081
- * 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.
5274
+ * 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.
5082
5275
  */
5083
5276
  bindInterface?: pulumi.Input<string>;
5084
5277
  /**
@@ -5110,7 +5303,7 @@ export interface ResourcePostgres {
5110
5303
  */
5111
5304
  port?: pulumi.Input<number>;
5112
5305
  /**
5113
- * The local port used by clients to connect to this resource.
5306
+ * 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.
5114
5307
  */
5115
5308
  portOverride?: pulumi.Input<number>;
5116
5309
  /**
@@ -5122,7 +5315,7 @@ export interface ResourcePostgres {
5122
5315
  */
5123
5316
  secretStoreId?: pulumi.Input<string>;
5124
5317
  /**
5125
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5318
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5126
5319
  */
5127
5320
  subdomain?: pulumi.Input<string>;
5128
5321
  /**
@@ -5138,7 +5331,7 @@ export interface ResourcePostgres {
5138
5331
  }
5139
5332
  export interface ResourcePresto {
5140
5333
  /**
5141
- * 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.
5334
+ * 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.
5142
5335
  */
5143
5336
  bindInterface?: pulumi.Input<string>;
5144
5337
  /**
@@ -5166,7 +5359,7 @@ export interface ResourcePresto {
5166
5359
  */
5167
5360
  port?: pulumi.Input<number>;
5168
5361
  /**
5169
- * The local port used by clients to connect to this resource.
5362
+ * 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.
5170
5363
  */
5171
5364
  portOverride?: pulumi.Input<number>;
5172
5365
  /**
@@ -5178,7 +5371,7 @@ export interface ResourcePresto {
5178
5371
  */
5179
5372
  secretStoreId?: pulumi.Input<string>;
5180
5373
  /**
5181
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5374
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5182
5375
  */
5183
5376
  subdomain?: pulumi.Input<string>;
5184
5377
  /**
@@ -5198,7 +5391,7 @@ export interface ResourcePresto {
5198
5391
  }
5199
5392
  export interface ResourceRabbitmqAmqp091 {
5200
5393
  /**
5201
- * 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.
5394
+ * 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.
5202
5395
  */
5203
5396
  bindInterface?: pulumi.Input<string>;
5204
5397
  /**
@@ -5222,7 +5415,7 @@ export interface ResourceRabbitmqAmqp091 {
5222
5415
  */
5223
5416
  port?: pulumi.Input<number>;
5224
5417
  /**
5225
- * The local port used by clients to connect to this resource.
5418
+ * 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.
5226
5419
  */
5227
5420
  portOverride?: pulumi.Input<number>;
5228
5421
  /**
@@ -5234,7 +5427,7 @@ export interface ResourceRabbitmqAmqp091 {
5234
5427
  */
5235
5428
  secretStoreId?: pulumi.Input<string>;
5236
5429
  /**
5237
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5430
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5238
5431
  */
5239
5432
  subdomain?: pulumi.Input<string>;
5240
5433
  /**
@@ -5254,7 +5447,7 @@ export interface ResourceRabbitmqAmqp091 {
5254
5447
  }
5255
5448
  export interface ResourceRawTcp {
5256
5449
  /**
5257
- * 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.
5450
+ * 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.
5258
5451
  */
5259
5452
  bindInterface?: pulumi.Input<string>;
5260
5453
  /**
@@ -5274,7 +5467,7 @@ export interface ResourceRawTcp {
5274
5467
  */
5275
5468
  port?: pulumi.Input<number>;
5276
5469
  /**
5277
- * The local port used by clients to connect to this resource.
5470
+ * 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.
5278
5471
  */
5279
5472
  portOverride?: pulumi.Input<number>;
5280
5473
  /**
@@ -5286,7 +5479,7 @@ export interface ResourceRawTcp {
5286
5479
  */
5287
5480
  secretStoreId?: pulumi.Input<string>;
5288
5481
  /**
5289
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5482
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5290
5483
  */
5291
5484
  subdomain?: pulumi.Input<string>;
5292
5485
  /**
@@ -5298,7 +5491,7 @@ export interface ResourceRawTcp {
5298
5491
  }
5299
5492
  export interface ResourceRdp {
5300
5493
  /**
5301
- * 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.
5494
+ * 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.
5302
5495
  */
5303
5496
  bindInterface?: pulumi.Input<string>;
5304
5497
  /**
@@ -5330,7 +5523,7 @@ export interface ResourceRdp {
5330
5523
  */
5331
5524
  port?: pulumi.Input<number>;
5332
5525
  /**
5333
- * The local port used by clients to connect to this resource.
5526
+ * 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.
5334
5527
  */
5335
5528
  portOverride?: pulumi.Input<number>;
5336
5529
  /**
@@ -5342,7 +5535,7 @@ export interface ResourceRdp {
5342
5535
  */
5343
5536
  secretStoreId?: pulumi.Input<string>;
5344
5537
  /**
5345
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5538
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5346
5539
  */
5347
5540
  subdomain?: pulumi.Input<string>;
5348
5541
  /**
@@ -5358,9 +5551,13 @@ export interface ResourceRdp {
5358
5551
  }
5359
5552
  export interface ResourceRdpCert {
5360
5553
  /**
5361
- * 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.
5554
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
5362
5555
  */
5363
5556
  bindInterface?: pulumi.Input<string>;
5557
+ /**
5558
+ * Comma-separated list of Active Directory Domain Controller hostnames for LDAPS SID resolution. Utilized for strong certificate mapping in full enforcement mode when the identity alias does not specify a SID.
5559
+ */
5560
+ dcHostnames?: pulumi.Input<string>;
5364
5561
  /**
5365
5562
  * A filter applied to the routing logic to pin datasource to nodes.
5366
5563
  */
@@ -5390,7 +5587,7 @@ export interface ResourceRdpCert {
5390
5587
  */
5391
5588
  port?: pulumi.Input<number>;
5392
5589
  /**
5393
- * The local port used by clients to connect to this resource.
5590
+ * 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.
5394
5591
  */
5395
5592
  portOverride?: pulumi.Input<number>;
5396
5593
  /**
@@ -5402,7 +5599,11 @@ export interface ResourceRdpCert {
5402
5599
  */
5403
5600
  secretStoreId?: pulumi.Input<string>;
5404
5601
  /**
5405
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5602
+ * Windows Security Identifier (SID) of the configured Username, required for strong certificate mapping in full enforcement mode.
5603
+ */
5604
+ sid?: pulumi.Input<string>;
5605
+ /**
5606
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5406
5607
  */
5407
5608
  subdomain?: pulumi.Input<string>;
5408
5609
  /**
@@ -5418,7 +5619,7 @@ export interface ResourceRdpCert {
5418
5619
  }
5419
5620
  export interface ResourceRdsPostgresIam {
5420
5621
  /**
5421
- * 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.
5622
+ * 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.
5422
5623
  */
5423
5624
  bindInterface?: pulumi.Input<string>;
5424
5625
  /**
@@ -5446,7 +5647,7 @@ export interface ResourceRdsPostgresIam {
5446
5647
  */
5447
5648
  port?: pulumi.Input<number>;
5448
5649
  /**
5449
- * The local port used by clients to connect to this resource.
5650
+ * 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.
5450
5651
  */
5451
5652
  portOverride?: pulumi.Input<number>;
5452
5653
  /**
@@ -5466,7 +5667,7 @@ export interface ResourceRdsPostgresIam {
5466
5667
  */
5467
5668
  secretStoreId?: pulumi.Input<string>;
5468
5669
  /**
5469
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5670
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5470
5671
  */
5471
5672
  subdomain?: pulumi.Input<string>;
5472
5673
  /**
@@ -5482,7 +5683,7 @@ export interface ResourceRdsPostgresIam {
5482
5683
  }
5483
5684
  export interface ResourceRedis {
5484
5685
  /**
5485
- * 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.
5686
+ * 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.
5486
5687
  */
5487
5688
  bindInterface?: pulumi.Input<string>;
5488
5689
  /**
@@ -5506,7 +5707,7 @@ export interface ResourceRedis {
5506
5707
  */
5507
5708
  port?: pulumi.Input<number>;
5508
5709
  /**
5509
- * The local port used by clients to connect to this resource.
5710
+ * 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.
5510
5711
  */
5511
5712
  portOverride?: pulumi.Input<number>;
5512
5713
  /**
@@ -5518,7 +5719,7 @@ export interface ResourceRedis {
5518
5719
  */
5519
5720
  secretStoreId?: pulumi.Input<string>;
5520
5721
  /**
5521
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5722
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5522
5723
  */
5523
5724
  subdomain?: pulumi.Input<string>;
5524
5725
  /**
@@ -5538,7 +5739,7 @@ export interface ResourceRedis {
5538
5739
  }
5539
5740
  export interface ResourceRedisCluster {
5540
5741
  /**
5541
- * 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.
5742
+ * 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.
5542
5743
  */
5543
5744
  bindInterface?: pulumi.Input<string>;
5544
5745
  /**
@@ -5562,7 +5763,7 @@ export interface ResourceRedisCluster {
5562
5763
  */
5563
5764
  port?: pulumi.Input<number>;
5564
5765
  /**
5565
- * The local port used by clients to connect to this resource.
5766
+ * 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.
5566
5767
  */
5567
5768
  portOverride?: pulumi.Input<number>;
5568
5769
  /**
@@ -5574,7 +5775,7 @@ export interface ResourceRedisCluster {
5574
5775
  */
5575
5776
  secretStoreId?: pulumi.Input<string>;
5576
5777
  /**
5577
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5778
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5578
5779
  */
5579
5780
  subdomain?: pulumi.Input<string>;
5580
5781
  /**
@@ -5594,7 +5795,7 @@ export interface ResourceRedisCluster {
5594
5795
  }
5595
5796
  export interface ResourceRedshift {
5596
5797
  /**
5597
- * 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.
5798
+ * 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.
5598
5799
  */
5599
5800
  bindInterface?: pulumi.Input<string>;
5600
5801
  /**
@@ -5626,7 +5827,7 @@ export interface ResourceRedshift {
5626
5827
  */
5627
5828
  port?: pulumi.Input<number>;
5628
5829
  /**
5629
- * The local port used by clients to connect to this resource.
5830
+ * 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.
5630
5831
  */
5631
5832
  portOverride?: pulumi.Input<number>;
5632
5833
  /**
@@ -5638,7 +5839,7 @@ export interface ResourceRedshift {
5638
5839
  */
5639
5840
  secretStoreId?: pulumi.Input<string>;
5640
5841
  /**
5641
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5842
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5642
5843
  */
5643
5844
  subdomain?: pulumi.Input<string>;
5644
5845
  /**
@@ -5654,7 +5855,7 @@ export interface ResourceRedshift {
5654
5855
  }
5655
5856
  export interface ResourceRedshiftIam {
5656
5857
  /**
5657
- * 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.
5858
+ * 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.
5658
5859
  */
5659
5860
  bindInterface?: pulumi.Input<string>;
5660
5861
  /**
@@ -5686,7 +5887,7 @@ export interface ResourceRedshiftIam {
5686
5887
  */
5687
5888
  port?: pulumi.Input<number>;
5688
5889
  /**
5689
- * The local port used by clients to connect to this resource.
5890
+ * 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.
5690
5891
  */
5691
5892
  portOverride?: pulumi.Input<number>;
5692
5893
  /**
@@ -5706,7 +5907,7 @@ export interface ResourceRedshiftIam {
5706
5907
  */
5707
5908
  secretStoreId?: pulumi.Input<string>;
5708
5909
  /**
5709
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5910
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5710
5911
  */
5711
5912
  subdomain?: pulumi.Input<string>;
5712
5913
  /**
@@ -5718,7 +5919,7 @@ export interface ResourceRedshiftIam {
5718
5919
  }
5719
5920
  export interface ResourceRedshiftServerlessIam {
5720
5921
  /**
5721
- * 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.
5922
+ * 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.
5722
5923
  */
5723
5924
  bindInterface?: pulumi.Input<string>;
5724
5925
  /**
@@ -5746,7 +5947,7 @@ export interface ResourceRedshiftServerlessIam {
5746
5947
  */
5747
5948
  port?: pulumi.Input<number>;
5748
5949
  /**
5749
- * The local port used by clients to connect to this resource.
5950
+ * 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.
5750
5951
  */
5751
5952
  portOverride?: pulumi.Input<number>;
5752
5953
  /**
@@ -5766,7 +5967,7 @@ export interface ResourceRedshiftServerlessIam {
5766
5967
  */
5767
5968
  secretStoreId?: pulumi.Input<string>;
5768
5969
  /**
5769
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5970
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5770
5971
  */
5771
5972
  subdomain?: pulumi.Input<string>;
5772
5973
  /**
@@ -5783,7 +5984,7 @@ export interface ResourceRedshiftServerlessIam {
5783
5984
  }
5784
5985
  export interface ResourceSingleStore {
5785
5986
  /**
5786
- * 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.
5987
+ * 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.
5787
5988
  */
5788
5989
  bindInterface?: pulumi.Input<string>;
5789
5990
  /**
@@ -5811,7 +6012,7 @@ export interface ResourceSingleStore {
5811
6012
  */
5812
6013
  port?: pulumi.Input<number>;
5813
6014
  /**
5814
- * The local port used by clients to connect to this resource.
6015
+ * 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.
5815
6016
  */
5816
6017
  portOverride?: pulumi.Input<number>;
5817
6018
  /**
@@ -5827,7 +6028,7 @@ export interface ResourceSingleStore {
5827
6028
  */
5828
6029
  secretStoreId?: pulumi.Input<string>;
5829
6030
  /**
5830
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6031
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5831
6032
  */
5832
6033
  subdomain?: pulumi.Input<string>;
5833
6034
  /**
@@ -5847,7 +6048,7 @@ export interface ResourceSingleStore {
5847
6048
  }
5848
6049
  export interface ResourceSnowflake {
5849
6050
  /**
5850
- * 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.
6051
+ * 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.
5851
6052
  */
5852
6053
  bindInterface?: pulumi.Input<string>;
5853
6054
  /**
@@ -5871,7 +6072,7 @@ export interface ResourceSnowflake {
5871
6072
  */
5872
6073
  password?: pulumi.Input<string>;
5873
6074
  /**
5874
- * The local port used by clients to connect to this resource.
6075
+ * 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.
5875
6076
  */
5876
6077
  portOverride?: pulumi.Input<number>;
5877
6078
  /**
@@ -5891,7 +6092,7 @@ export interface ResourceSnowflake {
5891
6092
  */
5892
6093
  secretStoreId?: pulumi.Input<string>;
5893
6094
  /**
5894
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6095
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5895
6096
  */
5896
6097
  subdomain?: pulumi.Input<string>;
5897
6098
  /**
@@ -5907,9 +6108,13 @@ export interface ResourceSnowflake {
5907
6108
  }
5908
6109
  export interface ResourceSnowsight {
5909
6110
  /**
5910
- * 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.
6111
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
5911
6112
  */
5912
6113
  bindInterface?: pulumi.Input<string>;
6114
+ /**
6115
+ * If true, select the ACS with isDefault=true
6116
+ */
6117
+ connectToDefault?: pulumi.Input<boolean>;
5913
6118
  /**
5914
6119
  * A filter applied to the routing logic to pin datasource to nodes.
5915
6120
  */
@@ -5923,7 +6128,7 @@ export interface ResourceSnowsight {
5923
6128
  */
5924
6129
  name: pulumi.Input<string>;
5925
6130
  /**
5926
- * The local port used by clients to connect to this resource.
6131
+ * 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.
5927
6132
  */
5928
6133
  portOverride?: pulumi.Input<number>;
5929
6134
  /**
@@ -5939,7 +6144,7 @@ export interface ResourceSnowsight {
5939
6144
  */
5940
6145
  secretStoreId?: pulumi.Input<string>;
5941
6146
  /**
5942
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6147
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
5943
6148
  */
5944
6149
  subdomain: pulumi.Input<string>;
5945
6150
  /**
@@ -5955,7 +6160,7 @@ export interface ResourceSqlServer {
5955
6160
  */
5956
6161
  allowDeprecatedEncryption?: pulumi.Input<boolean>;
5957
6162
  /**
5958
- * 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.
6163
+ * 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.
5959
6164
  */
5960
6165
  bindInterface?: pulumi.Input<string>;
5961
6166
  /**
@@ -5987,7 +6192,7 @@ export interface ResourceSqlServer {
5987
6192
  */
5988
6193
  port?: pulumi.Input<number>;
5989
6194
  /**
5990
- * The local port used by clients to connect to this resource.
6195
+ * 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.
5991
6196
  */
5992
6197
  portOverride?: pulumi.Input<number>;
5993
6198
  /**
@@ -6003,7 +6208,7 @@ export interface ResourceSqlServer {
6003
6208
  */
6004
6209
  secretStoreId?: pulumi.Input<string>;
6005
6210
  /**
6006
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6211
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6007
6212
  */
6008
6213
  subdomain?: pulumi.Input<string>;
6009
6214
  /**
@@ -6023,7 +6228,7 @@ export interface ResourceSqlServerAzureAd {
6023
6228
  */
6024
6229
  allowDeprecatedEncryption?: pulumi.Input<boolean>;
6025
6230
  /**
6026
- * 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.
6231
+ * 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.
6027
6232
  */
6028
6233
  bindInterface?: pulumi.Input<string>;
6029
6234
  /**
@@ -6055,7 +6260,7 @@ export interface ResourceSqlServerAzureAd {
6055
6260
  */
6056
6261
  port?: pulumi.Input<number>;
6057
6262
  /**
6058
- * The local port used by clients to connect to this resource.
6263
+ * 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.
6059
6264
  */
6060
6265
  portOverride?: pulumi.Input<number>;
6061
6266
  /**
@@ -6075,7 +6280,7 @@ export interface ResourceSqlServerAzureAd {
6075
6280
  */
6076
6281
  secretStoreId?: pulumi.Input<string>;
6077
6282
  /**
6078
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6283
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6079
6284
  */
6080
6285
  subdomain?: pulumi.Input<string>;
6081
6286
  /**
@@ -6096,7 +6301,7 @@ export interface ResourceSqlServerKerberosAd {
6096
6301
  */
6097
6302
  allowDeprecatedEncryption?: pulumi.Input<boolean>;
6098
6303
  /**
6099
- * 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.
6304
+ * 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.
6100
6305
  */
6101
6306
  bindInterface?: pulumi.Input<string>;
6102
6307
  /**
@@ -6132,7 +6337,7 @@ export interface ResourceSqlServerKerberosAd {
6132
6337
  */
6133
6338
  port?: pulumi.Input<number>;
6134
6339
  /**
6135
- * The local port used by clients to connect to this resource.
6340
+ * 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.
6136
6341
  */
6137
6342
  portOverride?: pulumi.Input<number>;
6138
6343
  /**
@@ -6156,7 +6361,7 @@ export interface ResourceSqlServerKerberosAd {
6156
6361
  */
6157
6362
  serverSpn: pulumi.Input<string>;
6158
6363
  /**
6159
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6364
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6160
6365
  */
6161
6366
  subdomain?: pulumi.Input<string>;
6162
6367
  /**
@@ -6176,7 +6381,7 @@ export interface ResourceSsh {
6176
6381
  */
6177
6382
  allowDeprecatedKeyExchanges?: pulumi.Input<boolean>;
6178
6383
  /**
6179
- * 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.
6384
+ * 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.
6180
6385
  */
6181
6386
  bindInterface?: pulumi.Input<string>;
6182
6387
  /**
@@ -6204,7 +6409,7 @@ export interface ResourceSsh {
6204
6409
  */
6205
6410
  portForwarding?: pulumi.Input<boolean>;
6206
6411
  /**
6207
- * The local port used by clients to connect to this resource.
6412
+ * 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.
6208
6413
  */
6209
6414
  portOverride?: pulumi.Input<number>;
6210
6415
  /**
@@ -6220,7 +6425,7 @@ export interface ResourceSsh {
6220
6425
  */
6221
6426
  secretStoreId?: pulumi.Input<string>;
6222
6427
  /**
6223
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6428
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6224
6429
  */
6225
6430
  subdomain?: pulumi.Input<string>;
6226
6431
  /**
@@ -6240,7 +6445,7 @@ export interface ResourceSshCert {
6240
6445
  */
6241
6446
  allowDeprecatedKeyExchanges?: pulumi.Input<boolean>;
6242
6447
  /**
6243
- * 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.
6448
+ * 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.
6244
6449
  */
6245
6450
  bindInterface?: pulumi.Input<string>;
6246
6451
  /**
@@ -6276,7 +6481,7 @@ export interface ResourceSshCert {
6276
6481
  */
6277
6482
  portForwarding?: pulumi.Input<boolean>;
6278
6483
  /**
6279
- * The local port used by clients to connect to this resource.
6484
+ * 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.
6280
6485
  */
6281
6486
  portOverride?: pulumi.Input<number>;
6282
6487
  /**
@@ -6288,7 +6493,7 @@ export interface ResourceSshCert {
6288
6493
  */
6289
6494
  secretStoreId?: pulumi.Input<string>;
6290
6495
  /**
6291
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6496
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6292
6497
  */
6293
6498
  subdomain?: pulumi.Input<string>;
6294
6499
  /**
@@ -6308,7 +6513,7 @@ export interface ResourceSshCustomerKey {
6308
6513
  */
6309
6514
  allowDeprecatedKeyExchanges?: pulumi.Input<boolean>;
6310
6515
  /**
6311
- * 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.
6516
+ * 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.
6312
6517
  */
6313
6518
  bindInterface?: pulumi.Input<string>;
6314
6519
  /**
@@ -6340,7 +6545,7 @@ export interface ResourceSshCustomerKey {
6340
6545
  */
6341
6546
  portForwarding?: pulumi.Input<boolean>;
6342
6547
  /**
6343
- * The local port used by clients to connect to this resource.
6548
+ * 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.
6344
6549
  */
6345
6550
  portOverride?: pulumi.Input<number>;
6346
6551
  /**
@@ -6356,7 +6561,7 @@ export interface ResourceSshCustomerKey {
6356
6561
  */
6357
6562
  secretStoreId?: pulumi.Input<string>;
6358
6563
  /**
6359
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6564
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6360
6565
  */
6361
6566
  subdomain?: pulumi.Input<string>;
6362
6567
  /**
@@ -6376,7 +6581,7 @@ export interface ResourceSshPassword {
6376
6581
  */
6377
6582
  allowDeprecatedKeyExchanges?: pulumi.Input<boolean>;
6378
6583
  /**
6379
- * 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.
6584
+ * 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.
6380
6585
  */
6381
6586
  bindInterface?: pulumi.Input<string>;
6382
6587
  /**
@@ -6404,7 +6609,7 @@ export interface ResourceSshPassword {
6404
6609
  */
6405
6610
  portForwarding?: pulumi.Input<boolean>;
6406
6611
  /**
6407
- * The local port used by clients to connect to this resource.
6612
+ * 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.
6408
6613
  */
6409
6614
  portOverride?: pulumi.Input<number>;
6410
6615
  /**
@@ -6416,7 +6621,7 @@ export interface ResourceSshPassword {
6416
6621
  */
6417
6622
  secretStoreId?: pulumi.Input<string>;
6418
6623
  /**
6419
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6624
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6420
6625
  */
6421
6626
  subdomain?: pulumi.Input<string>;
6422
6627
  /**
@@ -6432,7 +6637,7 @@ export interface ResourceSshPassword {
6432
6637
  }
6433
6638
  export interface ResourceSybase {
6434
6639
  /**
6435
- * 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.
6640
+ * 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.
6436
6641
  */
6437
6642
  bindInterface?: pulumi.Input<string>;
6438
6643
  /**
@@ -6456,7 +6661,7 @@ export interface ResourceSybase {
6456
6661
  */
6457
6662
  port?: pulumi.Input<number>;
6458
6663
  /**
6459
- * The local port used by clients to connect to this resource.
6664
+ * 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.
6460
6665
  */
6461
6666
  portOverride?: pulumi.Input<number>;
6462
6667
  /**
@@ -6468,7 +6673,7 @@ export interface ResourceSybase {
6468
6673
  */
6469
6674
  secretStoreId?: pulumi.Input<string>;
6470
6675
  /**
6471
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6676
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6472
6677
  */
6473
6678
  subdomain?: pulumi.Input<string>;
6474
6679
  /**
@@ -6484,7 +6689,7 @@ export interface ResourceSybase {
6484
6689
  }
6485
6690
  export interface ResourceSybaseIq {
6486
6691
  /**
6487
- * 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.
6692
+ * 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.
6488
6693
  */
6489
6694
  bindInterface?: pulumi.Input<string>;
6490
6695
  /**
@@ -6508,7 +6713,7 @@ export interface ResourceSybaseIq {
6508
6713
  */
6509
6714
  port?: pulumi.Input<number>;
6510
6715
  /**
6511
- * The local port used by clients to connect to this resource.
6716
+ * 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.
6512
6717
  */
6513
6718
  portOverride?: pulumi.Input<number>;
6514
6719
  /**
@@ -6520,7 +6725,7 @@ export interface ResourceSybaseIq {
6520
6725
  */
6521
6726
  secretStoreId?: pulumi.Input<string>;
6522
6727
  /**
6523
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6728
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6524
6729
  */
6525
6730
  subdomain?: pulumi.Input<string>;
6526
6731
  /**
@@ -6536,7 +6741,7 @@ export interface ResourceSybaseIq {
6536
6741
  }
6537
6742
  export interface ResourceTeradata {
6538
6743
  /**
6539
- * 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.
6744
+ * 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.
6540
6745
  */
6541
6746
  bindInterface?: pulumi.Input<string>;
6542
6747
  /**
@@ -6560,7 +6765,7 @@ export interface ResourceTeradata {
6560
6765
  */
6561
6766
  port?: pulumi.Input<number>;
6562
6767
  /**
6563
- * The local port used by clients to connect to this resource.
6768
+ * 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.
6564
6769
  */
6565
6770
  portOverride?: pulumi.Input<number>;
6566
6771
  /**
@@ -6572,7 +6777,7 @@ export interface ResourceTeradata {
6572
6777
  */
6573
6778
  secretStoreId?: pulumi.Input<string>;
6574
6779
  /**
6575
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6780
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6576
6781
  */
6577
6782
  subdomain?: pulumi.Input<string>;
6578
6783
  /**
@@ -6588,7 +6793,7 @@ export interface ResourceTeradata {
6588
6793
  }
6589
6794
  export interface ResourceTrino {
6590
6795
  /**
6591
- * 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.
6796
+ * 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.
6592
6797
  */
6593
6798
  bindInterface?: pulumi.Input<string>;
6594
6799
  /**
@@ -6612,7 +6817,7 @@ export interface ResourceTrino {
6612
6817
  */
6613
6818
  port?: pulumi.Input<number>;
6614
6819
  /**
6615
- * The local port used by clients to connect to this resource.
6820
+ * 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.
6616
6821
  */
6617
6822
  portOverride?: pulumi.Input<number>;
6618
6823
  /**
@@ -6624,7 +6829,7 @@ export interface ResourceTrino {
6624
6829
  */
6625
6830
  secretStoreId?: pulumi.Input<string>;
6626
6831
  /**
6627
- * 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.
6628
6833
  */
6629
6834
  subdomain?: pulumi.Input<string>;
6630
6835
  /**
@@ -6644,7 +6849,7 @@ export interface ResourceTrino {
6644
6849
  }
6645
6850
  export interface ResourceVertica {
6646
6851
  /**
6647
- * 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.
6852
+ * 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.
6648
6853
  */
6649
6854
  bindInterface?: pulumi.Input<string>;
6650
6855
  /**
@@ -6672,7 +6877,7 @@ export interface ResourceVertica {
6672
6877
  */
6673
6878
  port?: pulumi.Input<number>;
6674
6879
  /**
6675
- * The local port used by clients to connect to this resource.
6880
+ * 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.
6676
6881
  */
6677
6882
  portOverride?: pulumi.Input<number>;
6678
6883
  /**
@@ -6684,7 +6889,7 @@ export interface ResourceVertica {
6684
6889
  */
6685
6890
  secretStoreId?: pulumi.Input<string>;
6686
6891
  /**
6687
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6892
+ * DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
6688
6893
  */
6689
6894
  subdomain?: pulumi.Input<string>;
6690
6895
  /**
@@ -6811,6 +7016,66 @@ export interface SecretEngineKeyValue {
6811
7016
  [key: string]: pulumi.Input<string>;
6812
7017
  }>;
6813
7018
  }
7019
+ export interface SecretEnginePostgresSecretEngine {
7020
+ /**
7021
+ * The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
7022
+ */
7023
+ afterReadTtl?: pulumi.Input<string>;
7024
+ /**
7025
+ * Database is the database to verify credential against.
7026
+ */
7027
+ database: pulumi.Input<string>;
7028
+ /**
7029
+ * Hostname is the hostname or IP address of the Postgres server.
7030
+ */
7031
+ hostname: pulumi.Input<string>;
7032
+ /**
7033
+ * An interval of public/private key rotation for secret engine in days
7034
+ */
7035
+ keyRotationIntervalDays?: pulumi.Input<number>;
7036
+ /**
7037
+ * Unique human-readable name of the Secret Engine.
7038
+ */
7039
+ name: pulumi.Input<string>;
7040
+ /**
7041
+ * Password is the password to connect to the Postgres server.
7042
+ */
7043
+ password: pulumi.Input<string>;
7044
+ /**
7045
+ * Port is the port number of the Postgres server.
7046
+ */
7047
+ port: pulumi.Input<number>;
7048
+ /**
7049
+ * Public key linked with a secret engine
7050
+ */
7051
+ publicKey?: pulumi.Input<string>;
7052
+ /**
7053
+ * Backing secret store identifier
7054
+ */
7055
+ secretStoreId: pulumi.Input<string>;
7056
+ /**
7057
+ * Backing Secret Store root path where managed secrets are going to be stored
7058
+ */
7059
+ secretStoreRootPath: pulumi.Input<string>;
7060
+ /**
7061
+ * Tags is a map of key, value pairs.
7062
+ */
7063
+ tags?: pulumi.Input<{
7064
+ [key: string]: pulumi.Input<string>;
7065
+ }>;
7066
+ /**
7067
+ * TLS enables TLS/SSL when connecting to the Postgres server.
7068
+ */
7069
+ tls?: pulumi.Input<boolean>;
7070
+ /**
7071
+ * The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
7072
+ */
7073
+ ttl?: pulumi.Input<string>;
7074
+ /**
7075
+ * Username is the username to connect to the Postgres server.
7076
+ */
7077
+ username: pulumi.Input<string>;
7078
+ }
6814
7079
  export interface SecretStoreActiveDirectoryStore {
6815
7080
  /**
6816
7081
  * Unique human-readable name of the SecretStore.