@pierskarsenbarg/sdm 0.3.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account.js +16 -16
- package/account.js.map +1 -1
- package/accountAttachment.js +22 -22
- package/accountAttachment.js.map +1 -1
- package/getAccount.d.ts +12 -0
- package/getAccount.js +1 -0
- package/getAccount.js.map +1 -1
- package/getRole.d.ts +4 -0
- package/getRole.js.map +1 -1
- package/getSecretStore.d.ts +1 -1
- package/getSecretStore.js +1 -1
- package/node.js +16 -16
- package/node.js.map +1 -1
- package/package.json +3 -3
- package/package.json.bak +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/remoteIdentity.js +22 -22
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +18 -9
- package/resource.js +28 -22
- package/resource.js.map +1 -1
- package/role.d.ts +8 -0
- package/role.js +20 -18
- package/role.js.map +1 -1
- package/scripts/install-pulumi-plugin.js +1 -1
- package/secretStore.d.ts +3 -18
- package/secretStore.js +24 -22
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +463 -3
- package/types/output.d.ts +938 -14
- package/utilities.js +1 -1
- package/utilities.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface AccountUser {
|
|
|
21
21
|
* The User's email address. Must be unique.
|
|
22
22
|
*/
|
|
23
23
|
email: string;
|
|
24
|
+
/**
|
|
25
|
+
* External ID is an alternative unique ID this user is represented by within an external service.
|
|
26
|
+
*/
|
|
27
|
+
externalId?: string;
|
|
24
28
|
/**
|
|
25
29
|
* The User's first name.
|
|
26
30
|
*/
|
|
@@ -29,6 +33,14 @@ export interface AccountUser {
|
|
|
29
33
|
* The User's last name.
|
|
30
34
|
*/
|
|
31
35
|
lastName: string;
|
|
36
|
+
/**
|
|
37
|
+
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
38
|
+
*/
|
|
39
|
+
managedBy: string;
|
|
40
|
+
/**
|
|
41
|
+
* PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user.
|
|
42
|
+
*/
|
|
43
|
+
permissionLevel: string;
|
|
32
44
|
/**
|
|
33
45
|
* The User's suspended state.
|
|
34
46
|
*/
|
|
@@ -69,6 +81,10 @@ export interface GetAccountAccountUser {
|
|
|
69
81
|
* The User's email address. Must be unique.
|
|
70
82
|
*/
|
|
71
83
|
email?: string;
|
|
84
|
+
/**
|
|
85
|
+
* External ID is an alternative unique ID this user is represented by within an external service.
|
|
86
|
+
*/
|
|
87
|
+
externalId?: string;
|
|
72
88
|
/**
|
|
73
89
|
* The User's first name.
|
|
74
90
|
*/
|
|
@@ -81,6 +97,14 @@ export interface GetAccountAccountUser {
|
|
|
81
97
|
* The User's last name.
|
|
82
98
|
*/
|
|
83
99
|
lastName?: string;
|
|
100
|
+
/**
|
|
101
|
+
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
102
|
+
*/
|
|
103
|
+
managedBy: string;
|
|
104
|
+
/**
|
|
105
|
+
* PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user.
|
|
106
|
+
*/
|
|
107
|
+
permissionLevel: string;
|
|
84
108
|
/**
|
|
85
109
|
* The User's suspended state.
|
|
86
110
|
*/
|
|
@@ -115,6 +139,10 @@ export interface GetNodeNodeGateway {
|
|
|
115
139
|
* The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
|
|
116
140
|
*/
|
|
117
141
|
bindAddress?: string;
|
|
142
|
+
/**
|
|
143
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
144
|
+
*/
|
|
145
|
+
device: string;
|
|
118
146
|
/**
|
|
119
147
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
120
148
|
*/
|
|
@@ -127,6 +155,10 @@ export interface GetNodeNodeGateway {
|
|
|
127
155
|
* The public hostname/port tuple at which the gateway will be accessible to clients.
|
|
128
156
|
*/
|
|
129
157
|
listenAddress?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
160
|
+
*/
|
|
161
|
+
location: string;
|
|
130
162
|
/**
|
|
131
163
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
132
164
|
*/
|
|
@@ -137,8 +169,16 @@ export interface GetNodeNodeGateway {
|
|
|
137
169
|
tags?: {
|
|
138
170
|
[key: string]: string;
|
|
139
171
|
};
|
|
172
|
+
/**
|
|
173
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
174
|
+
*/
|
|
175
|
+
version: string;
|
|
140
176
|
}
|
|
141
177
|
export interface GetNodeNodeRelay {
|
|
178
|
+
/**
|
|
179
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
180
|
+
*/
|
|
181
|
+
device: string;
|
|
142
182
|
/**
|
|
143
183
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
144
184
|
*/
|
|
@@ -147,6 +187,10 @@ export interface GetNodeNodeRelay {
|
|
|
147
187
|
* Unique identifier of the Relay.
|
|
148
188
|
*/
|
|
149
189
|
id?: string;
|
|
190
|
+
/**
|
|
191
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
192
|
+
*/
|
|
193
|
+
location: string;
|
|
150
194
|
/**
|
|
151
195
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
152
196
|
*/
|
|
@@ -157,6 +201,10 @@ export interface GetNodeNodeRelay {
|
|
|
157
201
|
tags?: {
|
|
158
202
|
[key: string]: string;
|
|
159
203
|
};
|
|
204
|
+
/**
|
|
205
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
206
|
+
*/
|
|
207
|
+
version: string;
|
|
160
208
|
}
|
|
161
209
|
export interface GetRemoteIdentityGroupRemoteIdentityGroup {
|
|
162
210
|
/**
|
|
@@ -193,6 +241,8 @@ export interface GetResourceResource {
|
|
|
193
241
|
aksServiceAccounts: outputs.GetResourceResourceAksServiceAccount[];
|
|
194
242
|
aksUserImpersonations: outputs.GetResourceResourceAksUserImpersonation[];
|
|
195
243
|
amazonEks: outputs.GetResourceResourceAmazonEk[];
|
|
244
|
+
amazonEksInstanceProfileUserImpersonations: outputs.GetResourceResourceAmazonEksInstanceProfileUserImpersonation[];
|
|
245
|
+
amazonEksInstanceProfiles: outputs.GetResourceResourceAmazonEksInstanceProfile[];
|
|
196
246
|
amazonEksUserImpersonations: outputs.GetResourceResourceAmazonEksUserImpersonation[];
|
|
197
247
|
amazonEs: outputs.GetResourceResourceAmazonE[];
|
|
198
248
|
amazonmqAmqp091s: outputs.GetResourceResourceAmazonmqAmqp091[];
|
|
@@ -203,6 +253,7 @@ export interface GetResourceResource {
|
|
|
203
253
|
awsConsoleStaticKeyPairs: outputs.GetResourceResourceAwsConsoleStaticKeyPair[];
|
|
204
254
|
awsConsoles: outputs.GetResourceResourceAwsConsole[];
|
|
205
255
|
azureCertificates: outputs.GetResourceResourceAzureCertificate[];
|
|
256
|
+
azureMysqls: outputs.GetResourceResourceAzureMysql[];
|
|
206
257
|
azurePostgres: outputs.GetResourceResourceAzurePostgre[];
|
|
207
258
|
azures: outputs.GetResourceResourceAzure[];
|
|
208
259
|
bigQueries: outputs.GetResourceResourceBigQuery[];
|
|
@@ -295,6 +346,10 @@ export interface GetResourceResourceAk {
|
|
|
295
346
|
* ID of the secret store containing credentials for this resource, if any.
|
|
296
347
|
*/
|
|
297
348
|
secretStoreId?: string;
|
|
349
|
+
/**
|
|
350
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
351
|
+
*/
|
|
352
|
+
subdomain?: string;
|
|
298
353
|
/**
|
|
299
354
|
* Tags is a map of key, value pairs.
|
|
300
355
|
*/
|
|
@@ -331,6 +386,10 @@ export interface GetResourceResourceAksBasicAuth {
|
|
|
331
386
|
* ID of the secret store containing credentials for this resource, if any.
|
|
332
387
|
*/
|
|
333
388
|
secretStoreId?: string;
|
|
389
|
+
/**
|
|
390
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
391
|
+
*/
|
|
392
|
+
subdomain?: string;
|
|
334
393
|
/**
|
|
335
394
|
* Tags is a map of key, value pairs.
|
|
336
395
|
*/
|
|
@@ -369,6 +428,10 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
369
428
|
* ID of the secret store containing credentials for this resource, if any.
|
|
370
429
|
*/
|
|
371
430
|
secretStoreId?: string;
|
|
431
|
+
/**
|
|
432
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
433
|
+
*/
|
|
434
|
+
subdomain?: string;
|
|
372
435
|
/**
|
|
373
436
|
* Tags is a map of key, value pairs.
|
|
374
437
|
*/
|
|
@@ -408,6 +471,10 @@ export interface GetResourceResourceAksServiceAccountUserImpersonation {
|
|
|
408
471
|
* ID of the secret store containing credentials for this resource, if any.
|
|
409
472
|
*/
|
|
410
473
|
secretStoreId?: string;
|
|
474
|
+
/**
|
|
475
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
476
|
+
*/
|
|
477
|
+
subdomain?: string;
|
|
411
478
|
/**
|
|
412
479
|
* Tags is a map of key, value pairs.
|
|
413
480
|
*/
|
|
@@ -450,6 +517,10 @@ export interface GetResourceResourceAksUserImpersonation {
|
|
|
450
517
|
* ID of the secret store containing credentials for this resource, if any.
|
|
451
518
|
*/
|
|
452
519
|
secretStoreId?: string;
|
|
520
|
+
/**
|
|
521
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
522
|
+
*/
|
|
523
|
+
subdomain?: string;
|
|
453
524
|
/**
|
|
454
525
|
* Tags is a map of key, value pairs.
|
|
455
526
|
*/
|
|
@@ -485,6 +556,10 @@ export interface GetResourceResourceAmazonE {
|
|
|
485
556
|
* ID of the secret store containing credentials for this resource, if any.
|
|
486
557
|
*/
|
|
487
558
|
secretStoreId?: string;
|
|
559
|
+
/**
|
|
560
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
561
|
+
*/
|
|
562
|
+
subdomain?: string;
|
|
488
563
|
/**
|
|
489
564
|
* Tags is a map of key, value pairs.
|
|
490
565
|
*/
|
|
@@ -527,6 +602,98 @@ export interface GetResourceResourceAmazonEk {
|
|
|
527
602
|
* ID of the secret store containing credentials for this resource, if any.
|
|
528
603
|
*/
|
|
529
604
|
secretStoreId?: string;
|
|
605
|
+
/**
|
|
606
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
607
|
+
*/
|
|
608
|
+
subdomain?: string;
|
|
609
|
+
/**
|
|
610
|
+
* Tags is a map of key, value pairs.
|
|
611
|
+
*/
|
|
612
|
+
tags?: {
|
|
613
|
+
[key: string]: string;
|
|
614
|
+
};
|
|
615
|
+
}
|
|
616
|
+
export interface GetResourceResourceAmazonEksInstanceProfile {
|
|
617
|
+
/**
|
|
618
|
+
* Bind interface
|
|
619
|
+
*/
|
|
620
|
+
bindInterface?: string;
|
|
621
|
+
certificateAuthority?: string;
|
|
622
|
+
clusterName?: string;
|
|
623
|
+
/**
|
|
624
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
625
|
+
*/
|
|
626
|
+
egressFilter?: string;
|
|
627
|
+
endpoint?: string;
|
|
628
|
+
/**
|
|
629
|
+
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
630
|
+
*/
|
|
631
|
+
healthcheckNamespace?: string;
|
|
632
|
+
/**
|
|
633
|
+
* Unique identifier of the Resource.
|
|
634
|
+
*/
|
|
635
|
+
id?: string;
|
|
636
|
+
/**
|
|
637
|
+
* Unique human-readable name of the Resource.
|
|
638
|
+
*/
|
|
639
|
+
name?: string;
|
|
640
|
+
region?: string;
|
|
641
|
+
remoteIdentityGroupId?: string;
|
|
642
|
+
remoteIdentityHealthcheckUsername?: string;
|
|
643
|
+
roleArn?: string;
|
|
644
|
+
roleExternalId?: string;
|
|
645
|
+
/**
|
|
646
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
647
|
+
*/
|
|
648
|
+
secretStoreId?: string;
|
|
649
|
+
/**
|
|
650
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
651
|
+
*/
|
|
652
|
+
subdomain?: string;
|
|
653
|
+
/**
|
|
654
|
+
* Tags is a map of key, value pairs.
|
|
655
|
+
*/
|
|
656
|
+
tags?: {
|
|
657
|
+
[key: string]: string;
|
|
658
|
+
};
|
|
659
|
+
}
|
|
660
|
+
export interface GetResourceResourceAmazonEksInstanceProfileUserImpersonation {
|
|
661
|
+
/**
|
|
662
|
+
* Bind interface
|
|
663
|
+
*/
|
|
664
|
+
bindInterface?: string;
|
|
665
|
+
certificateAuthority?: string;
|
|
666
|
+
clusterName?: string;
|
|
667
|
+
/**
|
|
668
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
669
|
+
*/
|
|
670
|
+
egressFilter?: string;
|
|
671
|
+
endpoint?: string;
|
|
672
|
+
/**
|
|
673
|
+
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
674
|
+
*/
|
|
675
|
+
healthcheckNamespace?: string;
|
|
676
|
+
/**
|
|
677
|
+
* Unique identifier of the Resource.
|
|
678
|
+
*/
|
|
679
|
+
id?: string;
|
|
680
|
+
/**
|
|
681
|
+
* Unique human-readable name of the Resource.
|
|
682
|
+
*/
|
|
683
|
+
name?: string;
|
|
684
|
+
region?: string;
|
|
685
|
+
remoteIdentityGroupId?: string;
|
|
686
|
+
remoteIdentityHealthcheckUsername?: string;
|
|
687
|
+
roleArn?: string;
|
|
688
|
+
roleExternalId?: string;
|
|
689
|
+
/**
|
|
690
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
691
|
+
*/
|
|
692
|
+
secretStoreId?: string;
|
|
693
|
+
/**
|
|
694
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
695
|
+
*/
|
|
696
|
+
subdomain?: string;
|
|
530
697
|
/**
|
|
531
698
|
* Tags is a map of key, value pairs.
|
|
532
699
|
*/
|
|
@@ -567,6 +734,10 @@ export interface GetResourceResourceAmazonEksUserImpersonation {
|
|
|
567
734
|
* ID of the secret store containing credentials for this resource, if any.
|
|
568
735
|
*/
|
|
569
736
|
secretStoreId?: string;
|
|
737
|
+
/**
|
|
738
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
739
|
+
*/
|
|
740
|
+
subdomain?: string;
|
|
570
741
|
/**
|
|
571
742
|
* Tags is a map of key, value pairs.
|
|
572
743
|
*/
|
|
@@ -599,6 +770,10 @@ export interface GetResourceResourceAmazonmqAmqp091 {
|
|
|
599
770
|
* ID of the secret store containing credentials for this resource, if any.
|
|
600
771
|
*/
|
|
601
772
|
secretStoreId?: string;
|
|
773
|
+
/**
|
|
774
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
775
|
+
*/
|
|
776
|
+
subdomain?: string;
|
|
602
777
|
/**
|
|
603
778
|
* Tags is a map of key, value pairs.
|
|
604
779
|
*/
|
|
@@ -636,6 +811,10 @@ export interface GetResourceResourceAthena {
|
|
|
636
811
|
* ID of the secret store containing credentials for this resource, if any.
|
|
637
812
|
*/
|
|
638
813
|
secretStoreId?: string;
|
|
814
|
+
/**
|
|
815
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
816
|
+
*/
|
|
817
|
+
subdomain?: string;
|
|
639
818
|
/**
|
|
640
819
|
* Tags is a map of key, value pairs.
|
|
641
820
|
*/
|
|
@@ -669,6 +848,10 @@ export interface GetResourceResourceAuroraMysql {
|
|
|
669
848
|
* ID of the secret store containing credentials for this resource, if any.
|
|
670
849
|
*/
|
|
671
850
|
secretStoreId?: string;
|
|
851
|
+
/**
|
|
852
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
853
|
+
*/
|
|
854
|
+
subdomain?: string;
|
|
672
855
|
/**
|
|
673
856
|
* Tags is a map of key, value pairs.
|
|
674
857
|
*/
|
|
@@ -704,6 +887,10 @@ export interface GetResourceResourceAuroraPostgre {
|
|
|
704
887
|
* ID of the secret store containing credentials for this resource, if any.
|
|
705
888
|
*/
|
|
706
889
|
secretStoreId?: string;
|
|
890
|
+
/**
|
|
891
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
892
|
+
*/
|
|
893
|
+
subdomain?: string;
|
|
707
894
|
/**
|
|
708
895
|
* Tags is a map of key, value pairs.
|
|
709
896
|
*/
|
|
@@ -774,6 +961,9 @@ export interface GetResourceResourceAwsConsole {
|
|
|
774
961
|
*/
|
|
775
962
|
secretStoreId?: string;
|
|
776
963
|
sessionExpiry?: number;
|
|
964
|
+
/**
|
|
965
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
966
|
+
*/
|
|
777
967
|
subdomain?: string;
|
|
778
968
|
/**
|
|
779
969
|
* Tags is a map of key, value pairs.
|
|
@@ -812,6 +1002,9 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
|
|
|
812
1002
|
*/
|
|
813
1003
|
secretStoreId?: string;
|
|
814
1004
|
sessionExpiry?: number;
|
|
1005
|
+
/**
|
|
1006
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1007
|
+
*/
|
|
815
1008
|
subdomain?: string;
|
|
816
1009
|
/**
|
|
817
1010
|
* Tags is a map of key, value pairs.
|
|
@@ -850,7 +1043,7 @@ export interface GetResourceResourceAzure {
|
|
|
850
1043
|
[key: string]: string;
|
|
851
1044
|
};
|
|
852
1045
|
/**
|
|
853
|
-
* *
|
|
1046
|
+
* * azure_mysql:
|
|
854
1047
|
*/
|
|
855
1048
|
tenantId?: string;
|
|
856
1049
|
}
|
|
@@ -884,10 +1077,48 @@ export interface GetResourceResourceAzureCertificate {
|
|
|
884
1077
|
[key: string]: string;
|
|
885
1078
|
};
|
|
886
1079
|
/**
|
|
887
|
-
* *
|
|
1080
|
+
* * azure_mysql:
|
|
888
1081
|
*/
|
|
889
1082
|
tenantId?: string;
|
|
890
1083
|
}
|
|
1084
|
+
export interface GetResourceResourceAzureMysql {
|
|
1085
|
+
/**
|
|
1086
|
+
* Bind interface
|
|
1087
|
+
*/
|
|
1088
|
+
bindInterface?: string;
|
|
1089
|
+
database?: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
1092
|
+
*/
|
|
1093
|
+
egressFilter?: string;
|
|
1094
|
+
hostname?: string;
|
|
1095
|
+
/**
|
|
1096
|
+
* Unique identifier of the Resource.
|
|
1097
|
+
*/
|
|
1098
|
+
id?: string;
|
|
1099
|
+
/**
|
|
1100
|
+
* Unique human-readable name of the Resource.
|
|
1101
|
+
*/
|
|
1102
|
+
name?: string;
|
|
1103
|
+
password?: string;
|
|
1104
|
+
port?: number;
|
|
1105
|
+
portOverride?: number;
|
|
1106
|
+
/**
|
|
1107
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
1108
|
+
*/
|
|
1109
|
+
secretStoreId?: string;
|
|
1110
|
+
/**
|
|
1111
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1112
|
+
*/
|
|
1113
|
+
subdomain?: string;
|
|
1114
|
+
/**
|
|
1115
|
+
* Tags is a map of key, value pairs.
|
|
1116
|
+
*/
|
|
1117
|
+
tags?: {
|
|
1118
|
+
[key: string]: string;
|
|
1119
|
+
};
|
|
1120
|
+
username?: string;
|
|
1121
|
+
}
|
|
891
1122
|
export interface GetResourceResourceAzurePostgre {
|
|
892
1123
|
/**
|
|
893
1124
|
* Bind interface
|
|
@@ -915,6 +1146,10 @@ export interface GetResourceResourceAzurePostgre {
|
|
|
915
1146
|
* ID of the secret store containing credentials for this resource, if any.
|
|
916
1147
|
*/
|
|
917
1148
|
secretStoreId?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1151
|
+
*/
|
|
1152
|
+
subdomain?: string;
|
|
918
1153
|
/**
|
|
919
1154
|
* Tags is a map of key, value pairs.
|
|
920
1155
|
*/
|
|
@@ -948,6 +1183,10 @@ export interface GetResourceResourceBigQuery {
|
|
|
948
1183
|
* ID of the secret store containing credentials for this resource, if any.
|
|
949
1184
|
*/
|
|
950
1185
|
secretStoreId?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1188
|
+
*/
|
|
1189
|
+
subdomain?: string;
|
|
951
1190
|
/**
|
|
952
1191
|
* Tags is a map of key, value pairs.
|
|
953
1192
|
*/
|
|
@@ -981,6 +1220,10 @@ export interface GetResourceResourceCassandra {
|
|
|
981
1220
|
* ID of the secret store containing credentials for this resource, if any.
|
|
982
1221
|
*/
|
|
983
1222
|
secretStoreId?: string;
|
|
1223
|
+
/**
|
|
1224
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1225
|
+
*/
|
|
1226
|
+
subdomain?: string;
|
|
984
1227
|
/**
|
|
985
1228
|
* Tags is a map of key, value pairs.
|
|
986
1229
|
*/
|
|
@@ -1017,6 +1260,10 @@ export interface GetResourceResourceCitus {
|
|
|
1017
1260
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1018
1261
|
*/
|
|
1019
1262
|
secretStoreId?: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1265
|
+
*/
|
|
1266
|
+
subdomain?: string;
|
|
1020
1267
|
/**
|
|
1021
1268
|
* Tags is a map of key, value pairs.
|
|
1022
1269
|
*/
|
|
@@ -1051,6 +1298,10 @@ export interface GetResourceResourceClustrix {
|
|
|
1051
1298
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1052
1299
|
*/
|
|
1053
1300
|
secretStoreId?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1303
|
+
*/
|
|
1304
|
+
subdomain?: string;
|
|
1054
1305
|
/**
|
|
1055
1306
|
* Tags is a map of key, value pairs.
|
|
1056
1307
|
*/
|
|
@@ -1086,6 +1337,10 @@ export interface GetResourceResourceCockroach {
|
|
|
1086
1337
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1087
1338
|
*/
|
|
1088
1339
|
secretStoreId?: string;
|
|
1340
|
+
/**
|
|
1341
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1342
|
+
*/
|
|
1343
|
+
subdomain?: string;
|
|
1089
1344
|
/**
|
|
1090
1345
|
* Tags is a map of key, value pairs.
|
|
1091
1346
|
*/
|
|
@@ -1119,6 +1374,10 @@ export interface GetResourceResourceDb2I {
|
|
|
1119
1374
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1120
1375
|
*/
|
|
1121
1376
|
secretStoreId?: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1379
|
+
*/
|
|
1380
|
+
subdomain?: string;
|
|
1122
1381
|
/**
|
|
1123
1382
|
* Tags is a map of key, value pairs.
|
|
1124
1383
|
*/
|
|
@@ -1154,6 +1413,10 @@ export interface GetResourceResourceDb2Luw {
|
|
|
1154
1413
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1155
1414
|
*/
|
|
1156
1415
|
secretStoreId?: string;
|
|
1416
|
+
/**
|
|
1417
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1418
|
+
*/
|
|
1419
|
+
subdomain?: string;
|
|
1157
1420
|
/**
|
|
1158
1421
|
* Tags is a map of key, value pairs.
|
|
1159
1422
|
*/
|
|
@@ -1188,6 +1451,10 @@ export interface GetResourceResourceDocumentDbHost {
|
|
|
1188
1451
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1189
1452
|
*/
|
|
1190
1453
|
secretStoreId?: string;
|
|
1454
|
+
/**
|
|
1455
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1456
|
+
*/
|
|
1457
|
+
subdomain?: string;
|
|
1191
1458
|
/**
|
|
1192
1459
|
* Tags is a map of key, value pairs.
|
|
1193
1460
|
*/
|
|
@@ -1223,6 +1490,10 @@ export interface GetResourceResourceDocumentDbReplicaSet {
|
|
|
1223
1490
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1224
1491
|
*/
|
|
1225
1492
|
secretStoreId?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1495
|
+
*/
|
|
1496
|
+
subdomain?: string;
|
|
1226
1497
|
/**
|
|
1227
1498
|
* Tags is a map of key, value pairs.
|
|
1228
1499
|
*/
|
|
@@ -1256,6 +1527,10 @@ export interface GetResourceResourceDruid {
|
|
|
1256
1527
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1257
1528
|
*/
|
|
1258
1529
|
secretStoreId?: string;
|
|
1530
|
+
/**
|
|
1531
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1532
|
+
*/
|
|
1533
|
+
subdomain?: string;
|
|
1259
1534
|
/**
|
|
1260
1535
|
* Tags is a map of key, value pairs.
|
|
1261
1536
|
*/
|
|
@@ -1292,6 +1567,10 @@ export interface GetResourceResourceDynamoDb {
|
|
|
1292
1567
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1293
1568
|
*/
|
|
1294
1569
|
secretStoreId?: string;
|
|
1570
|
+
/**
|
|
1571
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1572
|
+
*/
|
|
1573
|
+
subdomain?: string;
|
|
1295
1574
|
/**
|
|
1296
1575
|
* Tags is a map of key, value pairs.
|
|
1297
1576
|
*/
|
|
@@ -1324,6 +1603,10 @@ export interface GetResourceResourceElastic {
|
|
|
1324
1603
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1325
1604
|
*/
|
|
1326
1605
|
secretStoreId?: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1608
|
+
*/
|
|
1609
|
+
subdomain?: string;
|
|
1327
1610
|
/**
|
|
1328
1611
|
* Tags is a map of key, value pairs.
|
|
1329
1612
|
*/
|
|
@@ -1358,6 +1641,10 @@ export interface GetResourceResourceElasticacheRedi {
|
|
|
1358
1641
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1359
1642
|
*/
|
|
1360
1643
|
secretStoreId?: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1646
|
+
*/
|
|
1647
|
+
subdomain?: string;
|
|
1361
1648
|
/**
|
|
1362
1649
|
* Tags is a map of key, value pairs.
|
|
1363
1650
|
*/
|
|
@@ -1365,6 +1652,7 @@ export interface GetResourceResourceElasticacheRedi {
|
|
|
1365
1652
|
[key: string]: string;
|
|
1366
1653
|
};
|
|
1367
1654
|
tlsRequired?: boolean;
|
|
1655
|
+
username?: string;
|
|
1368
1656
|
}
|
|
1369
1657
|
export interface GetResourceResourceGcp {
|
|
1370
1658
|
/**
|
|
@@ -1426,6 +1714,10 @@ export interface GetResourceResourceGoogleGke {
|
|
|
1426
1714
|
*/
|
|
1427
1715
|
secretStoreId?: string;
|
|
1428
1716
|
serviceAccountKey?: string;
|
|
1717
|
+
/**
|
|
1718
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1719
|
+
*/
|
|
1720
|
+
subdomain?: string;
|
|
1429
1721
|
/**
|
|
1430
1722
|
* Tags is a map of key, value pairs.
|
|
1431
1723
|
*/
|
|
@@ -1461,6 +1753,10 @@ export interface GetResourceResourceGoogleGkeUserImpersonation {
|
|
|
1461
1753
|
*/
|
|
1462
1754
|
secretStoreId?: string;
|
|
1463
1755
|
serviceAccountKey?: string;
|
|
1756
|
+
/**
|
|
1757
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1758
|
+
*/
|
|
1759
|
+
subdomain?: string;
|
|
1464
1760
|
/**
|
|
1465
1761
|
* Tags is a map of key, value pairs.
|
|
1466
1762
|
*/
|
|
@@ -1495,6 +1791,10 @@ export interface GetResourceResourceGreenplum {
|
|
|
1495
1791
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1496
1792
|
*/
|
|
1497
1793
|
secretStoreId?: string;
|
|
1794
|
+
/**
|
|
1795
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1796
|
+
*/
|
|
1797
|
+
subdomain?: string;
|
|
1498
1798
|
/**
|
|
1499
1799
|
* Tags is a map of key, value pairs.
|
|
1500
1800
|
*/
|
|
@@ -1529,6 +1829,9 @@ export interface GetResourceResourceHttpAuth {
|
|
|
1529
1829
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1530
1830
|
*/
|
|
1531
1831
|
secretStoreId?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1834
|
+
*/
|
|
1532
1835
|
subdomain?: string;
|
|
1533
1836
|
/**
|
|
1534
1837
|
* Tags is a map of key, value pairs.
|
|
@@ -1567,6 +1870,9 @@ export interface GetResourceResourceHttpBasicAuth {
|
|
|
1567
1870
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1568
1871
|
*/
|
|
1569
1872
|
secretStoreId?: string;
|
|
1873
|
+
/**
|
|
1874
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1875
|
+
*/
|
|
1570
1876
|
subdomain?: string;
|
|
1571
1877
|
/**
|
|
1572
1878
|
* Tags is a map of key, value pairs.
|
|
@@ -1605,6 +1911,9 @@ export interface GetResourceResourceHttpNoAuth {
|
|
|
1605
1911
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1606
1912
|
*/
|
|
1607
1913
|
secretStoreId?: string;
|
|
1914
|
+
/**
|
|
1915
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1916
|
+
*/
|
|
1608
1917
|
subdomain?: string;
|
|
1609
1918
|
/**
|
|
1610
1919
|
* Tags is a map of key, value pairs.
|
|
@@ -1650,6 +1959,10 @@ export interface GetResourceResourceKubernete {
|
|
|
1650
1959
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1651
1960
|
*/
|
|
1652
1961
|
secretStoreId?: string;
|
|
1962
|
+
/**
|
|
1963
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1964
|
+
*/
|
|
1965
|
+
subdomain?: string;
|
|
1653
1966
|
/**
|
|
1654
1967
|
* Tags is a map of key, value pairs.
|
|
1655
1968
|
*/
|
|
@@ -1686,6 +1999,10 @@ export interface GetResourceResourceKubernetesBasicAuth {
|
|
|
1686
1999
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1687
2000
|
*/
|
|
1688
2001
|
secretStoreId?: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2004
|
+
*/
|
|
2005
|
+
subdomain?: string;
|
|
1689
2006
|
/**
|
|
1690
2007
|
* Tags is a map of key, value pairs.
|
|
1691
2008
|
*/
|
|
@@ -1724,6 +2041,10 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
1724
2041
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1725
2042
|
*/
|
|
1726
2043
|
secretStoreId?: string;
|
|
2044
|
+
/**
|
|
2045
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2046
|
+
*/
|
|
2047
|
+
subdomain?: string;
|
|
1727
2048
|
/**
|
|
1728
2049
|
* Tags is a map of key, value pairs.
|
|
1729
2050
|
*/
|
|
@@ -1763,6 +2084,10 @@ export interface GetResourceResourceKubernetesServiceAccountUserImpersonation {
|
|
|
1763
2084
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1764
2085
|
*/
|
|
1765
2086
|
secretStoreId?: string;
|
|
2087
|
+
/**
|
|
2088
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2089
|
+
*/
|
|
2090
|
+
subdomain?: string;
|
|
1766
2091
|
/**
|
|
1767
2092
|
* Tags is a map of key, value pairs.
|
|
1768
2093
|
*/
|
|
@@ -1805,6 +2130,10 @@ export interface GetResourceResourceKubernetesUserImpersonation {
|
|
|
1805
2130
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1806
2131
|
*/
|
|
1807
2132
|
secretStoreId?: string;
|
|
2133
|
+
/**
|
|
2134
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2135
|
+
*/
|
|
2136
|
+
subdomain?: string;
|
|
1808
2137
|
/**
|
|
1809
2138
|
* Tags is a map of key, value pairs.
|
|
1810
2139
|
*/
|
|
@@ -1838,6 +2167,10 @@ export interface GetResourceResourceMaria {
|
|
|
1838
2167
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1839
2168
|
*/
|
|
1840
2169
|
secretStoreId?: string;
|
|
2170
|
+
/**
|
|
2171
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2172
|
+
*/
|
|
2173
|
+
subdomain?: string;
|
|
1841
2174
|
/**
|
|
1842
2175
|
* Tags is a map of key, value pairs.
|
|
1843
2176
|
*/
|
|
@@ -1870,6 +2203,10 @@ export interface GetResourceResourceMemcached {
|
|
|
1870
2203
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1871
2204
|
*/
|
|
1872
2205
|
secretStoreId?: string;
|
|
2206
|
+
/**
|
|
2207
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2208
|
+
*/
|
|
2209
|
+
subdomain?: string;
|
|
1873
2210
|
/**
|
|
1874
2211
|
* Tags is a map of key, value pairs.
|
|
1875
2212
|
*/
|
|
@@ -1903,6 +2240,10 @@ export interface GetResourceResourceMemsql {
|
|
|
1903
2240
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1904
2241
|
*/
|
|
1905
2242
|
secretStoreId?: string;
|
|
2243
|
+
/**
|
|
2244
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2245
|
+
*/
|
|
2246
|
+
subdomain?: string;
|
|
1906
2247
|
/**
|
|
1907
2248
|
* Tags is a map of key, value pairs.
|
|
1908
2249
|
*/
|
|
@@ -1937,6 +2278,10 @@ export interface GetResourceResourceMongoHost {
|
|
|
1937
2278
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1938
2279
|
*/
|
|
1939
2280
|
secretStoreId?: string;
|
|
2281
|
+
/**
|
|
2282
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2283
|
+
*/
|
|
2284
|
+
subdomain?: string;
|
|
1940
2285
|
/**
|
|
1941
2286
|
* Tags is a map of key, value pairs.
|
|
1942
2287
|
*/
|
|
@@ -1973,6 +2318,10 @@ export interface GetResourceResourceMongoLegacyHost {
|
|
|
1973
2318
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1974
2319
|
*/
|
|
1975
2320
|
secretStoreId?: string;
|
|
2321
|
+
/**
|
|
2322
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2323
|
+
*/
|
|
2324
|
+
subdomain?: string;
|
|
1976
2325
|
/**
|
|
1977
2326
|
* Tags is a map of key, value pairs.
|
|
1978
2327
|
*/
|
|
@@ -2010,6 +2359,10 @@ export interface GetResourceResourceMongoLegacyReplicaset {
|
|
|
2010
2359
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2011
2360
|
*/
|
|
2012
2361
|
secretStoreId?: string;
|
|
2362
|
+
/**
|
|
2363
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2364
|
+
*/
|
|
2365
|
+
subdomain?: string;
|
|
2013
2366
|
/**
|
|
2014
2367
|
* Tags is a map of key, value pairs.
|
|
2015
2368
|
*/
|
|
@@ -2047,6 +2400,10 @@ export interface GetResourceResourceMongoReplicaSet {
|
|
|
2047
2400
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2048
2401
|
*/
|
|
2049
2402
|
secretStoreId?: string;
|
|
2403
|
+
/**
|
|
2404
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2405
|
+
*/
|
|
2406
|
+
subdomain?: string;
|
|
2050
2407
|
/**
|
|
2051
2408
|
* Tags is a map of key, value pairs.
|
|
2052
2409
|
*/
|
|
@@ -2081,6 +2438,10 @@ export interface GetResourceResourceMongoShardedCluster {
|
|
|
2081
2438
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2082
2439
|
*/
|
|
2083
2440
|
secretStoreId?: string;
|
|
2441
|
+
/**
|
|
2442
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2443
|
+
*/
|
|
2444
|
+
subdomain?: string;
|
|
2084
2445
|
/**
|
|
2085
2446
|
* Tags is a map of key, value pairs.
|
|
2086
2447
|
*/
|
|
@@ -2120,6 +2481,10 @@ export interface GetResourceResourceMtlsMysql {
|
|
|
2120
2481
|
*/
|
|
2121
2482
|
secretStoreId?: string;
|
|
2122
2483
|
serverName?: string;
|
|
2484
|
+
/**
|
|
2485
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2486
|
+
*/
|
|
2487
|
+
subdomain?: string;
|
|
2123
2488
|
/**
|
|
2124
2489
|
* Tags is a map of key, value pairs.
|
|
2125
2490
|
*/
|
|
@@ -2159,6 +2524,10 @@ export interface GetResourceResourceMtlsPostgre {
|
|
|
2159
2524
|
*/
|
|
2160
2525
|
secretStoreId?: string;
|
|
2161
2526
|
serverName?: string;
|
|
2527
|
+
/**
|
|
2528
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2529
|
+
*/
|
|
2530
|
+
subdomain?: string;
|
|
2162
2531
|
/**
|
|
2163
2532
|
* Tags is a map of key, value pairs.
|
|
2164
2533
|
*/
|
|
@@ -2193,6 +2562,10 @@ export interface GetResourceResourceMysql {
|
|
|
2193
2562
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2194
2563
|
*/
|
|
2195
2564
|
secretStoreId?: string;
|
|
2565
|
+
/**
|
|
2566
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2567
|
+
*/
|
|
2568
|
+
subdomain?: string;
|
|
2196
2569
|
/**
|
|
2197
2570
|
* Tags is a map of key, value pairs.
|
|
2198
2571
|
*/
|
|
@@ -2225,6 +2598,10 @@ export interface GetResourceResourceNeptune {
|
|
|
2225
2598
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2226
2599
|
*/
|
|
2227
2600
|
secretStoreId?: string;
|
|
2601
|
+
/**
|
|
2602
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2603
|
+
*/
|
|
2604
|
+
subdomain?: string;
|
|
2228
2605
|
/**
|
|
2229
2606
|
* Tags is a map of key, value pairs.
|
|
2230
2607
|
*/
|
|
@@ -2261,6 +2638,10 @@ export interface GetResourceResourceNeptuneIam {
|
|
|
2261
2638
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2262
2639
|
*/
|
|
2263
2640
|
secretStoreId?: string;
|
|
2641
|
+
/**
|
|
2642
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2643
|
+
*/
|
|
2644
|
+
subdomain?: string;
|
|
2264
2645
|
/**
|
|
2265
2646
|
* Tags is a map of key, value pairs.
|
|
2266
2647
|
*/
|
|
@@ -2294,6 +2675,10 @@ export interface GetResourceResourceOracle {
|
|
|
2294
2675
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2295
2676
|
*/
|
|
2296
2677
|
secretStoreId?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2680
|
+
*/
|
|
2681
|
+
subdomain?: string;
|
|
2297
2682
|
/**
|
|
2298
2683
|
* Tags is a map of key, value pairs.
|
|
2299
2684
|
*/
|
|
@@ -2330,6 +2715,10 @@ export interface GetResourceResourcePostgre {
|
|
|
2330
2715
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2331
2716
|
*/
|
|
2332
2717
|
secretStoreId?: string;
|
|
2718
|
+
/**
|
|
2719
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2720
|
+
*/
|
|
2721
|
+
subdomain?: string;
|
|
2333
2722
|
/**
|
|
2334
2723
|
* Tags is a map of key, value pairs.
|
|
2335
2724
|
*/
|
|
@@ -2364,6 +2753,10 @@ export interface GetResourceResourcePresto {
|
|
|
2364
2753
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2365
2754
|
*/
|
|
2366
2755
|
secretStoreId?: string;
|
|
2756
|
+
/**
|
|
2757
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2758
|
+
*/
|
|
2759
|
+
subdomain?: string;
|
|
2367
2760
|
/**
|
|
2368
2761
|
* Tags is a map of key, value pairs.
|
|
2369
2762
|
*/
|
|
@@ -2398,6 +2791,10 @@ export interface GetResourceResourceRabbitmqAmqp091 {
|
|
|
2398
2791
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2399
2792
|
*/
|
|
2400
2793
|
secretStoreId?: string;
|
|
2794
|
+
/**
|
|
2795
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2796
|
+
*/
|
|
2797
|
+
subdomain?: string;
|
|
2401
2798
|
/**
|
|
2402
2799
|
* Tags is a map of key, value pairs.
|
|
2403
2800
|
*/
|
|
@@ -2431,6 +2828,10 @@ export interface GetResourceResourceRawTcp {
|
|
|
2431
2828
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2432
2829
|
*/
|
|
2433
2830
|
secretStoreId?: string;
|
|
2831
|
+
/**
|
|
2832
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2833
|
+
*/
|
|
2834
|
+
subdomain?: string;
|
|
2434
2835
|
/**
|
|
2435
2836
|
* Tags is a map of key, value pairs.
|
|
2436
2837
|
*/
|
|
@@ -2464,6 +2865,10 @@ export interface GetResourceResourceRdp {
|
|
|
2464
2865
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2465
2866
|
*/
|
|
2466
2867
|
secretStoreId?: string;
|
|
2868
|
+
/**
|
|
2869
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2870
|
+
*/
|
|
2871
|
+
subdomain?: string;
|
|
2467
2872
|
/**
|
|
2468
2873
|
* Tags is a map of key, value pairs.
|
|
2469
2874
|
*/
|
|
@@ -2497,12 +2902,18 @@ export interface GetResourceResourceRedi {
|
|
|
2497
2902
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2498
2903
|
*/
|
|
2499
2904
|
secretStoreId?: string;
|
|
2905
|
+
/**
|
|
2906
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2907
|
+
*/
|
|
2908
|
+
subdomain?: string;
|
|
2500
2909
|
/**
|
|
2501
2910
|
* Tags is a map of key, value pairs.
|
|
2502
2911
|
*/
|
|
2503
2912
|
tags?: {
|
|
2504
2913
|
[key: string]: string;
|
|
2505
2914
|
};
|
|
2915
|
+
tlsRequired?: boolean;
|
|
2916
|
+
username?: string;
|
|
2506
2917
|
}
|
|
2507
2918
|
export interface GetResourceResourceRedshift {
|
|
2508
2919
|
/**
|
|
@@ -2531,6 +2942,10 @@ export interface GetResourceResourceRedshift {
|
|
|
2531
2942
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2532
2943
|
*/
|
|
2533
2944
|
secretStoreId?: string;
|
|
2945
|
+
/**
|
|
2946
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2947
|
+
*/
|
|
2948
|
+
subdomain?: string;
|
|
2534
2949
|
/**
|
|
2535
2950
|
* Tags is a map of key, value pairs.
|
|
2536
2951
|
*/
|
|
@@ -2565,6 +2980,10 @@ export interface GetResourceResourceSingleStore {
|
|
|
2565
2980
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2566
2981
|
*/
|
|
2567
2982
|
secretStoreId?: string;
|
|
2983
|
+
/**
|
|
2984
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2985
|
+
*/
|
|
2986
|
+
subdomain?: string;
|
|
2568
2987
|
/**
|
|
2569
2988
|
* Tags is a map of key, value pairs.
|
|
2570
2989
|
*/
|
|
@@ -2599,6 +3018,10 @@ export interface GetResourceResourceSnowflake {
|
|
|
2599
3018
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2600
3019
|
*/
|
|
2601
3020
|
secretStoreId?: string;
|
|
3021
|
+
/**
|
|
3022
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3023
|
+
*/
|
|
3024
|
+
subdomain?: string;
|
|
2602
3025
|
/**
|
|
2603
3026
|
* Tags is a map of key, value pairs.
|
|
2604
3027
|
*/
|
|
@@ -2631,6 +3054,9 @@ export interface GetResourceResourceSnowsight {
|
|
|
2631
3054
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2632
3055
|
*/
|
|
2633
3056
|
secretStoreId?: string;
|
|
3057
|
+
/**
|
|
3058
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3059
|
+
*/
|
|
2634
3060
|
subdomain?: string;
|
|
2635
3061
|
/**
|
|
2636
3062
|
* Tags is a map of key, value pairs.
|
|
@@ -2667,6 +3093,10 @@ export interface GetResourceResourceSqlServer {
|
|
|
2667
3093
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2668
3094
|
*/
|
|
2669
3095
|
secretStoreId?: string;
|
|
3096
|
+
/**
|
|
3097
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3098
|
+
*/
|
|
3099
|
+
subdomain?: string;
|
|
2670
3100
|
/**
|
|
2671
3101
|
* Tags is a map of key, value pairs.
|
|
2672
3102
|
*/
|
|
@@ -2703,6 +3133,10 @@ export interface GetResourceResourceSsh {
|
|
|
2703
3133
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2704
3134
|
*/
|
|
2705
3135
|
secretStoreId?: string;
|
|
3136
|
+
/**
|
|
3137
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3138
|
+
*/
|
|
3139
|
+
subdomain?: string;
|
|
2706
3140
|
/**
|
|
2707
3141
|
* Tags is a map of key, value pairs.
|
|
2708
3142
|
*/
|
|
@@ -2740,6 +3174,10 @@ export interface GetResourceResourceSshCert {
|
|
|
2740
3174
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2741
3175
|
*/
|
|
2742
3176
|
secretStoreId?: string;
|
|
3177
|
+
/**
|
|
3178
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3179
|
+
*/
|
|
3180
|
+
subdomain?: string;
|
|
2743
3181
|
/**
|
|
2744
3182
|
* Tags is a map of key, value pairs.
|
|
2745
3183
|
*/
|
|
@@ -2775,6 +3213,10 @@ export interface GetResourceResourceSshCustomerKey {
|
|
|
2775
3213
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2776
3214
|
*/
|
|
2777
3215
|
secretStoreId?: string;
|
|
3216
|
+
/**
|
|
3217
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3218
|
+
*/
|
|
3219
|
+
subdomain?: string;
|
|
2778
3220
|
/**
|
|
2779
3221
|
* Tags is a map of key, value pairs.
|
|
2780
3222
|
*/
|
|
@@ -2808,6 +3250,10 @@ export interface GetResourceResourceSybase {
|
|
|
2808
3250
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2809
3251
|
*/
|
|
2810
3252
|
secretStoreId?: string;
|
|
3253
|
+
/**
|
|
3254
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3255
|
+
*/
|
|
3256
|
+
subdomain?: string;
|
|
2811
3257
|
/**
|
|
2812
3258
|
* Tags is a map of key, value pairs.
|
|
2813
3259
|
*/
|
|
@@ -2841,6 +3287,10 @@ export interface GetResourceResourceSybaseIq {
|
|
|
2841
3287
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2842
3288
|
*/
|
|
2843
3289
|
secretStoreId?: string;
|
|
3290
|
+
/**
|
|
3291
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3292
|
+
*/
|
|
3293
|
+
subdomain?: string;
|
|
2844
3294
|
/**
|
|
2845
3295
|
* Tags is a map of key, value pairs.
|
|
2846
3296
|
*/
|
|
@@ -2874,6 +3324,10 @@ export interface GetResourceResourceTeradata {
|
|
|
2874
3324
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2875
3325
|
*/
|
|
2876
3326
|
secretStoreId?: string;
|
|
3327
|
+
/**
|
|
3328
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3329
|
+
*/
|
|
3330
|
+
subdomain?: string;
|
|
2877
3331
|
/**
|
|
2878
3332
|
* Tags is a map of key, value pairs.
|
|
2879
3333
|
*/
|
|
@@ -2891,6 +3345,10 @@ export interface GetRoleRole {
|
|
|
2891
3345
|
* Unique identifier of the Role.
|
|
2892
3346
|
*/
|
|
2893
3347
|
id?: string;
|
|
3348
|
+
/**
|
|
3349
|
+
* Managed By is a read only field for what service manages this role, e.g. StrongDM, Okta, Azure.
|
|
3350
|
+
*/
|
|
3351
|
+
managedBy: string;
|
|
2894
3352
|
/**
|
|
2895
3353
|
* Unique human-readable name of the Role.
|
|
2896
3354
|
*/
|
|
@@ -2907,6 +3365,7 @@ export interface GetSecretStoreSecretStore {
|
|
|
2907
3365
|
azureStores: outputs.GetSecretStoreSecretStoreAzureStore[];
|
|
2908
3366
|
cyberarkConjurs: outputs.GetSecretStoreSecretStoreCyberarkConjur[];
|
|
2909
3367
|
cyberarkPamExperimentals: outputs.GetSecretStoreSecretStoreCyberarkPamExperimental[];
|
|
3368
|
+
cyberarkPams: outputs.GetSecretStoreSecretStoreCyberarkPam[];
|
|
2910
3369
|
delineaStores: outputs.GetSecretStoreSecretStoreDelineaStore[];
|
|
2911
3370
|
gcpStores: outputs.GetSecretStoreSecretStoreGcpStore[];
|
|
2912
3371
|
vaultApproles: outputs.GetSecretStoreSecretStoreVaultApprole[];
|
|
@@ -2967,6 +3426,23 @@ export interface GetSecretStoreSecretStoreCyberarkConjur {
|
|
|
2967
3426
|
[key: string]: string;
|
|
2968
3427
|
};
|
|
2969
3428
|
}
|
|
3429
|
+
export interface GetSecretStoreSecretStoreCyberarkPam {
|
|
3430
|
+
appUrl?: string;
|
|
3431
|
+
/**
|
|
3432
|
+
* Unique identifier of the SecretStore.
|
|
3433
|
+
*/
|
|
3434
|
+
id?: string;
|
|
3435
|
+
/**
|
|
3436
|
+
* Unique human-readable name of the SecretStore.
|
|
3437
|
+
*/
|
|
3438
|
+
name?: string;
|
|
3439
|
+
/**
|
|
3440
|
+
* Tags is a map of key, value pairs.
|
|
3441
|
+
*/
|
|
3442
|
+
tags?: {
|
|
3443
|
+
[key: string]: string;
|
|
3444
|
+
};
|
|
3445
|
+
}
|
|
2970
3446
|
export interface GetSecretStoreSecretStoreCyberarkPamExperimental {
|
|
2971
3447
|
appUrl?: string;
|
|
2972
3448
|
/**
|
|
@@ -3084,6 +3560,10 @@ export interface NodeGateway {
|
|
|
3084
3560
|
* The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
|
|
3085
3561
|
*/
|
|
3086
3562
|
bindAddress: string;
|
|
3563
|
+
/**
|
|
3564
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
3565
|
+
*/
|
|
3566
|
+
device: string;
|
|
3087
3567
|
/**
|
|
3088
3568
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
3089
3569
|
*/
|
|
@@ -3092,6 +3572,10 @@ export interface NodeGateway {
|
|
|
3092
3572
|
* The public hostname/port tuple at which the gateway will be accessible to clients.
|
|
3093
3573
|
*/
|
|
3094
3574
|
listenAddress: string;
|
|
3575
|
+
/**
|
|
3576
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
3577
|
+
*/
|
|
3578
|
+
location: string;
|
|
3095
3579
|
/**
|
|
3096
3580
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
3097
3581
|
*/
|
|
@@ -3103,12 +3587,24 @@ export interface NodeGateway {
|
|
|
3103
3587
|
[key: string]: string;
|
|
3104
3588
|
};
|
|
3105
3589
|
token: string;
|
|
3590
|
+
/**
|
|
3591
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
3592
|
+
*/
|
|
3593
|
+
version: string;
|
|
3106
3594
|
}
|
|
3107
3595
|
export interface NodeRelay {
|
|
3596
|
+
/**
|
|
3597
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
3598
|
+
*/
|
|
3599
|
+
device: string;
|
|
3108
3600
|
/**
|
|
3109
3601
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
3110
3602
|
*/
|
|
3111
3603
|
gatewayFilter?: string;
|
|
3604
|
+
/**
|
|
3605
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
3606
|
+
*/
|
|
3607
|
+
location: string;
|
|
3112
3608
|
/**
|
|
3113
3609
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
3114
3610
|
*/
|
|
@@ -3120,6 +3616,10 @@ export interface NodeRelay {
|
|
|
3120
3616
|
[key: string]: string;
|
|
3121
3617
|
};
|
|
3122
3618
|
token: string;
|
|
3619
|
+
/**
|
|
3620
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
3621
|
+
*/
|
|
3622
|
+
version: string;
|
|
3123
3623
|
}
|
|
3124
3624
|
export interface ResourceAks {
|
|
3125
3625
|
/**
|
|
@@ -3156,6 +3656,10 @@ export interface ResourceAks {
|
|
|
3156
3656
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3157
3657
|
*/
|
|
3158
3658
|
secretStoreId?: string;
|
|
3659
|
+
/**
|
|
3660
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3661
|
+
*/
|
|
3662
|
+
subdomain: string;
|
|
3159
3663
|
/**
|
|
3160
3664
|
* Tags is a map of key, value pairs.
|
|
3161
3665
|
*/
|
|
@@ -3192,6 +3696,10 @@ export interface ResourceAksBasicAuth {
|
|
|
3192
3696
|
secretStorePasswordPath?: string;
|
|
3193
3697
|
secretStoreUsernameKey?: string;
|
|
3194
3698
|
secretStoreUsernamePath?: string;
|
|
3699
|
+
/**
|
|
3700
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3701
|
+
*/
|
|
3702
|
+
subdomain: string;
|
|
3195
3703
|
/**
|
|
3196
3704
|
* Tags is a map of key, value pairs.
|
|
3197
3705
|
*/
|
|
@@ -3231,6 +3739,10 @@ export interface ResourceAksServiceAccount {
|
|
|
3231
3739
|
*/
|
|
3232
3740
|
secretStoreTokenKey?: string;
|
|
3233
3741
|
secretStoreTokenPath?: string;
|
|
3742
|
+
/**
|
|
3743
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3744
|
+
*/
|
|
3745
|
+
subdomain: string;
|
|
3234
3746
|
/**
|
|
3235
3747
|
* Tags is a map of key, value pairs.
|
|
3236
3748
|
*/
|
|
@@ -3268,6 +3780,10 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
3268
3780
|
*/
|
|
3269
3781
|
secretStoreTokenKey?: string;
|
|
3270
3782
|
secretStoreTokenPath?: string;
|
|
3783
|
+
/**
|
|
3784
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3785
|
+
*/
|
|
3786
|
+
subdomain: string;
|
|
3271
3787
|
/**
|
|
3272
3788
|
* Tags is a map of key, value pairs.
|
|
3273
3789
|
*/
|
|
@@ -3306,9 +3822,111 @@ export interface ResourceAksUserImpersonation {
|
|
|
3306
3822
|
secretStoreClientKeyKey?: string;
|
|
3307
3823
|
secretStoreClientKeyPath?: string;
|
|
3308
3824
|
/**
|
|
3309
|
-
* ID of the secret store containing credentials for this resource, if any.
|
|
3825
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3826
|
+
*/
|
|
3827
|
+
secretStoreId?: string;
|
|
3828
|
+
/**
|
|
3829
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3830
|
+
*/
|
|
3831
|
+
subdomain: string;
|
|
3832
|
+
/**
|
|
3833
|
+
* Tags is a map of key, value pairs.
|
|
3834
|
+
*/
|
|
3835
|
+
tags?: {
|
|
3836
|
+
[key: string]: string;
|
|
3837
|
+
};
|
|
3838
|
+
}
|
|
3839
|
+
export interface ResourceAmazonEks {
|
|
3840
|
+
accessKey?: string;
|
|
3841
|
+
/**
|
|
3842
|
+
* Bind interface
|
|
3843
|
+
*/
|
|
3844
|
+
bindInterface: string;
|
|
3845
|
+
certificateAuthority?: string;
|
|
3846
|
+
clusterName: string;
|
|
3847
|
+
/**
|
|
3848
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3849
|
+
*/
|
|
3850
|
+
egressFilter?: string;
|
|
3851
|
+
endpoint: string;
|
|
3852
|
+
/**
|
|
3853
|
+
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
3854
|
+
*/
|
|
3855
|
+
healthcheckNamespace?: string;
|
|
3856
|
+
/**
|
|
3857
|
+
* Unique human-readable name of the Resource.
|
|
3858
|
+
*/
|
|
3859
|
+
name: string;
|
|
3860
|
+
region: string;
|
|
3861
|
+
remoteIdentityGroupId?: string;
|
|
3862
|
+
remoteIdentityHealthcheckUsername?: string;
|
|
3863
|
+
roleArn?: string;
|
|
3864
|
+
roleExternalId?: string;
|
|
3865
|
+
secretAccessKey?: string;
|
|
3866
|
+
secretStoreAccessKeyKey?: string;
|
|
3867
|
+
secretStoreAccessKeyPath?: string;
|
|
3868
|
+
secretStoreCertificateAuthorityKey?: string;
|
|
3869
|
+
secretStoreCertificateAuthorityPath?: string;
|
|
3870
|
+
/**
|
|
3871
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3872
|
+
*/
|
|
3873
|
+
secretStoreId?: string;
|
|
3874
|
+
secretStoreRoleArnKey?: string;
|
|
3875
|
+
secretStoreRoleArnPath?: string;
|
|
3876
|
+
secretStoreRoleExternalIdKey?: string;
|
|
3877
|
+
secretStoreRoleExternalIdPath?: string;
|
|
3878
|
+
secretStoreSecretAccessKeyKey?: string;
|
|
3879
|
+
secretStoreSecretAccessKeyPath?: string;
|
|
3880
|
+
/**
|
|
3881
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3882
|
+
*/
|
|
3883
|
+
subdomain: string;
|
|
3884
|
+
/**
|
|
3885
|
+
* Tags is a map of key, value pairs.
|
|
3886
|
+
*/
|
|
3887
|
+
tags?: {
|
|
3888
|
+
[key: string]: string;
|
|
3889
|
+
};
|
|
3890
|
+
}
|
|
3891
|
+
export interface ResourceAmazonEksInstanceProfile {
|
|
3892
|
+
/**
|
|
3893
|
+
* Bind interface
|
|
3894
|
+
*/
|
|
3895
|
+
bindInterface: string;
|
|
3896
|
+
certificateAuthority?: string;
|
|
3897
|
+
clusterName: string;
|
|
3898
|
+
/**
|
|
3899
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3900
|
+
*/
|
|
3901
|
+
egressFilter?: string;
|
|
3902
|
+
endpoint: string;
|
|
3903
|
+
/**
|
|
3904
|
+
* The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
|
|
3905
|
+
*/
|
|
3906
|
+
healthcheckNamespace?: string;
|
|
3907
|
+
/**
|
|
3908
|
+
* Unique human-readable name of the Resource.
|
|
3909
|
+
*/
|
|
3910
|
+
name: string;
|
|
3911
|
+
region: string;
|
|
3912
|
+
remoteIdentityGroupId?: string;
|
|
3913
|
+
remoteIdentityHealthcheckUsername?: string;
|
|
3914
|
+
roleArn?: string;
|
|
3915
|
+
roleExternalId?: string;
|
|
3916
|
+
secretStoreCertificateAuthorityKey?: string;
|
|
3917
|
+
secretStoreCertificateAuthorityPath?: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3920
|
+
*/
|
|
3921
|
+
secretStoreId?: string;
|
|
3922
|
+
secretStoreRoleArnKey?: string;
|
|
3923
|
+
secretStoreRoleArnPath?: string;
|
|
3924
|
+
secretStoreRoleExternalIdKey?: string;
|
|
3925
|
+
secretStoreRoleExternalIdPath?: string;
|
|
3926
|
+
/**
|
|
3927
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3310
3928
|
*/
|
|
3311
|
-
|
|
3929
|
+
subdomain: string;
|
|
3312
3930
|
/**
|
|
3313
3931
|
* Tags is a map of key, value pairs.
|
|
3314
3932
|
*/
|
|
@@ -3316,8 +3934,7 @@ export interface ResourceAksUserImpersonation {
|
|
|
3316
3934
|
[key: string]: string;
|
|
3317
3935
|
};
|
|
3318
3936
|
}
|
|
3319
|
-
export interface
|
|
3320
|
-
accessKey?: string;
|
|
3937
|
+
export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
3321
3938
|
/**
|
|
3322
3939
|
* Bind interface
|
|
3323
3940
|
*/
|
|
@@ -3342,9 +3959,6 @@ export interface ResourceAmazonEks {
|
|
|
3342
3959
|
remoteIdentityHealthcheckUsername?: string;
|
|
3343
3960
|
roleArn?: string;
|
|
3344
3961
|
roleExternalId?: string;
|
|
3345
|
-
secretAccessKey?: string;
|
|
3346
|
-
secretStoreAccessKeyKey?: string;
|
|
3347
|
-
secretStoreAccessKeyPath?: string;
|
|
3348
3962
|
secretStoreCertificateAuthorityKey?: string;
|
|
3349
3963
|
secretStoreCertificateAuthorityPath?: string;
|
|
3350
3964
|
/**
|
|
@@ -3355,8 +3969,10 @@ export interface ResourceAmazonEks {
|
|
|
3355
3969
|
secretStoreRoleArnPath?: string;
|
|
3356
3970
|
secretStoreRoleExternalIdKey?: string;
|
|
3357
3971
|
secretStoreRoleExternalIdPath?: string;
|
|
3358
|
-
|
|
3359
|
-
|
|
3972
|
+
/**
|
|
3973
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3974
|
+
*/
|
|
3975
|
+
subdomain: string;
|
|
3360
3976
|
/**
|
|
3361
3977
|
* Tags is a map of key, value pairs.
|
|
3362
3978
|
*/
|
|
@@ -3403,6 +4019,10 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
3403
4019
|
secretStoreRoleExternalIdPath?: string;
|
|
3404
4020
|
secretStoreSecretAccessKeyKey?: string;
|
|
3405
4021
|
secretStoreSecretAccessKeyPath?: string;
|
|
4022
|
+
/**
|
|
4023
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4024
|
+
*/
|
|
4025
|
+
subdomain: string;
|
|
3406
4026
|
/**
|
|
3407
4027
|
* Tags is a map of key, value pairs.
|
|
3408
4028
|
*/
|
|
@@ -3442,6 +4062,10 @@ export interface ResourceAmazonEs {
|
|
|
3442
4062
|
secretStoreRoleExternalIdPath?: string;
|
|
3443
4063
|
secretStoreSecretAccessKeyKey?: string;
|
|
3444
4064
|
secretStoreSecretAccessKeyPath?: string;
|
|
4065
|
+
/**
|
|
4066
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4067
|
+
*/
|
|
4068
|
+
subdomain: string;
|
|
3445
4069
|
/**
|
|
3446
4070
|
* Tags is a map of key, value pairs.
|
|
3447
4071
|
*/
|
|
@@ -3474,6 +4098,10 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
3474
4098
|
secretStorePasswordPath?: string;
|
|
3475
4099
|
secretStoreUsernameKey?: string;
|
|
3476
4100
|
secretStoreUsernamePath?: string;
|
|
4101
|
+
/**
|
|
4102
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4103
|
+
*/
|
|
4104
|
+
subdomain: string;
|
|
3477
4105
|
/**
|
|
3478
4106
|
* Tags is a map of key, value pairs.
|
|
3479
4107
|
*/
|
|
@@ -3515,6 +4143,10 @@ export interface ResourceAthena {
|
|
|
3515
4143
|
secretStoreRoleExternalIdPath?: string;
|
|
3516
4144
|
secretStoreSecretAccessKeyKey?: string;
|
|
3517
4145
|
secretStoreSecretAccessKeyPath?: string;
|
|
4146
|
+
/**
|
|
4147
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4148
|
+
*/
|
|
4149
|
+
subdomain: string;
|
|
3518
4150
|
/**
|
|
3519
4151
|
* Tags is a map of key, value pairs.
|
|
3520
4152
|
*/
|
|
@@ -3548,6 +4180,10 @@ export interface ResourceAuroraMysql {
|
|
|
3548
4180
|
secretStorePasswordPath?: string;
|
|
3549
4181
|
secretStoreUsernameKey?: string;
|
|
3550
4182
|
secretStoreUsernamePath?: string;
|
|
4183
|
+
/**
|
|
4184
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4185
|
+
*/
|
|
4186
|
+
subdomain: string;
|
|
3551
4187
|
/**
|
|
3552
4188
|
* Tags is a map of key, value pairs.
|
|
3553
4189
|
*/
|
|
@@ -3583,6 +4219,10 @@ export interface ResourceAuroraPostgres {
|
|
|
3583
4219
|
secretStorePasswordPath?: string;
|
|
3584
4220
|
secretStoreUsernameKey?: string;
|
|
3585
4221
|
secretStoreUsernamePath?: string;
|
|
4222
|
+
/**
|
|
4223
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4224
|
+
*/
|
|
4225
|
+
subdomain: string;
|
|
3586
4226
|
/**
|
|
3587
4227
|
* Tags is a map of key, value pairs.
|
|
3588
4228
|
*/
|
|
@@ -3657,6 +4297,9 @@ export interface ResourceAwsConsole {
|
|
|
3657
4297
|
secretStoreRoleExternalIdKey?: string;
|
|
3658
4298
|
secretStoreRoleExternalIdPath?: string;
|
|
3659
4299
|
sessionExpiry?: number;
|
|
4300
|
+
/**
|
|
4301
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4302
|
+
*/
|
|
3660
4303
|
subdomain: string;
|
|
3661
4304
|
/**
|
|
3662
4305
|
* Tags is a map of key, value pairs.
|
|
@@ -3699,6 +4342,9 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
3699
4342
|
secretStoreSecretAccessKeyKey?: string;
|
|
3700
4343
|
secretStoreSecretAccessKeyPath?: string;
|
|
3701
4344
|
sessionExpiry?: number;
|
|
4345
|
+
/**
|
|
4346
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4347
|
+
*/
|
|
3702
4348
|
subdomain: string;
|
|
3703
4349
|
/**
|
|
3704
4350
|
* Tags is a map of key, value pairs.
|
|
@@ -3731,7 +4377,7 @@ export interface ResourceAzure {
|
|
|
3731
4377
|
secretStorePasswordKey?: string;
|
|
3732
4378
|
secretStorePasswordPath?: string;
|
|
3733
4379
|
/**
|
|
3734
|
-
* *
|
|
4380
|
+
* * azure_mysql:
|
|
3735
4381
|
*/
|
|
3736
4382
|
secretStoreTenantIdKey?: string;
|
|
3737
4383
|
secretStoreTenantIdPath?: string;
|
|
@@ -3767,7 +4413,7 @@ export interface ResourceAzureCertificate {
|
|
|
3767
4413
|
*/
|
|
3768
4414
|
secretStoreId?: string;
|
|
3769
4415
|
/**
|
|
3770
|
-
* *
|
|
4416
|
+
* * azure_mysql:
|
|
3771
4417
|
*/
|
|
3772
4418
|
secretStoreTenantIdKey?: string;
|
|
3773
4419
|
secretStoreTenantIdPath?: string;
|
|
@@ -3779,6 +4425,44 @@ export interface ResourceAzureCertificate {
|
|
|
3779
4425
|
};
|
|
3780
4426
|
tenantId?: string;
|
|
3781
4427
|
}
|
|
4428
|
+
export interface ResourceAzureMysql {
|
|
4429
|
+
/**
|
|
4430
|
+
* Bind interface
|
|
4431
|
+
*/
|
|
4432
|
+
bindInterface: string;
|
|
4433
|
+
database: string;
|
|
4434
|
+
/**
|
|
4435
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
4436
|
+
*/
|
|
4437
|
+
egressFilter?: string;
|
|
4438
|
+
hostname: string;
|
|
4439
|
+
/**
|
|
4440
|
+
* Unique human-readable name of the Resource.
|
|
4441
|
+
*/
|
|
4442
|
+
name: string;
|
|
4443
|
+
password?: string;
|
|
4444
|
+
port?: number;
|
|
4445
|
+
portOverride: number;
|
|
4446
|
+
/**
|
|
4447
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
4448
|
+
*/
|
|
4449
|
+
secretStoreId?: string;
|
|
4450
|
+
secretStorePasswordKey?: string;
|
|
4451
|
+
secretStorePasswordPath?: string;
|
|
4452
|
+
secretStoreUsernameKey?: string;
|
|
4453
|
+
secretStoreUsernamePath?: string;
|
|
4454
|
+
/**
|
|
4455
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4456
|
+
*/
|
|
4457
|
+
subdomain: string;
|
|
4458
|
+
/**
|
|
4459
|
+
* Tags is a map of key, value pairs.
|
|
4460
|
+
*/
|
|
4461
|
+
tags?: {
|
|
4462
|
+
[key: string]: string;
|
|
4463
|
+
};
|
|
4464
|
+
username?: string;
|
|
4465
|
+
}
|
|
3782
4466
|
export interface ResourceAzurePostgres {
|
|
3783
4467
|
/**
|
|
3784
4468
|
* Bind interface
|
|
@@ -3806,6 +4490,10 @@ export interface ResourceAzurePostgres {
|
|
|
3806
4490
|
secretStorePasswordPath?: string;
|
|
3807
4491
|
secretStoreUsernameKey?: string;
|
|
3808
4492
|
secretStoreUsernamePath?: string;
|
|
4493
|
+
/**
|
|
4494
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4495
|
+
*/
|
|
4496
|
+
subdomain: string;
|
|
3809
4497
|
/**
|
|
3810
4498
|
* Tags is a map of key, value pairs.
|
|
3811
4499
|
*/
|
|
@@ -3837,6 +4525,10 @@ export interface ResourceBigQuery {
|
|
|
3837
4525
|
secretStoreId?: string;
|
|
3838
4526
|
secretStorePrivateKeyKey?: string;
|
|
3839
4527
|
secretStorePrivateKeyPath?: string;
|
|
4528
|
+
/**
|
|
4529
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4530
|
+
*/
|
|
4531
|
+
subdomain: string;
|
|
3840
4532
|
/**
|
|
3841
4533
|
* Tags is a map of key, value pairs.
|
|
3842
4534
|
*/
|
|
@@ -3870,6 +4562,10 @@ export interface ResourceCassandra {
|
|
|
3870
4562
|
secretStorePasswordPath?: string;
|
|
3871
4563
|
secretStoreUsernameKey?: string;
|
|
3872
4564
|
secretStoreUsernamePath?: string;
|
|
4565
|
+
/**
|
|
4566
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4567
|
+
*/
|
|
4568
|
+
subdomain: string;
|
|
3873
4569
|
/**
|
|
3874
4570
|
* Tags is a map of key, value pairs.
|
|
3875
4571
|
*/
|
|
@@ -3906,6 +4602,10 @@ export interface ResourceCitus {
|
|
|
3906
4602
|
secretStorePasswordPath?: string;
|
|
3907
4603
|
secretStoreUsernameKey?: string;
|
|
3908
4604
|
secretStoreUsernamePath?: string;
|
|
4605
|
+
/**
|
|
4606
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4607
|
+
*/
|
|
4608
|
+
subdomain: string;
|
|
3909
4609
|
/**
|
|
3910
4610
|
* Tags is a map of key, value pairs.
|
|
3911
4611
|
*/
|
|
@@ -3940,6 +4640,10 @@ export interface ResourceClustrix {
|
|
|
3940
4640
|
secretStorePasswordPath?: string;
|
|
3941
4641
|
secretStoreUsernameKey?: string;
|
|
3942
4642
|
secretStoreUsernamePath?: string;
|
|
4643
|
+
/**
|
|
4644
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4645
|
+
*/
|
|
4646
|
+
subdomain: string;
|
|
3943
4647
|
/**
|
|
3944
4648
|
* Tags is a map of key, value pairs.
|
|
3945
4649
|
*/
|
|
@@ -3975,6 +4679,10 @@ export interface ResourceCockroach {
|
|
|
3975
4679
|
secretStorePasswordPath?: string;
|
|
3976
4680
|
secretStoreUsernameKey?: string;
|
|
3977
4681
|
secretStoreUsernamePath?: string;
|
|
4682
|
+
/**
|
|
4683
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4684
|
+
*/
|
|
4685
|
+
subdomain: string;
|
|
3978
4686
|
/**
|
|
3979
4687
|
* Tags is a map of key, value pairs.
|
|
3980
4688
|
*/
|
|
@@ -4008,6 +4716,10 @@ export interface ResourceDb2I {
|
|
|
4008
4716
|
secretStorePasswordPath?: string;
|
|
4009
4717
|
secretStoreUsernameKey?: string;
|
|
4010
4718
|
secretStoreUsernamePath?: string;
|
|
4719
|
+
/**
|
|
4720
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4721
|
+
*/
|
|
4722
|
+
subdomain: string;
|
|
4011
4723
|
/**
|
|
4012
4724
|
* Tags is a map of key, value pairs.
|
|
4013
4725
|
*/
|
|
@@ -4043,6 +4755,10 @@ export interface ResourceDb2Luw {
|
|
|
4043
4755
|
secretStorePasswordPath?: string;
|
|
4044
4756
|
secretStoreUsernameKey?: string;
|
|
4045
4757
|
secretStoreUsernamePath?: string;
|
|
4758
|
+
/**
|
|
4759
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4760
|
+
*/
|
|
4761
|
+
subdomain: string;
|
|
4046
4762
|
/**
|
|
4047
4763
|
* Tags is a map of key, value pairs.
|
|
4048
4764
|
*/
|
|
@@ -4077,6 +4793,10 @@ export interface ResourceDocumentDbHost {
|
|
|
4077
4793
|
secretStorePasswordPath?: string;
|
|
4078
4794
|
secretStoreUsernameKey?: string;
|
|
4079
4795
|
secretStoreUsernamePath?: string;
|
|
4796
|
+
/**
|
|
4797
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4798
|
+
*/
|
|
4799
|
+
subdomain: string;
|
|
4080
4800
|
/**
|
|
4081
4801
|
* Tags is a map of key, value pairs.
|
|
4082
4802
|
*/
|
|
@@ -4112,6 +4832,10 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
4112
4832
|
secretStorePasswordPath?: string;
|
|
4113
4833
|
secretStoreUsernameKey?: string;
|
|
4114
4834
|
secretStoreUsernamePath?: string;
|
|
4835
|
+
/**
|
|
4836
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4837
|
+
*/
|
|
4838
|
+
subdomain: string;
|
|
4115
4839
|
/**
|
|
4116
4840
|
* Tags is a map of key, value pairs.
|
|
4117
4841
|
*/
|
|
@@ -4145,6 +4869,10 @@ export interface ResourceDruid {
|
|
|
4145
4869
|
secretStorePasswordPath?: string;
|
|
4146
4870
|
secretStoreUsernameKey?: string;
|
|
4147
4871
|
secretStoreUsernamePath?: string;
|
|
4872
|
+
/**
|
|
4873
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4874
|
+
*/
|
|
4875
|
+
subdomain: string;
|
|
4148
4876
|
/**
|
|
4149
4877
|
* Tags is a map of key, value pairs.
|
|
4150
4878
|
*/
|
|
@@ -4185,6 +4913,10 @@ export interface ResourceDynamoDb {
|
|
|
4185
4913
|
secretStoreRoleExternalIdPath?: string;
|
|
4186
4914
|
secretStoreSecretAccessKeyKey?: string;
|
|
4187
4915
|
secretStoreSecretAccessKeyPath?: string;
|
|
4916
|
+
/**
|
|
4917
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4918
|
+
*/
|
|
4919
|
+
subdomain: string;
|
|
4188
4920
|
/**
|
|
4189
4921
|
* Tags is a map of key, value pairs.
|
|
4190
4922
|
*/
|
|
@@ -4217,6 +4949,10 @@ export interface ResourceElastic {
|
|
|
4217
4949
|
secretStorePasswordPath?: string;
|
|
4218
4950
|
secretStoreUsernameKey?: string;
|
|
4219
4951
|
secretStoreUsernamePath?: string;
|
|
4952
|
+
/**
|
|
4953
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4954
|
+
*/
|
|
4955
|
+
subdomain: string;
|
|
4220
4956
|
/**
|
|
4221
4957
|
* Tags is a map of key, value pairs.
|
|
4222
4958
|
*/
|
|
@@ -4249,6 +4985,12 @@ export interface ResourceElasticacheRedis {
|
|
|
4249
4985
|
secretStoreId?: string;
|
|
4250
4986
|
secretStorePasswordKey?: string;
|
|
4251
4987
|
secretStorePasswordPath?: string;
|
|
4988
|
+
secretStoreUsernameKey?: string;
|
|
4989
|
+
secretStoreUsernamePath?: string;
|
|
4990
|
+
/**
|
|
4991
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
4992
|
+
*/
|
|
4993
|
+
subdomain: string;
|
|
4252
4994
|
/**
|
|
4253
4995
|
* Tags is a map of key, value pairs.
|
|
4254
4996
|
*/
|
|
@@ -4256,6 +4998,7 @@ export interface ResourceElasticacheRedis {
|
|
|
4256
4998
|
[key: string]: string;
|
|
4257
4999
|
};
|
|
4258
5000
|
tlsRequired?: boolean;
|
|
5001
|
+
username?: string;
|
|
4259
5002
|
}
|
|
4260
5003
|
export interface ResourceGcp {
|
|
4261
5004
|
/**
|
|
@@ -4315,6 +5058,10 @@ export interface ResourceGoogleGke {
|
|
|
4315
5058
|
secretStoreServiceAccountKeyKey?: string;
|
|
4316
5059
|
secretStoreServiceAccountKeyPath?: string;
|
|
4317
5060
|
serviceAccountKey?: string;
|
|
5061
|
+
/**
|
|
5062
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5063
|
+
*/
|
|
5064
|
+
subdomain: string;
|
|
4318
5065
|
/**
|
|
4319
5066
|
* Tags is a map of key, value pairs.
|
|
4320
5067
|
*/
|
|
@@ -4350,6 +5097,10 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
4350
5097
|
secretStoreServiceAccountKeyKey?: string;
|
|
4351
5098
|
secretStoreServiceAccountKeyPath?: string;
|
|
4352
5099
|
serviceAccountKey?: string;
|
|
5100
|
+
/**
|
|
5101
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5102
|
+
*/
|
|
5103
|
+
subdomain: string;
|
|
4353
5104
|
/**
|
|
4354
5105
|
* Tags is a map of key, value pairs.
|
|
4355
5106
|
*/
|
|
@@ -4384,6 +5135,10 @@ export interface ResourceGreenplum {
|
|
|
4384
5135
|
secretStorePasswordPath?: string;
|
|
4385
5136
|
secretStoreUsernameKey?: string;
|
|
4386
5137
|
secretStoreUsernamePath?: string;
|
|
5138
|
+
/**
|
|
5139
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5140
|
+
*/
|
|
5141
|
+
subdomain: string;
|
|
4387
5142
|
/**
|
|
4388
5143
|
* Tags is a map of key, value pairs.
|
|
4389
5144
|
*/
|
|
@@ -4416,6 +5171,9 @@ export interface ResourceHttpAuth {
|
|
|
4416
5171
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4417
5172
|
*/
|
|
4418
5173
|
secretStoreId?: string;
|
|
5174
|
+
/**
|
|
5175
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5176
|
+
*/
|
|
4419
5177
|
subdomain: string;
|
|
4420
5178
|
/**
|
|
4421
5179
|
* Tags is a map of key, value pairs.
|
|
@@ -4454,6 +5212,9 @@ export interface ResourceHttpBasicAuth {
|
|
|
4454
5212
|
secretStorePasswordPath?: string;
|
|
4455
5213
|
secretStoreUsernameKey?: string;
|
|
4456
5214
|
secretStoreUsernamePath?: string;
|
|
5215
|
+
/**
|
|
5216
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5217
|
+
*/
|
|
4457
5218
|
subdomain: string;
|
|
4458
5219
|
/**
|
|
4459
5220
|
* Tags is a map of key, value pairs.
|
|
@@ -4488,6 +5249,9 @@ export interface ResourceHttpNoAuth {
|
|
|
4488
5249
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4489
5250
|
*/
|
|
4490
5251
|
secretStoreId?: string;
|
|
5252
|
+
/**
|
|
5253
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5254
|
+
*/
|
|
4491
5255
|
subdomain: string;
|
|
4492
5256
|
/**
|
|
4493
5257
|
* Tags is a map of key, value pairs.
|
|
@@ -4535,6 +5299,10 @@ export interface ResourceKubernetes {
|
|
|
4535
5299
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4536
5300
|
*/
|
|
4537
5301
|
secretStoreId?: string;
|
|
5302
|
+
/**
|
|
5303
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5304
|
+
*/
|
|
5305
|
+
subdomain: string;
|
|
4538
5306
|
/**
|
|
4539
5307
|
* Tags is a map of key, value pairs.
|
|
4540
5308
|
*/
|
|
@@ -4571,6 +5339,10 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
4571
5339
|
secretStorePasswordPath?: string;
|
|
4572
5340
|
secretStoreUsernameKey?: string;
|
|
4573
5341
|
secretStoreUsernamePath?: string;
|
|
5342
|
+
/**
|
|
5343
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5344
|
+
*/
|
|
5345
|
+
subdomain: string;
|
|
4574
5346
|
/**
|
|
4575
5347
|
* Tags is a map of key, value pairs.
|
|
4576
5348
|
*/
|
|
@@ -4610,6 +5382,10 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
4610
5382
|
*/
|
|
4611
5383
|
secretStoreTokenKey?: string;
|
|
4612
5384
|
secretStoreTokenPath?: string;
|
|
5385
|
+
/**
|
|
5386
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5387
|
+
*/
|
|
5388
|
+
subdomain: string;
|
|
4613
5389
|
/**
|
|
4614
5390
|
* Tags is a map of key, value pairs.
|
|
4615
5391
|
*/
|
|
@@ -4647,6 +5423,10 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
4647
5423
|
*/
|
|
4648
5424
|
secretStoreTokenKey?: string;
|
|
4649
5425
|
secretStoreTokenPath?: string;
|
|
5426
|
+
/**
|
|
5427
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5428
|
+
*/
|
|
5429
|
+
subdomain: string;
|
|
4650
5430
|
/**
|
|
4651
5431
|
* Tags is a map of key, value pairs.
|
|
4652
5432
|
*/
|
|
@@ -4688,6 +5468,10 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
4688
5468
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4689
5469
|
*/
|
|
4690
5470
|
secretStoreId?: string;
|
|
5471
|
+
/**
|
|
5472
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5473
|
+
*/
|
|
5474
|
+
subdomain: string;
|
|
4691
5475
|
/**
|
|
4692
5476
|
* Tags is a map of key, value pairs.
|
|
4693
5477
|
*/
|
|
@@ -4721,6 +5505,10 @@ export interface ResourceMaria {
|
|
|
4721
5505
|
secretStorePasswordPath?: string;
|
|
4722
5506
|
secretStoreUsernameKey?: string;
|
|
4723
5507
|
secretStoreUsernamePath?: string;
|
|
5508
|
+
/**
|
|
5509
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5510
|
+
*/
|
|
5511
|
+
subdomain: string;
|
|
4724
5512
|
/**
|
|
4725
5513
|
* Tags is a map of key, value pairs.
|
|
4726
5514
|
*/
|
|
@@ -4749,6 +5537,10 @@ export interface ResourceMemcached {
|
|
|
4749
5537
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4750
5538
|
*/
|
|
4751
5539
|
secretStoreId?: string;
|
|
5540
|
+
/**
|
|
5541
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5542
|
+
*/
|
|
5543
|
+
subdomain: string;
|
|
4752
5544
|
/**
|
|
4753
5545
|
* Tags is a map of key, value pairs.
|
|
4754
5546
|
*/
|
|
@@ -4782,6 +5574,10 @@ export interface ResourceMemsql {
|
|
|
4782
5574
|
secretStorePasswordPath?: string;
|
|
4783
5575
|
secretStoreUsernameKey?: string;
|
|
4784
5576
|
secretStoreUsernamePath?: string;
|
|
5577
|
+
/**
|
|
5578
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5579
|
+
*/
|
|
5580
|
+
subdomain: string;
|
|
4785
5581
|
/**
|
|
4786
5582
|
* Tags is a map of key, value pairs.
|
|
4787
5583
|
*/
|
|
@@ -4816,6 +5612,10 @@ export interface ResourceMongoHost {
|
|
|
4816
5612
|
secretStorePasswordPath?: string;
|
|
4817
5613
|
secretStoreUsernameKey?: string;
|
|
4818
5614
|
secretStoreUsernamePath?: string;
|
|
5615
|
+
/**
|
|
5616
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5617
|
+
*/
|
|
5618
|
+
subdomain: string;
|
|
4819
5619
|
/**
|
|
4820
5620
|
* Tags is a map of key, value pairs.
|
|
4821
5621
|
*/
|
|
@@ -4852,6 +5652,10 @@ export interface ResourceMongoLegacyHost {
|
|
|
4852
5652
|
secretStorePasswordPath?: string;
|
|
4853
5653
|
secretStoreUsernameKey?: string;
|
|
4854
5654
|
secretStoreUsernamePath?: string;
|
|
5655
|
+
/**
|
|
5656
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5657
|
+
*/
|
|
5658
|
+
subdomain: string;
|
|
4855
5659
|
/**
|
|
4856
5660
|
* Tags is a map of key, value pairs.
|
|
4857
5661
|
*/
|
|
@@ -4889,6 +5693,10 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
4889
5693
|
secretStorePasswordPath?: string;
|
|
4890
5694
|
secretStoreUsernameKey?: string;
|
|
4891
5695
|
secretStoreUsernamePath?: string;
|
|
5696
|
+
/**
|
|
5697
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5698
|
+
*/
|
|
5699
|
+
subdomain: string;
|
|
4892
5700
|
/**
|
|
4893
5701
|
* Tags is a map of key, value pairs.
|
|
4894
5702
|
*/
|
|
@@ -4926,6 +5734,10 @@ export interface ResourceMongoReplicaSet {
|
|
|
4926
5734
|
secretStorePasswordPath?: string;
|
|
4927
5735
|
secretStoreUsernameKey?: string;
|
|
4928
5736
|
secretStoreUsernamePath?: string;
|
|
5737
|
+
/**
|
|
5738
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5739
|
+
*/
|
|
5740
|
+
subdomain: string;
|
|
4929
5741
|
/**
|
|
4930
5742
|
* Tags is a map of key, value pairs.
|
|
4931
5743
|
*/
|
|
@@ -4960,6 +5772,10 @@ export interface ResourceMongoShardedCluster {
|
|
|
4960
5772
|
secretStorePasswordPath?: string;
|
|
4961
5773
|
secretStoreUsernameKey?: string;
|
|
4962
5774
|
secretStoreUsernamePath?: string;
|
|
5775
|
+
/**
|
|
5776
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5777
|
+
*/
|
|
5778
|
+
subdomain: string;
|
|
4963
5779
|
/**
|
|
4964
5780
|
* Tags is a map of key, value pairs.
|
|
4965
5781
|
*/
|
|
@@ -5005,6 +5821,10 @@ export interface ResourceMtlsMysql {
|
|
|
5005
5821
|
secretStoreUsernameKey?: string;
|
|
5006
5822
|
secretStoreUsernamePath?: string;
|
|
5007
5823
|
serverName?: string;
|
|
5824
|
+
/**
|
|
5825
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5826
|
+
*/
|
|
5827
|
+
subdomain: string;
|
|
5008
5828
|
/**
|
|
5009
5829
|
* Tags is a map of key, value pairs.
|
|
5010
5830
|
*/
|
|
@@ -5050,6 +5870,10 @@ export interface ResourceMtlsPostgres {
|
|
|
5050
5870
|
secretStoreUsernameKey?: string;
|
|
5051
5871
|
secretStoreUsernamePath?: string;
|
|
5052
5872
|
serverName?: string;
|
|
5873
|
+
/**
|
|
5874
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5875
|
+
*/
|
|
5876
|
+
subdomain: string;
|
|
5053
5877
|
/**
|
|
5054
5878
|
* Tags is a map of key, value pairs.
|
|
5055
5879
|
*/
|
|
@@ -5084,6 +5908,10 @@ export interface ResourceMysql {
|
|
|
5084
5908
|
secretStorePasswordPath?: string;
|
|
5085
5909
|
secretStoreUsernameKey?: string;
|
|
5086
5910
|
secretStoreUsernamePath?: string;
|
|
5911
|
+
/**
|
|
5912
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5913
|
+
*/
|
|
5914
|
+
subdomain: string;
|
|
5087
5915
|
/**
|
|
5088
5916
|
* Tags is a map of key, value pairs.
|
|
5089
5917
|
*/
|
|
@@ -5112,6 +5940,10 @@ export interface ResourceNeptune {
|
|
|
5112
5940
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5113
5941
|
*/
|
|
5114
5942
|
secretStoreId?: string;
|
|
5943
|
+
/**
|
|
5944
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5945
|
+
*/
|
|
5946
|
+
subdomain: string;
|
|
5115
5947
|
/**
|
|
5116
5948
|
* Tags is a map of key, value pairs.
|
|
5117
5949
|
*/
|
|
@@ -5152,6 +5984,10 @@ export interface ResourceNeptuneIam {
|
|
|
5152
5984
|
secretStoreRoleExternalIdPath?: string;
|
|
5153
5985
|
secretStoreSecretAccessKeyKey?: string;
|
|
5154
5986
|
secretStoreSecretAccessKeyPath?: string;
|
|
5987
|
+
/**
|
|
5988
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5989
|
+
*/
|
|
5990
|
+
subdomain: string;
|
|
5155
5991
|
/**
|
|
5156
5992
|
* Tags is a map of key, value pairs.
|
|
5157
5993
|
*/
|
|
@@ -5185,6 +6021,10 @@ export interface ResourceOracle {
|
|
|
5185
6021
|
secretStorePasswordPath?: string;
|
|
5186
6022
|
secretStoreUsernameKey?: string;
|
|
5187
6023
|
secretStoreUsernamePath?: string;
|
|
6024
|
+
/**
|
|
6025
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6026
|
+
*/
|
|
6027
|
+
subdomain: string;
|
|
5188
6028
|
/**
|
|
5189
6029
|
* Tags is a map of key, value pairs.
|
|
5190
6030
|
*/
|
|
@@ -5221,6 +6061,10 @@ export interface ResourcePostgres {
|
|
|
5221
6061
|
secretStorePasswordPath?: string;
|
|
5222
6062
|
secretStoreUsernameKey?: string;
|
|
5223
6063
|
secretStoreUsernamePath?: string;
|
|
6064
|
+
/**
|
|
6065
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6066
|
+
*/
|
|
6067
|
+
subdomain: string;
|
|
5224
6068
|
/**
|
|
5225
6069
|
* Tags is a map of key, value pairs.
|
|
5226
6070
|
*/
|
|
@@ -5253,6 +6097,10 @@ export interface ResourcePresto {
|
|
|
5253
6097
|
secretStoreId?: string;
|
|
5254
6098
|
secretStorePasswordKey?: string;
|
|
5255
6099
|
secretStorePasswordPath?: string;
|
|
6100
|
+
/**
|
|
6101
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6102
|
+
*/
|
|
6103
|
+
subdomain: string;
|
|
5256
6104
|
/**
|
|
5257
6105
|
* Tags is a map of key, value pairs.
|
|
5258
6106
|
*/
|
|
@@ -5287,6 +6135,10 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
5287
6135
|
secretStorePasswordPath?: string;
|
|
5288
6136
|
secretStoreUsernameKey?: string;
|
|
5289
6137
|
secretStoreUsernamePath?: string;
|
|
6138
|
+
/**
|
|
6139
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6140
|
+
*/
|
|
6141
|
+
subdomain: string;
|
|
5290
6142
|
/**
|
|
5291
6143
|
* Tags is a map of key, value pairs.
|
|
5292
6144
|
*/
|
|
@@ -5316,6 +6168,10 @@ export interface ResourceRawTcp {
|
|
|
5316
6168
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5317
6169
|
*/
|
|
5318
6170
|
secretStoreId?: string;
|
|
6171
|
+
/**
|
|
6172
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6173
|
+
*/
|
|
6174
|
+
subdomain: string;
|
|
5319
6175
|
/**
|
|
5320
6176
|
* Tags is a map of key, value pairs.
|
|
5321
6177
|
*/
|
|
@@ -5339,7 +6195,7 @@ export interface ResourceRdp {
|
|
|
5339
6195
|
*/
|
|
5340
6196
|
name: string;
|
|
5341
6197
|
password?: string;
|
|
5342
|
-
port
|
|
6198
|
+
port?: number;
|
|
5343
6199
|
portOverride: number;
|
|
5344
6200
|
/**
|
|
5345
6201
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -5349,6 +6205,10 @@ export interface ResourceRdp {
|
|
|
5349
6205
|
secretStorePasswordPath?: string;
|
|
5350
6206
|
secretStoreUsernameKey?: string;
|
|
5351
6207
|
secretStoreUsernamePath?: string;
|
|
6208
|
+
/**
|
|
6209
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6210
|
+
*/
|
|
6211
|
+
subdomain: string;
|
|
5352
6212
|
/**
|
|
5353
6213
|
* Tags is a map of key, value pairs.
|
|
5354
6214
|
*/
|
|
@@ -5380,12 +6240,20 @@ export interface ResourceRedis {
|
|
|
5380
6240
|
secretStoreId?: string;
|
|
5381
6241
|
secretStorePasswordKey?: string;
|
|
5382
6242
|
secretStorePasswordPath?: string;
|
|
6243
|
+
secretStoreUsernameKey?: string;
|
|
6244
|
+
secretStoreUsernamePath?: string;
|
|
6245
|
+
/**
|
|
6246
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6247
|
+
*/
|
|
6248
|
+
subdomain: string;
|
|
5383
6249
|
/**
|
|
5384
6250
|
* Tags is a map of key, value pairs.
|
|
5385
6251
|
*/
|
|
5386
6252
|
tags?: {
|
|
5387
6253
|
[key: string]: string;
|
|
5388
6254
|
};
|
|
6255
|
+
tlsRequired?: boolean;
|
|
6256
|
+
username?: string;
|
|
5389
6257
|
}
|
|
5390
6258
|
export interface ResourceRedshift {
|
|
5391
6259
|
/**
|
|
@@ -5414,6 +6282,10 @@ export interface ResourceRedshift {
|
|
|
5414
6282
|
secretStorePasswordPath?: string;
|
|
5415
6283
|
secretStoreUsernameKey?: string;
|
|
5416
6284
|
secretStoreUsernamePath?: string;
|
|
6285
|
+
/**
|
|
6286
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6287
|
+
*/
|
|
6288
|
+
subdomain: string;
|
|
5417
6289
|
/**
|
|
5418
6290
|
* Tags is a map of key, value pairs.
|
|
5419
6291
|
*/
|
|
@@ -5448,6 +6320,10 @@ export interface ResourceSingleStore {
|
|
|
5448
6320
|
secretStorePasswordPath?: string;
|
|
5449
6321
|
secretStoreUsernameKey?: string;
|
|
5450
6322
|
secretStoreUsernamePath?: string;
|
|
6323
|
+
/**
|
|
6324
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6325
|
+
*/
|
|
6326
|
+
subdomain: string;
|
|
5451
6327
|
/**
|
|
5452
6328
|
* Tags is a map of key, value pairs.
|
|
5453
6329
|
*/
|
|
@@ -5482,6 +6358,10 @@ export interface ResourceSnowflake {
|
|
|
5482
6358
|
secretStorePasswordPath?: string;
|
|
5483
6359
|
secretStoreUsernameKey?: string;
|
|
5484
6360
|
secretStoreUsernamePath?: string;
|
|
6361
|
+
/**
|
|
6362
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6363
|
+
*/
|
|
6364
|
+
subdomain: string;
|
|
5485
6365
|
/**
|
|
5486
6366
|
* Tags is a map of key, value pairs.
|
|
5487
6367
|
*/
|
|
@@ -5512,6 +6392,9 @@ export interface ResourceSnowsight {
|
|
|
5512
6392
|
secretStoreId?: string;
|
|
5513
6393
|
secretStoreSamlMetadataKey?: string;
|
|
5514
6394
|
secretStoreSamlMetadataPath?: string;
|
|
6395
|
+
/**
|
|
6396
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6397
|
+
*/
|
|
5515
6398
|
subdomain: string;
|
|
5516
6399
|
/**
|
|
5517
6400
|
* Tags is a map of key, value pairs.
|
|
@@ -5548,6 +6431,10 @@ export interface ResourceSqlServer {
|
|
|
5548
6431
|
secretStorePasswordPath?: string;
|
|
5549
6432
|
secretStoreUsernameKey?: string;
|
|
5550
6433
|
secretStoreUsernamePath?: string;
|
|
6434
|
+
/**
|
|
6435
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6436
|
+
*/
|
|
6437
|
+
subdomain: string;
|
|
5551
6438
|
/**
|
|
5552
6439
|
* Tags is a map of key, value pairs.
|
|
5553
6440
|
*/
|
|
@@ -5582,6 +6469,10 @@ export interface ResourceSsh {
|
|
|
5582
6469
|
secretStoreId?: string;
|
|
5583
6470
|
secretStoreUsernameKey?: string;
|
|
5584
6471
|
secretStoreUsernamePath?: string;
|
|
6472
|
+
/**
|
|
6473
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6474
|
+
*/
|
|
6475
|
+
subdomain: string;
|
|
5585
6476
|
/**
|
|
5586
6477
|
* Tags is a map of key, value pairs.
|
|
5587
6478
|
*/
|
|
@@ -5617,6 +6508,10 @@ export interface ResourceSshCert {
|
|
|
5617
6508
|
secretStoreId?: string;
|
|
5618
6509
|
secretStoreUsernameKey?: string;
|
|
5619
6510
|
secretStoreUsernamePath?: string;
|
|
6511
|
+
/**
|
|
6512
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6513
|
+
*/
|
|
6514
|
+
subdomain: string;
|
|
5620
6515
|
/**
|
|
5621
6516
|
* Tags is a map of key, value pairs.
|
|
5622
6517
|
*/
|
|
@@ -5652,6 +6547,10 @@ export interface ResourceSshCustomerKey {
|
|
|
5652
6547
|
secretStorePrivateKeyPath?: string;
|
|
5653
6548
|
secretStoreUsernameKey?: string;
|
|
5654
6549
|
secretStoreUsernamePath?: string;
|
|
6550
|
+
/**
|
|
6551
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6552
|
+
*/
|
|
6553
|
+
subdomain: string;
|
|
5655
6554
|
/**
|
|
5656
6555
|
* Tags is a map of key, value pairs.
|
|
5657
6556
|
*/
|
|
@@ -5685,6 +6584,10 @@ export interface ResourceSybase {
|
|
|
5685
6584
|
secretStorePasswordPath?: string;
|
|
5686
6585
|
secretStoreUsernameKey?: string;
|
|
5687
6586
|
secretStoreUsernamePath?: string;
|
|
6587
|
+
/**
|
|
6588
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6589
|
+
*/
|
|
6590
|
+
subdomain: string;
|
|
5688
6591
|
/**
|
|
5689
6592
|
* Tags is a map of key, value pairs.
|
|
5690
6593
|
*/
|
|
@@ -5718,6 +6621,10 @@ export interface ResourceSybaseIq {
|
|
|
5718
6621
|
secretStorePasswordPath?: string;
|
|
5719
6622
|
secretStoreUsernameKey?: string;
|
|
5720
6623
|
secretStoreUsernamePath?: string;
|
|
6624
|
+
/**
|
|
6625
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6626
|
+
*/
|
|
6627
|
+
subdomain: string;
|
|
5721
6628
|
/**
|
|
5722
6629
|
* Tags is a map of key, value pairs.
|
|
5723
6630
|
*/
|
|
@@ -5751,6 +6658,10 @@ export interface ResourceTeradata {
|
|
|
5751
6658
|
secretStorePasswordPath?: string;
|
|
5752
6659
|
secretStoreUsernameKey?: string;
|
|
5753
6660
|
secretStoreUsernamePath?: string;
|
|
6661
|
+
/**
|
|
6662
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
6663
|
+
*/
|
|
6664
|
+
subdomain: string;
|
|
5754
6665
|
/**
|
|
5755
6666
|
* Tags is a map of key, value pairs.
|
|
5756
6667
|
*/
|
|
@@ -5801,6 +6712,19 @@ export interface SecretStoreCyberarkConjur {
|
|
|
5801
6712
|
[key: string]: string;
|
|
5802
6713
|
};
|
|
5803
6714
|
}
|
|
6715
|
+
export interface SecretStoreCyberarkPam {
|
|
6716
|
+
appUrl: string;
|
|
6717
|
+
/**
|
|
6718
|
+
* Unique human-readable name of the SecretStore.
|
|
6719
|
+
*/
|
|
6720
|
+
name: string;
|
|
6721
|
+
/**
|
|
6722
|
+
* Tags is a map of key, value pairs.
|
|
6723
|
+
*/
|
|
6724
|
+
tags?: {
|
|
6725
|
+
[key: string]: string;
|
|
6726
|
+
};
|
|
6727
|
+
}
|
|
5804
6728
|
export interface SecretStoreCyberarkPamExperimental {
|
|
5805
6729
|
appUrl: string;
|
|
5806
6730
|
/**
|