@pierskarsenbarg/sdm 0.2.0 → 0.4.1
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 +30 -9
- package/resource.js +30 -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 +497 -4
- package/types/output.d.ts +1003 -10
- 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[];
|
|
@@ -253,6 +304,7 @@ export interface GetResourceResource {
|
|
|
253
304
|
redshifts: outputs.GetResourceResourceRedshift[];
|
|
254
305
|
singleStores: outputs.GetResourceResourceSingleStore[];
|
|
255
306
|
snowflakes: outputs.GetResourceResourceSnowflake[];
|
|
307
|
+
snowsights: outputs.GetResourceResourceSnowsight[];
|
|
256
308
|
sqlServers: outputs.GetResourceResourceSqlServer[];
|
|
257
309
|
sshCerts: outputs.GetResourceResourceSshCert[];
|
|
258
310
|
sshCustomerKeys: outputs.GetResourceResourceSshCustomerKey[];
|
|
@@ -294,6 +346,10 @@ export interface GetResourceResourceAk {
|
|
|
294
346
|
* ID of the secret store containing credentials for this resource, if any.
|
|
295
347
|
*/
|
|
296
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;
|
|
297
353
|
/**
|
|
298
354
|
* Tags is a map of key, value pairs.
|
|
299
355
|
*/
|
|
@@ -330,6 +386,10 @@ export interface GetResourceResourceAksBasicAuth {
|
|
|
330
386
|
* ID of the secret store containing credentials for this resource, if any.
|
|
331
387
|
*/
|
|
332
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;
|
|
333
393
|
/**
|
|
334
394
|
* Tags is a map of key, value pairs.
|
|
335
395
|
*/
|
|
@@ -368,6 +428,10 @@ export interface GetResourceResourceAksServiceAccount {
|
|
|
368
428
|
* ID of the secret store containing credentials for this resource, if any.
|
|
369
429
|
*/
|
|
370
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;
|
|
371
435
|
/**
|
|
372
436
|
* Tags is a map of key, value pairs.
|
|
373
437
|
*/
|
|
@@ -407,6 +471,10 @@ export interface GetResourceResourceAksServiceAccountUserImpersonation {
|
|
|
407
471
|
* ID of the secret store containing credentials for this resource, if any.
|
|
408
472
|
*/
|
|
409
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;
|
|
410
478
|
/**
|
|
411
479
|
* Tags is a map of key, value pairs.
|
|
412
480
|
*/
|
|
@@ -449,6 +517,10 @@ export interface GetResourceResourceAksUserImpersonation {
|
|
|
449
517
|
* ID of the secret store containing credentials for this resource, if any.
|
|
450
518
|
*/
|
|
451
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;
|
|
452
524
|
/**
|
|
453
525
|
* Tags is a map of key, value pairs.
|
|
454
526
|
*/
|
|
@@ -484,6 +556,10 @@ export interface GetResourceResourceAmazonE {
|
|
|
484
556
|
* ID of the secret store containing credentials for this resource, if any.
|
|
485
557
|
*/
|
|
486
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;
|
|
487
563
|
/**
|
|
488
564
|
* Tags is a map of key, value pairs.
|
|
489
565
|
*/
|
|
@@ -526,6 +602,98 @@ export interface GetResourceResourceAmazonEk {
|
|
|
526
602
|
* ID of the secret store containing credentials for this resource, if any.
|
|
527
603
|
*/
|
|
528
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;
|
|
529
697
|
/**
|
|
530
698
|
* Tags is a map of key, value pairs.
|
|
531
699
|
*/
|
|
@@ -566,6 +734,10 @@ export interface GetResourceResourceAmazonEksUserImpersonation {
|
|
|
566
734
|
* ID of the secret store containing credentials for this resource, if any.
|
|
567
735
|
*/
|
|
568
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;
|
|
569
741
|
/**
|
|
570
742
|
* Tags is a map of key, value pairs.
|
|
571
743
|
*/
|
|
@@ -598,6 +770,10 @@ export interface GetResourceResourceAmazonmqAmqp091 {
|
|
|
598
770
|
* ID of the secret store containing credentials for this resource, if any.
|
|
599
771
|
*/
|
|
600
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;
|
|
601
777
|
/**
|
|
602
778
|
* Tags is a map of key, value pairs.
|
|
603
779
|
*/
|
|
@@ -635,6 +811,10 @@ export interface GetResourceResourceAthena {
|
|
|
635
811
|
* ID of the secret store containing credentials for this resource, if any.
|
|
636
812
|
*/
|
|
637
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;
|
|
638
818
|
/**
|
|
639
819
|
* Tags is a map of key, value pairs.
|
|
640
820
|
*/
|
|
@@ -668,6 +848,10 @@ export interface GetResourceResourceAuroraMysql {
|
|
|
668
848
|
* ID of the secret store containing credentials for this resource, if any.
|
|
669
849
|
*/
|
|
670
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;
|
|
671
855
|
/**
|
|
672
856
|
* Tags is a map of key, value pairs.
|
|
673
857
|
*/
|
|
@@ -703,6 +887,10 @@ export interface GetResourceResourceAuroraPostgre {
|
|
|
703
887
|
* ID of the secret store containing credentials for this resource, if any.
|
|
704
888
|
*/
|
|
705
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;
|
|
706
894
|
/**
|
|
707
895
|
* Tags is a map of key, value pairs.
|
|
708
896
|
*/
|
|
@@ -773,6 +961,9 @@ export interface GetResourceResourceAwsConsole {
|
|
|
773
961
|
*/
|
|
774
962
|
secretStoreId?: string;
|
|
775
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
|
+
*/
|
|
776
967
|
subdomain?: string;
|
|
777
968
|
/**
|
|
778
969
|
* Tags is a map of key, value pairs.
|
|
@@ -811,6 +1002,9 @@ export interface GetResourceResourceAwsConsoleStaticKeyPair {
|
|
|
811
1002
|
*/
|
|
812
1003
|
secretStoreId?: string;
|
|
813
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
|
+
*/
|
|
814
1008
|
subdomain?: string;
|
|
815
1009
|
/**
|
|
816
1010
|
* Tags is a map of key, value pairs.
|
|
@@ -849,7 +1043,7 @@ export interface GetResourceResourceAzure {
|
|
|
849
1043
|
[key: string]: string;
|
|
850
1044
|
};
|
|
851
1045
|
/**
|
|
852
|
-
* *
|
|
1046
|
+
* * azure_mysql:
|
|
853
1047
|
*/
|
|
854
1048
|
tenantId?: string;
|
|
855
1049
|
}
|
|
@@ -883,10 +1077,48 @@ export interface GetResourceResourceAzureCertificate {
|
|
|
883
1077
|
[key: string]: string;
|
|
884
1078
|
};
|
|
885
1079
|
/**
|
|
886
|
-
* *
|
|
1080
|
+
* * azure_mysql:
|
|
887
1081
|
*/
|
|
888
1082
|
tenantId?: string;
|
|
889
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
|
+
}
|
|
890
1122
|
export interface GetResourceResourceAzurePostgre {
|
|
891
1123
|
/**
|
|
892
1124
|
* Bind interface
|
|
@@ -914,6 +1146,10 @@ export interface GetResourceResourceAzurePostgre {
|
|
|
914
1146
|
* ID of the secret store containing credentials for this resource, if any.
|
|
915
1147
|
*/
|
|
916
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;
|
|
917
1153
|
/**
|
|
918
1154
|
* Tags is a map of key, value pairs.
|
|
919
1155
|
*/
|
|
@@ -947,6 +1183,10 @@ export interface GetResourceResourceBigQuery {
|
|
|
947
1183
|
* ID of the secret store containing credentials for this resource, if any.
|
|
948
1184
|
*/
|
|
949
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;
|
|
950
1190
|
/**
|
|
951
1191
|
* Tags is a map of key, value pairs.
|
|
952
1192
|
*/
|
|
@@ -980,6 +1220,10 @@ export interface GetResourceResourceCassandra {
|
|
|
980
1220
|
* ID of the secret store containing credentials for this resource, if any.
|
|
981
1221
|
*/
|
|
982
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;
|
|
983
1227
|
/**
|
|
984
1228
|
* Tags is a map of key, value pairs.
|
|
985
1229
|
*/
|
|
@@ -1016,6 +1260,10 @@ export interface GetResourceResourceCitus {
|
|
|
1016
1260
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1017
1261
|
*/
|
|
1018
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;
|
|
1019
1267
|
/**
|
|
1020
1268
|
* Tags is a map of key, value pairs.
|
|
1021
1269
|
*/
|
|
@@ -1050,6 +1298,10 @@ export interface GetResourceResourceClustrix {
|
|
|
1050
1298
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1051
1299
|
*/
|
|
1052
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;
|
|
1053
1305
|
/**
|
|
1054
1306
|
* Tags is a map of key, value pairs.
|
|
1055
1307
|
*/
|
|
@@ -1085,6 +1337,10 @@ export interface GetResourceResourceCockroach {
|
|
|
1085
1337
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1086
1338
|
*/
|
|
1087
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;
|
|
1088
1344
|
/**
|
|
1089
1345
|
* Tags is a map of key, value pairs.
|
|
1090
1346
|
*/
|
|
@@ -1118,6 +1374,10 @@ export interface GetResourceResourceDb2I {
|
|
|
1118
1374
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1119
1375
|
*/
|
|
1120
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;
|
|
1121
1381
|
/**
|
|
1122
1382
|
* Tags is a map of key, value pairs.
|
|
1123
1383
|
*/
|
|
@@ -1153,6 +1413,10 @@ export interface GetResourceResourceDb2Luw {
|
|
|
1153
1413
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1154
1414
|
*/
|
|
1155
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;
|
|
1156
1420
|
/**
|
|
1157
1421
|
* Tags is a map of key, value pairs.
|
|
1158
1422
|
*/
|
|
@@ -1187,6 +1451,10 @@ export interface GetResourceResourceDocumentDbHost {
|
|
|
1187
1451
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1188
1452
|
*/
|
|
1189
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;
|
|
1190
1458
|
/**
|
|
1191
1459
|
* Tags is a map of key, value pairs.
|
|
1192
1460
|
*/
|
|
@@ -1222,6 +1490,10 @@ export interface GetResourceResourceDocumentDbReplicaSet {
|
|
|
1222
1490
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1223
1491
|
*/
|
|
1224
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;
|
|
1225
1497
|
/**
|
|
1226
1498
|
* Tags is a map of key, value pairs.
|
|
1227
1499
|
*/
|
|
@@ -1255,6 +1527,10 @@ export interface GetResourceResourceDruid {
|
|
|
1255
1527
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1256
1528
|
*/
|
|
1257
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;
|
|
1258
1534
|
/**
|
|
1259
1535
|
* Tags is a map of key, value pairs.
|
|
1260
1536
|
*/
|
|
@@ -1291,6 +1567,10 @@ export interface GetResourceResourceDynamoDb {
|
|
|
1291
1567
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1292
1568
|
*/
|
|
1293
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;
|
|
1294
1574
|
/**
|
|
1295
1575
|
* Tags is a map of key, value pairs.
|
|
1296
1576
|
*/
|
|
@@ -1323,6 +1603,10 @@ export interface GetResourceResourceElastic {
|
|
|
1323
1603
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1324
1604
|
*/
|
|
1325
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;
|
|
1326
1610
|
/**
|
|
1327
1611
|
* Tags is a map of key, value pairs.
|
|
1328
1612
|
*/
|
|
@@ -1357,6 +1641,10 @@ export interface GetResourceResourceElasticacheRedi {
|
|
|
1357
1641
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1358
1642
|
*/
|
|
1359
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;
|
|
1360
1648
|
/**
|
|
1361
1649
|
* Tags is a map of key, value pairs.
|
|
1362
1650
|
*/
|
|
@@ -1364,6 +1652,7 @@ export interface GetResourceResourceElasticacheRedi {
|
|
|
1364
1652
|
[key: string]: string;
|
|
1365
1653
|
};
|
|
1366
1654
|
tlsRequired?: boolean;
|
|
1655
|
+
username?: string;
|
|
1367
1656
|
}
|
|
1368
1657
|
export interface GetResourceResourceGcp {
|
|
1369
1658
|
/**
|
|
@@ -1425,6 +1714,10 @@ export interface GetResourceResourceGoogleGke {
|
|
|
1425
1714
|
*/
|
|
1426
1715
|
secretStoreId?: string;
|
|
1427
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;
|
|
1428
1721
|
/**
|
|
1429
1722
|
* Tags is a map of key, value pairs.
|
|
1430
1723
|
*/
|
|
@@ -1460,6 +1753,10 @@ export interface GetResourceResourceGoogleGkeUserImpersonation {
|
|
|
1460
1753
|
*/
|
|
1461
1754
|
secretStoreId?: string;
|
|
1462
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;
|
|
1463
1760
|
/**
|
|
1464
1761
|
* Tags is a map of key, value pairs.
|
|
1465
1762
|
*/
|
|
@@ -1494,6 +1791,10 @@ export interface GetResourceResourceGreenplum {
|
|
|
1494
1791
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1495
1792
|
*/
|
|
1496
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;
|
|
1497
1798
|
/**
|
|
1498
1799
|
* Tags is a map of key, value pairs.
|
|
1499
1800
|
*/
|
|
@@ -1515,6 +1816,7 @@ export interface GetResourceResourceHttpAuth {
|
|
|
1515
1816
|
egressFilter?: string;
|
|
1516
1817
|
headersBlacklist?: string;
|
|
1517
1818
|
healthcheckPath?: string;
|
|
1819
|
+
hostOverride?: string;
|
|
1518
1820
|
/**
|
|
1519
1821
|
* Unique identifier of the Resource.
|
|
1520
1822
|
*/
|
|
@@ -1527,6 +1829,9 @@ export interface GetResourceResourceHttpAuth {
|
|
|
1527
1829
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1528
1830
|
*/
|
|
1529
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
|
+
*/
|
|
1530
1835
|
subdomain?: string;
|
|
1531
1836
|
/**
|
|
1532
1837
|
* Tags is a map of key, value pairs.
|
|
@@ -1551,6 +1856,7 @@ export interface GetResourceResourceHttpBasicAuth {
|
|
|
1551
1856
|
egressFilter?: string;
|
|
1552
1857
|
headersBlacklist?: string;
|
|
1553
1858
|
healthcheckPath?: string;
|
|
1859
|
+
hostOverride?: string;
|
|
1554
1860
|
/**
|
|
1555
1861
|
* Unique identifier of the Resource.
|
|
1556
1862
|
*/
|
|
@@ -1564,6 +1870,9 @@ export interface GetResourceResourceHttpBasicAuth {
|
|
|
1564
1870
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1565
1871
|
*/
|
|
1566
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
|
+
*/
|
|
1567
1876
|
subdomain?: string;
|
|
1568
1877
|
/**
|
|
1569
1878
|
* Tags is a map of key, value pairs.
|
|
@@ -1589,6 +1898,7 @@ export interface GetResourceResourceHttpNoAuth {
|
|
|
1589
1898
|
egressFilter?: string;
|
|
1590
1899
|
headersBlacklist?: string;
|
|
1591
1900
|
healthcheckPath?: string;
|
|
1901
|
+
hostOverride?: string;
|
|
1592
1902
|
/**
|
|
1593
1903
|
* Unique identifier of the Resource.
|
|
1594
1904
|
*/
|
|
@@ -1601,6 +1911,9 @@ export interface GetResourceResourceHttpNoAuth {
|
|
|
1601
1911
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1602
1912
|
*/
|
|
1603
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
|
+
*/
|
|
1604
1917
|
subdomain?: string;
|
|
1605
1918
|
/**
|
|
1606
1919
|
* Tags is a map of key, value pairs.
|
|
@@ -1646,6 +1959,10 @@ export interface GetResourceResourceKubernete {
|
|
|
1646
1959
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1647
1960
|
*/
|
|
1648
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;
|
|
1649
1966
|
/**
|
|
1650
1967
|
* Tags is a map of key, value pairs.
|
|
1651
1968
|
*/
|
|
@@ -1682,6 +1999,10 @@ export interface GetResourceResourceKubernetesBasicAuth {
|
|
|
1682
1999
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1683
2000
|
*/
|
|
1684
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;
|
|
1685
2006
|
/**
|
|
1686
2007
|
* Tags is a map of key, value pairs.
|
|
1687
2008
|
*/
|
|
@@ -1720,6 +2041,10 @@ export interface GetResourceResourceKubernetesServiceAccount {
|
|
|
1720
2041
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1721
2042
|
*/
|
|
1722
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;
|
|
1723
2048
|
/**
|
|
1724
2049
|
* Tags is a map of key, value pairs.
|
|
1725
2050
|
*/
|
|
@@ -1759,6 +2084,10 @@ export interface GetResourceResourceKubernetesServiceAccountUserImpersonation {
|
|
|
1759
2084
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1760
2085
|
*/
|
|
1761
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;
|
|
1762
2091
|
/**
|
|
1763
2092
|
* Tags is a map of key, value pairs.
|
|
1764
2093
|
*/
|
|
@@ -1802,9 +2131,13 @@ export interface GetResourceResourceKubernetesUserImpersonation {
|
|
|
1802
2131
|
*/
|
|
1803
2132
|
secretStoreId?: string;
|
|
1804
2133
|
/**
|
|
1805
|
-
*
|
|
2134
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1806
2135
|
*/
|
|
1807
|
-
|
|
2136
|
+
subdomain?: string;
|
|
2137
|
+
/**
|
|
2138
|
+
* Tags is a map of key, value pairs.
|
|
2139
|
+
*/
|
|
2140
|
+
tags?: {
|
|
1808
2141
|
[key: string]: string;
|
|
1809
2142
|
};
|
|
1810
2143
|
}
|
|
@@ -1834,6 +2167,10 @@ export interface GetResourceResourceMaria {
|
|
|
1834
2167
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1835
2168
|
*/
|
|
1836
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;
|
|
1837
2174
|
/**
|
|
1838
2175
|
* Tags is a map of key, value pairs.
|
|
1839
2176
|
*/
|
|
@@ -1866,6 +2203,10 @@ export interface GetResourceResourceMemcached {
|
|
|
1866
2203
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1867
2204
|
*/
|
|
1868
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;
|
|
1869
2210
|
/**
|
|
1870
2211
|
* Tags is a map of key, value pairs.
|
|
1871
2212
|
*/
|
|
@@ -1899,6 +2240,10 @@ export interface GetResourceResourceMemsql {
|
|
|
1899
2240
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1900
2241
|
*/
|
|
1901
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;
|
|
1902
2247
|
/**
|
|
1903
2248
|
* Tags is a map of key, value pairs.
|
|
1904
2249
|
*/
|
|
@@ -1933,6 +2278,10 @@ export interface GetResourceResourceMongoHost {
|
|
|
1933
2278
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1934
2279
|
*/
|
|
1935
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;
|
|
1936
2285
|
/**
|
|
1937
2286
|
* Tags is a map of key, value pairs.
|
|
1938
2287
|
*/
|
|
@@ -1969,6 +2318,10 @@ export interface GetResourceResourceMongoLegacyHost {
|
|
|
1969
2318
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1970
2319
|
*/
|
|
1971
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;
|
|
1972
2325
|
/**
|
|
1973
2326
|
* Tags is a map of key, value pairs.
|
|
1974
2327
|
*/
|
|
@@ -2006,6 +2359,10 @@ export interface GetResourceResourceMongoLegacyReplicaset {
|
|
|
2006
2359
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2007
2360
|
*/
|
|
2008
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;
|
|
2009
2366
|
/**
|
|
2010
2367
|
* Tags is a map of key, value pairs.
|
|
2011
2368
|
*/
|
|
@@ -2043,6 +2400,10 @@ export interface GetResourceResourceMongoReplicaSet {
|
|
|
2043
2400
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2044
2401
|
*/
|
|
2045
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;
|
|
2046
2407
|
/**
|
|
2047
2408
|
* Tags is a map of key, value pairs.
|
|
2048
2409
|
*/
|
|
@@ -2077,6 +2438,10 @@ export interface GetResourceResourceMongoShardedCluster {
|
|
|
2077
2438
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2078
2439
|
*/
|
|
2079
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;
|
|
2080
2445
|
/**
|
|
2081
2446
|
* Tags is a map of key, value pairs.
|
|
2082
2447
|
*/
|
|
@@ -2116,6 +2481,10 @@ export interface GetResourceResourceMtlsMysql {
|
|
|
2116
2481
|
*/
|
|
2117
2482
|
secretStoreId?: string;
|
|
2118
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;
|
|
2119
2488
|
/**
|
|
2120
2489
|
* Tags is a map of key, value pairs.
|
|
2121
2490
|
*/
|
|
@@ -2155,6 +2524,10 @@ export interface GetResourceResourceMtlsPostgre {
|
|
|
2155
2524
|
*/
|
|
2156
2525
|
secretStoreId?: string;
|
|
2157
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;
|
|
2158
2531
|
/**
|
|
2159
2532
|
* Tags is a map of key, value pairs.
|
|
2160
2533
|
*/
|
|
@@ -2189,6 +2562,10 @@ export interface GetResourceResourceMysql {
|
|
|
2189
2562
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2190
2563
|
*/
|
|
2191
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;
|
|
2192
2569
|
/**
|
|
2193
2570
|
* Tags is a map of key, value pairs.
|
|
2194
2571
|
*/
|
|
@@ -2221,6 +2598,10 @@ export interface GetResourceResourceNeptune {
|
|
|
2221
2598
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2222
2599
|
*/
|
|
2223
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;
|
|
2224
2605
|
/**
|
|
2225
2606
|
* Tags is a map of key, value pairs.
|
|
2226
2607
|
*/
|
|
@@ -2257,6 +2638,10 @@ export interface GetResourceResourceNeptuneIam {
|
|
|
2257
2638
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2258
2639
|
*/
|
|
2259
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;
|
|
2260
2645
|
/**
|
|
2261
2646
|
* Tags is a map of key, value pairs.
|
|
2262
2647
|
*/
|
|
@@ -2290,6 +2675,10 @@ export interface GetResourceResourceOracle {
|
|
|
2290
2675
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2291
2676
|
*/
|
|
2292
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;
|
|
2293
2682
|
/**
|
|
2294
2683
|
* Tags is a map of key, value pairs.
|
|
2295
2684
|
*/
|
|
@@ -2326,6 +2715,10 @@ export interface GetResourceResourcePostgre {
|
|
|
2326
2715
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2327
2716
|
*/
|
|
2328
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;
|
|
2329
2722
|
/**
|
|
2330
2723
|
* Tags is a map of key, value pairs.
|
|
2331
2724
|
*/
|
|
@@ -2360,6 +2753,10 @@ export interface GetResourceResourcePresto {
|
|
|
2360
2753
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2361
2754
|
*/
|
|
2362
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;
|
|
2363
2760
|
/**
|
|
2364
2761
|
* Tags is a map of key, value pairs.
|
|
2365
2762
|
*/
|
|
@@ -2394,6 +2791,10 @@ export interface GetResourceResourceRabbitmqAmqp091 {
|
|
|
2394
2791
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2395
2792
|
*/
|
|
2396
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;
|
|
2397
2798
|
/**
|
|
2398
2799
|
* Tags is a map of key, value pairs.
|
|
2399
2800
|
*/
|
|
@@ -2427,6 +2828,10 @@ export interface GetResourceResourceRawTcp {
|
|
|
2427
2828
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2428
2829
|
*/
|
|
2429
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;
|
|
2430
2835
|
/**
|
|
2431
2836
|
* Tags is a map of key, value pairs.
|
|
2432
2837
|
*/
|
|
@@ -2460,6 +2865,10 @@ export interface GetResourceResourceRdp {
|
|
|
2460
2865
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2461
2866
|
*/
|
|
2462
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;
|
|
2463
2872
|
/**
|
|
2464
2873
|
* Tags is a map of key, value pairs.
|
|
2465
2874
|
*/
|
|
@@ -2493,12 +2902,18 @@ export interface GetResourceResourceRedi {
|
|
|
2493
2902
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2494
2903
|
*/
|
|
2495
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;
|
|
2496
2909
|
/**
|
|
2497
2910
|
* Tags is a map of key, value pairs.
|
|
2498
2911
|
*/
|
|
2499
2912
|
tags?: {
|
|
2500
2913
|
[key: string]: string;
|
|
2501
2914
|
};
|
|
2915
|
+
tlsRequired?: boolean;
|
|
2916
|
+
username?: string;
|
|
2502
2917
|
}
|
|
2503
2918
|
export interface GetResourceResourceRedshift {
|
|
2504
2919
|
/**
|
|
@@ -2527,6 +2942,10 @@ export interface GetResourceResourceRedshift {
|
|
|
2527
2942
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2528
2943
|
*/
|
|
2529
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;
|
|
2530
2949
|
/**
|
|
2531
2950
|
* Tags is a map of key, value pairs.
|
|
2532
2951
|
*/
|
|
@@ -2561,6 +2980,10 @@ export interface GetResourceResourceSingleStore {
|
|
|
2561
2980
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2562
2981
|
*/
|
|
2563
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;
|
|
2564
2987
|
/**
|
|
2565
2988
|
* Tags is a map of key, value pairs.
|
|
2566
2989
|
*/
|
|
@@ -2595,6 +3018,10 @@ export interface GetResourceResourceSnowflake {
|
|
|
2595
3018
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2596
3019
|
*/
|
|
2597
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;
|
|
2598
3025
|
/**
|
|
2599
3026
|
* Tags is a map of key, value pairs.
|
|
2600
3027
|
*/
|
|
@@ -2603,6 +3030,41 @@ export interface GetResourceResourceSnowflake {
|
|
|
2603
3030
|
};
|
|
2604
3031
|
username?: string;
|
|
2605
3032
|
}
|
|
3033
|
+
export interface GetResourceResourceSnowsight {
|
|
3034
|
+
/**
|
|
3035
|
+
* Bind interface
|
|
3036
|
+
*/
|
|
3037
|
+
bindInterface?: string;
|
|
3038
|
+
/**
|
|
3039
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3040
|
+
*/
|
|
3041
|
+
egressFilter?: string;
|
|
3042
|
+
healthcheckUsername?: string;
|
|
3043
|
+
/**
|
|
3044
|
+
* Unique identifier of the Resource.
|
|
3045
|
+
*/
|
|
3046
|
+
id?: string;
|
|
3047
|
+
/**
|
|
3048
|
+
* Unique human-readable name of the Resource.
|
|
3049
|
+
*/
|
|
3050
|
+
name?: string;
|
|
3051
|
+
portOverride?: number;
|
|
3052
|
+
samlMetadata?: string;
|
|
3053
|
+
/**
|
|
3054
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3055
|
+
*/
|
|
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
|
+
*/
|
|
3060
|
+
subdomain?: string;
|
|
3061
|
+
/**
|
|
3062
|
+
* Tags is a map of key, value pairs.
|
|
3063
|
+
*/
|
|
3064
|
+
tags?: {
|
|
3065
|
+
[key: string]: string;
|
|
3066
|
+
};
|
|
3067
|
+
}
|
|
2606
3068
|
export interface GetResourceResourceSqlServer {
|
|
2607
3069
|
/**
|
|
2608
3070
|
* Bind interface
|
|
@@ -2631,6 +3093,10 @@ export interface GetResourceResourceSqlServer {
|
|
|
2631
3093
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2632
3094
|
*/
|
|
2633
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;
|
|
2634
3100
|
/**
|
|
2635
3101
|
* Tags is a map of key, value pairs.
|
|
2636
3102
|
*/
|
|
@@ -2667,6 +3133,10 @@ export interface GetResourceResourceSsh {
|
|
|
2667
3133
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2668
3134
|
*/
|
|
2669
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;
|
|
2670
3140
|
/**
|
|
2671
3141
|
* Tags is a map of key, value pairs.
|
|
2672
3142
|
*/
|
|
@@ -2704,6 +3174,10 @@ export interface GetResourceResourceSshCert {
|
|
|
2704
3174
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2705
3175
|
*/
|
|
2706
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;
|
|
2707
3181
|
/**
|
|
2708
3182
|
* Tags is a map of key, value pairs.
|
|
2709
3183
|
*/
|
|
@@ -2739,6 +3213,10 @@ export interface GetResourceResourceSshCustomerKey {
|
|
|
2739
3213
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2740
3214
|
*/
|
|
2741
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;
|
|
2742
3220
|
/**
|
|
2743
3221
|
* Tags is a map of key, value pairs.
|
|
2744
3222
|
*/
|
|
@@ -2772,6 +3250,10 @@ export interface GetResourceResourceSybase {
|
|
|
2772
3250
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2773
3251
|
*/
|
|
2774
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;
|
|
2775
3257
|
/**
|
|
2776
3258
|
* Tags is a map of key, value pairs.
|
|
2777
3259
|
*/
|
|
@@ -2805,6 +3287,10 @@ export interface GetResourceResourceSybaseIq {
|
|
|
2805
3287
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2806
3288
|
*/
|
|
2807
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;
|
|
2808
3294
|
/**
|
|
2809
3295
|
* Tags is a map of key, value pairs.
|
|
2810
3296
|
*/
|
|
@@ -2838,6 +3324,10 @@ export interface GetResourceResourceTeradata {
|
|
|
2838
3324
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2839
3325
|
*/
|
|
2840
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;
|
|
2841
3331
|
/**
|
|
2842
3332
|
* Tags is a map of key, value pairs.
|
|
2843
3333
|
*/
|
|
@@ -2855,6 +3345,10 @@ export interface GetRoleRole {
|
|
|
2855
3345
|
* Unique identifier of the Role.
|
|
2856
3346
|
*/
|
|
2857
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;
|
|
2858
3352
|
/**
|
|
2859
3353
|
* Unique human-readable name of the Role.
|
|
2860
3354
|
*/
|
|
@@ -2871,6 +3365,7 @@ export interface GetSecretStoreSecretStore {
|
|
|
2871
3365
|
azureStores: outputs.GetSecretStoreSecretStoreAzureStore[];
|
|
2872
3366
|
cyberarkConjurs: outputs.GetSecretStoreSecretStoreCyberarkConjur[];
|
|
2873
3367
|
cyberarkPamExperimentals: outputs.GetSecretStoreSecretStoreCyberarkPamExperimental[];
|
|
3368
|
+
cyberarkPams: outputs.GetSecretStoreSecretStoreCyberarkPam[];
|
|
2874
3369
|
delineaStores: outputs.GetSecretStoreSecretStoreDelineaStore[];
|
|
2875
3370
|
gcpStores: outputs.GetSecretStoreSecretStoreGcpStore[];
|
|
2876
3371
|
vaultApproles: outputs.GetSecretStoreSecretStoreVaultApprole[];
|
|
@@ -2931,6 +3426,23 @@ export interface GetSecretStoreSecretStoreCyberarkConjur {
|
|
|
2931
3426
|
[key: string]: string;
|
|
2932
3427
|
};
|
|
2933
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
|
+
}
|
|
2934
3446
|
export interface GetSecretStoreSecretStoreCyberarkPamExperimental {
|
|
2935
3447
|
appUrl?: string;
|
|
2936
3448
|
/**
|
|
@@ -3048,6 +3560,10 @@ export interface NodeGateway {
|
|
|
3048
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".
|
|
3049
3561
|
*/
|
|
3050
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;
|
|
3051
3567
|
/**
|
|
3052
3568
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
3053
3569
|
*/
|
|
@@ -3056,6 +3572,10 @@ export interface NodeGateway {
|
|
|
3056
3572
|
* The public hostname/port tuple at which the gateway will be accessible to clients.
|
|
3057
3573
|
*/
|
|
3058
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;
|
|
3059
3579
|
/**
|
|
3060
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.
|
|
3061
3581
|
*/
|
|
@@ -3067,12 +3587,24 @@ export interface NodeGateway {
|
|
|
3067
3587
|
[key: string]: string;
|
|
3068
3588
|
};
|
|
3069
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;
|
|
3070
3594
|
}
|
|
3071
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;
|
|
3072
3600
|
/**
|
|
3073
3601
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
3074
3602
|
*/
|
|
3075
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;
|
|
3076
3608
|
/**
|
|
3077
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.
|
|
3078
3610
|
*/
|
|
@@ -3084,6 +3616,10 @@ export interface NodeRelay {
|
|
|
3084
3616
|
[key: string]: string;
|
|
3085
3617
|
};
|
|
3086
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;
|
|
3087
3623
|
}
|
|
3088
3624
|
export interface ResourceAks {
|
|
3089
3625
|
/**
|
|
@@ -3120,6 +3656,10 @@ export interface ResourceAks {
|
|
|
3120
3656
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3121
3657
|
*/
|
|
3122
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;
|
|
3123
3663
|
/**
|
|
3124
3664
|
* Tags is a map of key, value pairs.
|
|
3125
3665
|
*/
|
|
@@ -3156,6 +3696,10 @@ export interface ResourceAksBasicAuth {
|
|
|
3156
3696
|
secretStorePasswordPath?: string;
|
|
3157
3697
|
secretStoreUsernameKey?: string;
|
|
3158
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;
|
|
3159
3703
|
/**
|
|
3160
3704
|
* Tags is a map of key, value pairs.
|
|
3161
3705
|
*/
|
|
@@ -3195,6 +3739,10 @@ export interface ResourceAksServiceAccount {
|
|
|
3195
3739
|
*/
|
|
3196
3740
|
secretStoreTokenKey?: string;
|
|
3197
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;
|
|
3198
3746
|
/**
|
|
3199
3747
|
* Tags is a map of key, value pairs.
|
|
3200
3748
|
*/
|
|
@@ -3232,6 +3780,10 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
3232
3780
|
*/
|
|
3233
3781
|
secretStoreTokenKey?: string;
|
|
3234
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;
|
|
3235
3787
|
/**
|
|
3236
3788
|
* Tags is a map of key, value pairs.
|
|
3237
3789
|
*/
|
|
@@ -3273,6 +3825,10 @@ export interface ResourceAksUserImpersonation {
|
|
|
3273
3825
|
* ID of the secret store containing credentials for this resource, if any.
|
|
3274
3826
|
*/
|
|
3275
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;
|
|
3276
3832
|
/**
|
|
3277
3833
|
* Tags is a map of key, value pairs.
|
|
3278
3834
|
*/
|
|
@@ -3321,6 +3877,102 @@ export interface ResourceAmazonEks {
|
|
|
3321
3877
|
secretStoreRoleExternalIdPath?: string;
|
|
3322
3878
|
secretStoreSecretAccessKeyKey?: string;
|
|
3323
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)
|
|
3928
|
+
*/
|
|
3929
|
+
subdomain: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* Tags is a map of key, value pairs.
|
|
3932
|
+
*/
|
|
3933
|
+
tags?: {
|
|
3934
|
+
[key: string]: string;
|
|
3935
|
+
};
|
|
3936
|
+
}
|
|
3937
|
+
export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
3938
|
+
/**
|
|
3939
|
+
* Bind interface
|
|
3940
|
+
*/
|
|
3941
|
+
bindInterface: string;
|
|
3942
|
+
certificateAuthority?: string;
|
|
3943
|
+
clusterName: string;
|
|
3944
|
+
/**
|
|
3945
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3946
|
+
*/
|
|
3947
|
+
egressFilter?: string;
|
|
3948
|
+
endpoint: string;
|
|
3949
|
+
/**
|
|
3950
|
+
* 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.
|
|
3951
|
+
*/
|
|
3952
|
+
healthcheckNamespace?: string;
|
|
3953
|
+
/**
|
|
3954
|
+
* Unique human-readable name of the Resource.
|
|
3955
|
+
*/
|
|
3956
|
+
name: string;
|
|
3957
|
+
region: string;
|
|
3958
|
+
remoteIdentityGroupId?: string;
|
|
3959
|
+
remoteIdentityHealthcheckUsername?: string;
|
|
3960
|
+
roleArn?: string;
|
|
3961
|
+
roleExternalId?: string;
|
|
3962
|
+
secretStoreCertificateAuthorityKey?: string;
|
|
3963
|
+
secretStoreCertificateAuthorityPath?: string;
|
|
3964
|
+
/**
|
|
3965
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3966
|
+
*/
|
|
3967
|
+
secretStoreId?: string;
|
|
3968
|
+
secretStoreRoleArnKey?: string;
|
|
3969
|
+
secretStoreRoleArnPath?: string;
|
|
3970
|
+
secretStoreRoleExternalIdKey?: string;
|
|
3971
|
+
secretStoreRoleExternalIdPath?: string;
|
|
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;
|
|
3324
3976
|
/**
|
|
3325
3977
|
* Tags is a map of key, value pairs.
|
|
3326
3978
|
*/
|
|
@@ -3367,6 +4019,10 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
3367
4019
|
secretStoreRoleExternalIdPath?: string;
|
|
3368
4020
|
secretStoreSecretAccessKeyKey?: string;
|
|
3369
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;
|
|
3370
4026
|
/**
|
|
3371
4027
|
* Tags is a map of key, value pairs.
|
|
3372
4028
|
*/
|
|
@@ -3406,6 +4062,10 @@ export interface ResourceAmazonEs {
|
|
|
3406
4062
|
secretStoreRoleExternalIdPath?: string;
|
|
3407
4063
|
secretStoreSecretAccessKeyKey?: string;
|
|
3408
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;
|
|
3409
4069
|
/**
|
|
3410
4070
|
* Tags is a map of key, value pairs.
|
|
3411
4071
|
*/
|
|
@@ -3438,6 +4098,10 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
3438
4098
|
secretStorePasswordPath?: string;
|
|
3439
4099
|
secretStoreUsernameKey?: string;
|
|
3440
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;
|
|
3441
4105
|
/**
|
|
3442
4106
|
* Tags is a map of key, value pairs.
|
|
3443
4107
|
*/
|
|
@@ -3479,6 +4143,10 @@ export interface ResourceAthena {
|
|
|
3479
4143
|
secretStoreRoleExternalIdPath?: string;
|
|
3480
4144
|
secretStoreSecretAccessKeyKey?: string;
|
|
3481
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;
|
|
3482
4150
|
/**
|
|
3483
4151
|
* Tags is a map of key, value pairs.
|
|
3484
4152
|
*/
|
|
@@ -3512,6 +4180,10 @@ export interface ResourceAuroraMysql {
|
|
|
3512
4180
|
secretStorePasswordPath?: string;
|
|
3513
4181
|
secretStoreUsernameKey?: string;
|
|
3514
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;
|
|
3515
4187
|
/**
|
|
3516
4188
|
* Tags is a map of key, value pairs.
|
|
3517
4189
|
*/
|
|
@@ -3547,6 +4219,10 @@ export interface ResourceAuroraPostgres {
|
|
|
3547
4219
|
secretStorePasswordPath?: string;
|
|
3548
4220
|
secretStoreUsernameKey?: string;
|
|
3549
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;
|
|
3550
4226
|
/**
|
|
3551
4227
|
* Tags is a map of key, value pairs.
|
|
3552
4228
|
*/
|
|
@@ -3621,6 +4297,9 @@ export interface ResourceAwsConsole {
|
|
|
3621
4297
|
secretStoreRoleExternalIdKey?: string;
|
|
3622
4298
|
secretStoreRoleExternalIdPath?: string;
|
|
3623
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
|
+
*/
|
|
3624
4303
|
subdomain: string;
|
|
3625
4304
|
/**
|
|
3626
4305
|
* Tags is a map of key, value pairs.
|
|
@@ -3663,6 +4342,9 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
3663
4342
|
secretStoreSecretAccessKeyKey?: string;
|
|
3664
4343
|
secretStoreSecretAccessKeyPath?: string;
|
|
3665
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
|
+
*/
|
|
3666
4348
|
subdomain: string;
|
|
3667
4349
|
/**
|
|
3668
4350
|
* Tags is a map of key, value pairs.
|
|
@@ -3695,7 +4377,7 @@ export interface ResourceAzure {
|
|
|
3695
4377
|
secretStorePasswordKey?: string;
|
|
3696
4378
|
secretStorePasswordPath?: string;
|
|
3697
4379
|
/**
|
|
3698
|
-
* *
|
|
4380
|
+
* * azure_mysql:
|
|
3699
4381
|
*/
|
|
3700
4382
|
secretStoreTenantIdKey?: string;
|
|
3701
4383
|
secretStoreTenantIdPath?: string;
|
|
@@ -3731,7 +4413,7 @@ export interface ResourceAzureCertificate {
|
|
|
3731
4413
|
*/
|
|
3732
4414
|
secretStoreId?: string;
|
|
3733
4415
|
/**
|
|
3734
|
-
* *
|
|
4416
|
+
* * azure_mysql:
|
|
3735
4417
|
*/
|
|
3736
4418
|
secretStoreTenantIdKey?: string;
|
|
3737
4419
|
secretStoreTenantIdPath?: string;
|
|
@@ -3743,6 +4425,44 @@ export interface ResourceAzureCertificate {
|
|
|
3743
4425
|
};
|
|
3744
4426
|
tenantId?: string;
|
|
3745
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
|
+
}
|
|
3746
4466
|
export interface ResourceAzurePostgres {
|
|
3747
4467
|
/**
|
|
3748
4468
|
* Bind interface
|
|
@@ -3770,6 +4490,10 @@ export interface ResourceAzurePostgres {
|
|
|
3770
4490
|
secretStorePasswordPath?: string;
|
|
3771
4491
|
secretStoreUsernameKey?: string;
|
|
3772
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;
|
|
3773
4497
|
/**
|
|
3774
4498
|
* Tags is a map of key, value pairs.
|
|
3775
4499
|
*/
|
|
@@ -3801,6 +4525,10 @@ export interface ResourceBigQuery {
|
|
|
3801
4525
|
secretStoreId?: string;
|
|
3802
4526
|
secretStorePrivateKeyKey?: string;
|
|
3803
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;
|
|
3804
4532
|
/**
|
|
3805
4533
|
* Tags is a map of key, value pairs.
|
|
3806
4534
|
*/
|
|
@@ -3834,6 +4562,10 @@ export interface ResourceCassandra {
|
|
|
3834
4562
|
secretStorePasswordPath?: string;
|
|
3835
4563
|
secretStoreUsernameKey?: string;
|
|
3836
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;
|
|
3837
4569
|
/**
|
|
3838
4570
|
* Tags is a map of key, value pairs.
|
|
3839
4571
|
*/
|
|
@@ -3870,6 +4602,10 @@ export interface ResourceCitus {
|
|
|
3870
4602
|
secretStorePasswordPath?: string;
|
|
3871
4603
|
secretStoreUsernameKey?: string;
|
|
3872
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;
|
|
3873
4609
|
/**
|
|
3874
4610
|
* Tags is a map of key, value pairs.
|
|
3875
4611
|
*/
|
|
@@ -3904,6 +4640,10 @@ export interface ResourceClustrix {
|
|
|
3904
4640
|
secretStorePasswordPath?: string;
|
|
3905
4641
|
secretStoreUsernameKey?: string;
|
|
3906
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;
|
|
3907
4647
|
/**
|
|
3908
4648
|
* Tags is a map of key, value pairs.
|
|
3909
4649
|
*/
|
|
@@ -3939,6 +4679,10 @@ export interface ResourceCockroach {
|
|
|
3939
4679
|
secretStorePasswordPath?: string;
|
|
3940
4680
|
secretStoreUsernameKey?: string;
|
|
3941
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;
|
|
3942
4686
|
/**
|
|
3943
4687
|
* Tags is a map of key, value pairs.
|
|
3944
4688
|
*/
|
|
@@ -3962,7 +4706,7 @@ export interface ResourceDb2I {
|
|
|
3962
4706
|
*/
|
|
3963
4707
|
name: string;
|
|
3964
4708
|
password?: string;
|
|
3965
|
-
port
|
|
4709
|
+
port: number;
|
|
3966
4710
|
portOverride: number;
|
|
3967
4711
|
/**
|
|
3968
4712
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -3972,6 +4716,10 @@ export interface ResourceDb2I {
|
|
|
3972
4716
|
secretStorePasswordPath?: string;
|
|
3973
4717
|
secretStoreUsernameKey?: string;
|
|
3974
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;
|
|
3975
4723
|
/**
|
|
3976
4724
|
* Tags is a map of key, value pairs.
|
|
3977
4725
|
*/
|
|
@@ -4007,6 +4755,10 @@ export interface ResourceDb2Luw {
|
|
|
4007
4755
|
secretStorePasswordPath?: string;
|
|
4008
4756
|
secretStoreUsernameKey?: string;
|
|
4009
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;
|
|
4010
4762
|
/**
|
|
4011
4763
|
* Tags is a map of key, value pairs.
|
|
4012
4764
|
*/
|
|
@@ -4041,6 +4793,10 @@ export interface ResourceDocumentDbHost {
|
|
|
4041
4793
|
secretStorePasswordPath?: string;
|
|
4042
4794
|
secretStoreUsernameKey?: string;
|
|
4043
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;
|
|
4044
4800
|
/**
|
|
4045
4801
|
* Tags is a map of key, value pairs.
|
|
4046
4802
|
*/
|
|
@@ -4076,6 +4832,10 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
4076
4832
|
secretStorePasswordPath?: string;
|
|
4077
4833
|
secretStoreUsernameKey?: string;
|
|
4078
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;
|
|
4079
4839
|
/**
|
|
4080
4840
|
* Tags is a map of key, value pairs.
|
|
4081
4841
|
*/
|
|
@@ -4109,6 +4869,10 @@ export interface ResourceDruid {
|
|
|
4109
4869
|
secretStorePasswordPath?: string;
|
|
4110
4870
|
secretStoreUsernameKey?: string;
|
|
4111
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;
|
|
4112
4876
|
/**
|
|
4113
4877
|
* Tags is a map of key, value pairs.
|
|
4114
4878
|
*/
|
|
@@ -4149,6 +4913,10 @@ export interface ResourceDynamoDb {
|
|
|
4149
4913
|
secretStoreRoleExternalIdPath?: string;
|
|
4150
4914
|
secretStoreSecretAccessKeyKey?: string;
|
|
4151
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;
|
|
4152
4920
|
/**
|
|
4153
4921
|
* Tags is a map of key, value pairs.
|
|
4154
4922
|
*/
|
|
@@ -4181,6 +4949,10 @@ export interface ResourceElastic {
|
|
|
4181
4949
|
secretStorePasswordPath?: string;
|
|
4182
4950
|
secretStoreUsernameKey?: string;
|
|
4183
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;
|
|
4184
4956
|
/**
|
|
4185
4957
|
* Tags is a map of key, value pairs.
|
|
4186
4958
|
*/
|
|
@@ -4213,6 +4985,12 @@ export interface ResourceElasticacheRedis {
|
|
|
4213
4985
|
secretStoreId?: string;
|
|
4214
4986
|
secretStorePasswordKey?: string;
|
|
4215
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;
|
|
4216
4994
|
/**
|
|
4217
4995
|
* Tags is a map of key, value pairs.
|
|
4218
4996
|
*/
|
|
@@ -4220,6 +4998,7 @@ export interface ResourceElasticacheRedis {
|
|
|
4220
4998
|
[key: string]: string;
|
|
4221
4999
|
};
|
|
4222
5000
|
tlsRequired?: boolean;
|
|
5001
|
+
username?: string;
|
|
4223
5002
|
}
|
|
4224
5003
|
export interface ResourceGcp {
|
|
4225
5004
|
/**
|
|
@@ -4279,6 +5058,10 @@ export interface ResourceGoogleGke {
|
|
|
4279
5058
|
secretStoreServiceAccountKeyKey?: string;
|
|
4280
5059
|
secretStoreServiceAccountKeyPath?: string;
|
|
4281
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;
|
|
4282
5065
|
/**
|
|
4283
5066
|
* Tags is a map of key, value pairs.
|
|
4284
5067
|
*/
|
|
@@ -4314,6 +5097,10 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
4314
5097
|
secretStoreServiceAccountKeyKey?: string;
|
|
4315
5098
|
secretStoreServiceAccountKeyPath?: string;
|
|
4316
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;
|
|
4317
5104
|
/**
|
|
4318
5105
|
* Tags is a map of key, value pairs.
|
|
4319
5106
|
*/
|
|
@@ -4348,6 +5135,10 @@ export interface ResourceGreenplum {
|
|
|
4348
5135
|
secretStorePasswordPath?: string;
|
|
4349
5136
|
secretStoreUsernameKey?: string;
|
|
4350
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;
|
|
4351
5142
|
/**
|
|
4352
5143
|
* Tags is a map of key, value pairs.
|
|
4353
5144
|
*/
|
|
@@ -4369,6 +5160,7 @@ export interface ResourceHttpAuth {
|
|
|
4369
5160
|
egressFilter?: string;
|
|
4370
5161
|
headersBlacklist?: string;
|
|
4371
5162
|
healthcheckPath: string;
|
|
5163
|
+
hostOverride?: string;
|
|
4372
5164
|
/**
|
|
4373
5165
|
* Unique human-readable name of the Resource.
|
|
4374
5166
|
*/
|
|
@@ -4379,6 +5171,9 @@ export interface ResourceHttpAuth {
|
|
|
4379
5171
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4380
5172
|
*/
|
|
4381
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
|
+
*/
|
|
4382
5177
|
subdomain: string;
|
|
4383
5178
|
/**
|
|
4384
5179
|
* Tags is a map of key, value pairs.
|
|
@@ -4403,6 +5198,7 @@ export interface ResourceHttpBasicAuth {
|
|
|
4403
5198
|
egressFilter?: string;
|
|
4404
5199
|
headersBlacklist?: string;
|
|
4405
5200
|
healthcheckPath: string;
|
|
5201
|
+
hostOverride?: string;
|
|
4406
5202
|
/**
|
|
4407
5203
|
* Unique human-readable name of the Resource.
|
|
4408
5204
|
*/
|
|
@@ -4416,6 +5212,9 @@ export interface ResourceHttpBasicAuth {
|
|
|
4416
5212
|
secretStorePasswordPath?: string;
|
|
4417
5213
|
secretStoreUsernameKey?: string;
|
|
4418
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
|
+
*/
|
|
4419
5218
|
subdomain: string;
|
|
4420
5219
|
/**
|
|
4421
5220
|
* Tags is a map of key, value pairs.
|
|
@@ -4441,6 +5240,7 @@ export interface ResourceHttpNoAuth {
|
|
|
4441
5240
|
egressFilter?: string;
|
|
4442
5241
|
headersBlacklist?: string;
|
|
4443
5242
|
healthcheckPath: string;
|
|
5243
|
+
hostOverride?: string;
|
|
4444
5244
|
/**
|
|
4445
5245
|
* Unique human-readable name of the Resource.
|
|
4446
5246
|
*/
|
|
@@ -4449,6 +5249,9 @@ export interface ResourceHttpNoAuth {
|
|
|
4449
5249
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4450
5250
|
*/
|
|
4451
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
|
+
*/
|
|
4452
5255
|
subdomain: string;
|
|
4453
5256
|
/**
|
|
4454
5257
|
* Tags is a map of key, value pairs.
|
|
@@ -4496,6 +5299,10 @@ export interface ResourceKubernetes {
|
|
|
4496
5299
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4497
5300
|
*/
|
|
4498
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;
|
|
4499
5306
|
/**
|
|
4500
5307
|
* Tags is a map of key, value pairs.
|
|
4501
5308
|
*/
|
|
@@ -4532,6 +5339,10 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
4532
5339
|
secretStorePasswordPath?: string;
|
|
4533
5340
|
secretStoreUsernameKey?: string;
|
|
4534
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;
|
|
4535
5346
|
/**
|
|
4536
5347
|
* Tags is a map of key, value pairs.
|
|
4537
5348
|
*/
|
|
@@ -4571,6 +5382,10 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
4571
5382
|
*/
|
|
4572
5383
|
secretStoreTokenKey?: string;
|
|
4573
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;
|
|
4574
5389
|
/**
|
|
4575
5390
|
* Tags is a map of key, value pairs.
|
|
4576
5391
|
*/
|
|
@@ -4608,6 +5423,10 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
4608
5423
|
*/
|
|
4609
5424
|
secretStoreTokenKey?: string;
|
|
4610
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;
|
|
4611
5430
|
/**
|
|
4612
5431
|
* Tags is a map of key, value pairs.
|
|
4613
5432
|
*/
|
|
@@ -4649,6 +5468,10 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
4649
5468
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4650
5469
|
*/
|
|
4651
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;
|
|
4652
5475
|
/**
|
|
4653
5476
|
* Tags is a map of key, value pairs.
|
|
4654
5477
|
*/
|
|
@@ -4682,6 +5505,10 @@ export interface ResourceMaria {
|
|
|
4682
5505
|
secretStorePasswordPath?: string;
|
|
4683
5506
|
secretStoreUsernameKey?: string;
|
|
4684
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;
|
|
4685
5512
|
/**
|
|
4686
5513
|
* Tags is a map of key, value pairs.
|
|
4687
5514
|
*/
|
|
@@ -4710,6 +5537,10 @@ export interface ResourceMemcached {
|
|
|
4710
5537
|
* ID of the secret store containing credentials for this resource, if any.
|
|
4711
5538
|
*/
|
|
4712
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;
|
|
4713
5544
|
/**
|
|
4714
5545
|
* Tags is a map of key, value pairs.
|
|
4715
5546
|
*/
|
|
@@ -4743,6 +5574,10 @@ export interface ResourceMemsql {
|
|
|
4743
5574
|
secretStorePasswordPath?: string;
|
|
4744
5575
|
secretStoreUsernameKey?: string;
|
|
4745
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;
|
|
4746
5581
|
/**
|
|
4747
5582
|
* Tags is a map of key, value pairs.
|
|
4748
5583
|
*/
|
|
@@ -4777,6 +5612,10 @@ export interface ResourceMongoHost {
|
|
|
4777
5612
|
secretStorePasswordPath?: string;
|
|
4778
5613
|
secretStoreUsernameKey?: string;
|
|
4779
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;
|
|
4780
5619
|
/**
|
|
4781
5620
|
* Tags is a map of key, value pairs.
|
|
4782
5621
|
*/
|
|
@@ -4813,6 +5652,10 @@ export interface ResourceMongoLegacyHost {
|
|
|
4813
5652
|
secretStorePasswordPath?: string;
|
|
4814
5653
|
secretStoreUsernameKey?: string;
|
|
4815
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;
|
|
4816
5659
|
/**
|
|
4817
5660
|
* Tags is a map of key, value pairs.
|
|
4818
5661
|
*/
|
|
@@ -4850,6 +5693,10 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
4850
5693
|
secretStorePasswordPath?: string;
|
|
4851
5694
|
secretStoreUsernameKey?: string;
|
|
4852
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;
|
|
4853
5700
|
/**
|
|
4854
5701
|
* Tags is a map of key, value pairs.
|
|
4855
5702
|
*/
|
|
@@ -4887,6 +5734,10 @@ export interface ResourceMongoReplicaSet {
|
|
|
4887
5734
|
secretStorePasswordPath?: string;
|
|
4888
5735
|
secretStoreUsernameKey?: string;
|
|
4889
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;
|
|
4890
5741
|
/**
|
|
4891
5742
|
* Tags is a map of key, value pairs.
|
|
4892
5743
|
*/
|
|
@@ -4921,6 +5772,10 @@ export interface ResourceMongoShardedCluster {
|
|
|
4921
5772
|
secretStorePasswordPath?: string;
|
|
4922
5773
|
secretStoreUsernameKey?: string;
|
|
4923
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;
|
|
4924
5779
|
/**
|
|
4925
5780
|
* Tags is a map of key, value pairs.
|
|
4926
5781
|
*/
|
|
@@ -4966,6 +5821,10 @@ export interface ResourceMtlsMysql {
|
|
|
4966
5821
|
secretStoreUsernameKey?: string;
|
|
4967
5822
|
secretStoreUsernamePath?: string;
|
|
4968
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;
|
|
4969
5828
|
/**
|
|
4970
5829
|
* Tags is a map of key, value pairs.
|
|
4971
5830
|
*/
|
|
@@ -5011,6 +5870,10 @@ export interface ResourceMtlsPostgres {
|
|
|
5011
5870
|
secretStoreUsernameKey?: string;
|
|
5012
5871
|
secretStoreUsernamePath?: string;
|
|
5013
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;
|
|
5014
5877
|
/**
|
|
5015
5878
|
* Tags is a map of key, value pairs.
|
|
5016
5879
|
*/
|
|
@@ -5045,6 +5908,10 @@ export interface ResourceMysql {
|
|
|
5045
5908
|
secretStorePasswordPath?: string;
|
|
5046
5909
|
secretStoreUsernameKey?: string;
|
|
5047
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;
|
|
5048
5915
|
/**
|
|
5049
5916
|
* Tags is a map of key, value pairs.
|
|
5050
5917
|
*/
|
|
@@ -5073,6 +5940,10 @@ export interface ResourceNeptune {
|
|
|
5073
5940
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5074
5941
|
*/
|
|
5075
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;
|
|
5076
5947
|
/**
|
|
5077
5948
|
* Tags is a map of key, value pairs.
|
|
5078
5949
|
*/
|
|
@@ -5113,6 +5984,10 @@ export interface ResourceNeptuneIam {
|
|
|
5113
5984
|
secretStoreRoleExternalIdPath?: string;
|
|
5114
5985
|
secretStoreSecretAccessKeyKey?: string;
|
|
5115
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;
|
|
5116
5991
|
/**
|
|
5117
5992
|
* Tags is a map of key, value pairs.
|
|
5118
5993
|
*/
|
|
@@ -5146,6 +6021,10 @@ export interface ResourceOracle {
|
|
|
5146
6021
|
secretStorePasswordPath?: string;
|
|
5147
6022
|
secretStoreUsernameKey?: string;
|
|
5148
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;
|
|
5149
6028
|
/**
|
|
5150
6029
|
* Tags is a map of key, value pairs.
|
|
5151
6030
|
*/
|
|
@@ -5182,6 +6061,10 @@ export interface ResourcePostgres {
|
|
|
5182
6061
|
secretStorePasswordPath?: string;
|
|
5183
6062
|
secretStoreUsernameKey?: string;
|
|
5184
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;
|
|
5185
6068
|
/**
|
|
5186
6069
|
* Tags is a map of key, value pairs.
|
|
5187
6070
|
*/
|
|
@@ -5214,6 +6097,10 @@ export interface ResourcePresto {
|
|
|
5214
6097
|
secretStoreId?: string;
|
|
5215
6098
|
secretStorePasswordKey?: string;
|
|
5216
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;
|
|
5217
6104
|
/**
|
|
5218
6105
|
* Tags is a map of key, value pairs.
|
|
5219
6106
|
*/
|
|
@@ -5248,6 +6135,10 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
5248
6135
|
secretStorePasswordPath?: string;
|
|
5249
6136
|
secretStoreUsernameKey?: string;
|
|
5250
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;
|
|
5251
6142
|
/**
|
|
5252
6143
|
* Tags is a map of key, value pairs.
|
|
5253
6144
|
*/
|
|
@@ -5277,6 +6168,10 @@ export interface ResourceRawTcp {
|
|
|
5277
6168
|
* ID of the secret store containing credentials for this resource, if any.
|
|
5278
6169
|
*/
|
|
5279
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;
|
|
5280
6175
|
/**
|
|
5281
6176
|
* Tags is a map of key, value pairs.
|
|
5282
6177
|
*/
|
|
@@ -5300,7 +6195,7 @@ export interface ResourceRdp {
|
|
|
5300
6195
|
*/
|
|
5301
6196
|
name: string;
|
|
5302
6197
|
password?: string;
|
|
5303
|
-
port
|
|
6198
|
+
port?: number;
|
|
5304
6199
|
portOverride: number;
|
|
5305
6200
|
/**
|
|
5306
6201
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -5310,6 +6205,10 @@ export interface ResourceRdp {
|
|
|
5310
6205
|
secretStorePasswordPath?: string;
|
|
5311
6206
|
secretStoreUsernameKey?: string;
|
|
5312
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;
|
|
5313
6212
|
/**
|
|
5314
6213
|
* Tags is a map of key, value pairs.
|
|
5315
6214
|
*/
|
|
@@ -5341,12 +6240,20 @@ export interface ResourceRedis {
|
|
|
5341
6240
|
secretStoreId?: string;
|
|
5342
6241
|
secretStorePasswordKey?: string;
|
|
5343
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;
|
|
5344
6249
|
/**
|
|
5345
6250
|
* Tags is a map of key, value pairs.
|
|
5346
6251
|
*/
|
|
5347
6252
|
tags?: {
|
|
5348
6253
|
[key: string]: string;
|
|
5349
6254
|
};
|
|
6255
|
+
tlsRequired?: boolean;
|
|
6256
|
+
username?: string;
|
|
5350
6257
|
}
|
|
5351
6258
|
export interface ResourceRedshift {
|
|
5352
6259
|
/**
|
|
@@ -5375,6 +6282,10 @@ export interface ResourceRedshift {
|
|
|
5375
6282
|
secretStorePasswordPath?: string;
|
|
5376
6283
|
secretStoreUsernameKey?: string;
|
|
5377
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;
|
|
5378
6289
|
/**
|
|
5379
6290
|
* Tags is a map of key, value pairs.
|
|
5380
6291
|
*/
|
|
@@ -5409,6 +6320,10 @@ export interface ResourceSingleStore {
|
|
|
5409
6320
|
secretStorePasswordPath?: string;
|
|
5410
6321
|
secretStoreUsernameKey?: string;
|
|
5411
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;
|
|
5412
6327
|
/**
|
|
5413
6328
|
* Tags is a map of key, value pairs.
|
|
5414
6329
|
*/
|
|
@@ -5443,6 +6358,10 @@ export interface ResourceSnowflake {
|
|
|
5443
6358
|
secretStorePasswordPath?: string;
|
|
5444
6359
|
secretStoreUsernameKey?: string;
|
|
5445
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;
|
|
5446
6365
|
/**
|
|
5447
6366
|
* Tags is a map of key, value pairs.
|
|
5448
6367
|
*/
|
|
@@ -5451,6 +6370,39 @@ export interface ResourceSnowflake {
|
|
|
5451
6370
|
};
|
|
5452
6371
|
username?: string;
|
|
5453
6372
|
}
|
|
6373
|
+
export interface ResourceSnowsight {
|
|
6374
|
+
/**
|
|
6375
|
+
* Bind interface
|
|
6376
|
+
*/
|
|
6377
|
+
bindInterface: string;
|
|
6378
|
+
/**
|
|
6379
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
6380
|
+
*/
|
|
6381
|
+
egressFilter?: string;
|
|
6382
|
+
healthcheckUsername: string;
|
|
6383
|
+
/**
|
|
6384
|
+
* Unique human-readable name of the Resource.
|
|
6385
|
+
*/
|
|
6386
|
+
name: string;
|
|
6387
|
+
portOverride: number;
|
|
6388
|
+
samlMetadata?: string;
|
|
6389
|
+
/**
|
|
6390
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
6391
|
+
*/
|
|
6392
|
+
secretStoreId?: string;
|
|
6393
|
+
secretStoreSamlMetadataKey?: string;
|
|
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
|
+
*/
|
|
6398
|
+
subdomain: string;
|
|
6399
|
+
/**
|
|
6400
|
+
* Tags is a map of key, value pairs.
|
|
6401
|
+
*/
|
|
6402
|
+
tags?: {
|
|
6403
|
+
[key: string]: string;
|
|
6404
|
+
};
|
|
6405
|
+
}
|
|
5454
6406
|
export interface ResourceSqlServer {
|
|
5455
6407
|
/**
|
|
5456
6408
|
* Bind interface
|
|
@@ -5479,6 +6431,10 @@ export interface ResourceSqlServer {
|
|
|
5479
6431
|
secretStorePasswordPath?: string;
|
|
5480
6432
|
secretStoreUsernameKey?: string;
|
|
5481
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;
|
|
5482
6438
|
/**
|
|
5483
6439
|
* Tags is a map of key, value pairs.
|
|
5484
6440
|
*/
|
|
@@ -5498,7 +6454,7 @@ export interface ResourceSsh {
|
|
|
5498
6454
|
*/
|
|
5499
6455
|
egressFilter?: string;
|
|
5500
6456
|
hostname: string;
|
|
5501
|
-
keyType
|
|
6457
|
+
keyType: string;
|
|
5502
6458
|
/**
|
|
5503
6459
|
* Unique human-readable name of the Resource.
|
|
5504
6460
|
*/
|
|
@@ -5513,6 +6469,10 @@ export interface ResourceSsh {
|
|
|
5513
6469
|
secretStoreId?: string;
|
|
5514
6470
|
secretStoreUsernameKey?: string;
|
|
5515
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;
|
|
5516
6476
|
/**
|
|
5517
6477
|
* Tags is a map of key, value pairs.
|
|
5518
6478
|
*/
|
|
@@ -5532,7 +6492,7 @@ export interface ResourceSshCert {
|
|
|
5532
6492
|
*/
|
|
5533
6493
|
egressFilter?: string;
|
|
5534
6494
|
hostname: string;
|
|
5535
|
-
keyType
|
|
6495
|
+
keyType: string;
|
|
5536
6496
|
/**
|
|
5537
6497
|
* Unique human-readable name of the Resource.
|
|
5538
6498
|
*/
|
|
@@ -5548,6 +6508,10 @@ export interface ResourceSshCert {
|
|
|
5548
6508
|
secretStoreId?: string;
|
|
5549
6509
|
secretStoreUsernameKey?: string;
|
|
5550
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;
|
|
5551
6515
|
/**
|
|
5552
6516
|
* Tags is a map of key, value pairs.
|
|
5553
6517
|
*/
|
|
@@ -5583,6 +6547,10 @@ export interface ResourceSshCustomerKey {
|
|
|
5583
6547
|
secretStorePrivateKeyPath?: string;
|
|
5584
6548
|
secretStoreUsernameKey?: string;
|
|
5585
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;
|
|
5586
6554
|
/**
|
|
5587
6555
|
* Tags is a map of key, value pairs.
|
|
5588
6556
|
*/
|
|
@@ -5616,6 +6584,10 @@ export interface ResourceSybase {
|
|
|
5616
6584
|
secretStorePasswordPath?: string;
|
|
5617
6585
|
secretStoreUsernameKey?: string;
|
|
5618
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;
|
|
5619
6591
|
/**
|
|
5620
6592
|
* Tags is a map of key, value pairs.
|
|
5621
6593
|
*/
|
|
@@ -5649,6 +6621,10 @@ export interface ResourceSybaseIq {
|
|
|
5649
6621
|
secretStorePasswordPath?: string;
|
|
5650
6622
|
secretStoreUsernameKey?: string;
|
|
5651
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;
|
|
5652
6628
|
/**
|
|
5653
6629
|
* Tags is a map of key, value pairs.
|
|
5654
6630
|
*/
|
|
@@ -5682,6 +6658,10 @@ export interface ResourceTeradata {
|
|
|
5682
6658
|
secretStorePasswordPath?: string;
|
|
5683
6659
|
secretStoreUsernameKey?: string;
|
|
5684
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;
|
|
5685
6665
|
/**
|
|
5686
6666
|
* Tags is a map of key, value pairs.
|
|
5687
6667
|
*/
|
|
@@ -5732,6 +6712,19 @@ export interface SecretStoreCyberarkConjur {
|
|
|
5732
6712
|
[key: string]: string;
|
|
5733
6713
|
};
|
|
5734
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
|
+
}
|
|
5735
6728
|
export interface SecretStoreCyberarkPamExperimental {
|
|
5736
6729
|
appUrl: string;
|
|
5737
6730
|
/**
|