@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/input.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: pulumi.Input<string>;
|
|
24
|
+
/**
|
|
25
|
+
* External ID is an alternative unique ID this user is represented by within an external service.
|
|
26
|
+
*/
|
|
27
|
+
externalId?: pulumi.Input<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: pulumi.Input<string>;
|
|
36
|
+
/**
|
|
37
|
+
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
38
|
+
*/
|
|
39
|
+
managedBy?: pulumi.Input<string>;
|
|
40
|
+
/**
|
|
41
|
+
* PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user.
|
|
42
|
+
*/
|
|
43
|
+
permissionLevel?: pulumi.Input<string>;
|
|
32
44
|
/**
|
|
33
45
|
* The User's suspended state.
|
|
34
46
|
*/
|
|
@@ -45,6 +57,10 @@ export interface NodeGateway {
|
|
|
45
57
|
* 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".
|
|
46
58
|
*/
|
|
47
59
|
bindAddress?: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
62
|
+
*/
|
|
63
|
+
device?: pulumi.Input<string>;
|
|
48
64
|
/**
|
|
49
65
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
50
66
|
*/
|
|
@@ -53,6 +69,10 @@ export interface NodeGateway {
|
|
|
53
69
|
* The public hostname/port tuple at which the gateway will be accessible to clients.
|
|
54
70
|
*/
|
|
55
71
|
listenAddress: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
74
|
+
*/
|
|
75
|
+
location?: pulumi.Input<string>;
|
|
56
76
|
/**
|
|
57
77
|
* 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.
|
|
58
78
|
*/
|
|
@@ -64,12 +84,24 @@ export interface NodeGateway {
|
|
|
64
84
|
[key: string]: pulumi.Input<string>;
|
|
65
85
|
}>;
|
|
66
86
|
token?: pulumi.Input<string>;
|
|
87
|
+
/**
|
|
88
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
89
|
+
*/
|
|
90
|
+
version?: pulumi.Input<string>;
|
|
67
91
|
}
|
|
68
92
|
export interface NodeRelay {
|
|
93
|
+
/**
|
|
94
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
95
|
+
*/
|
|
96
|
+
device?: pulumi.Input<string>;
|
|
69
97
|
/**
|
|
70
98
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
71
99
|
*/
|
|
72
100
|
gatewayFilter?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
103
|
+
*/
|
|
104
|
+
location?: pulumi.Input<string>;
|
|
73
105
|
/**
|
|
74
106
|
* 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.
|
|
75
107
|
*/
|
|
@@ -81,6 +113,10 @@ export interface NodeRelay {
|
|
|
81
113
|
[key: string]: pulumi.Input<string>;
|
|
82
114
|
}>;
|
|
83
115
|
token?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
118
|
+
*/
|
|
119
|
+
version?: pulumi.Input<string>;
|
|
84
120
|
}
|
|
85
121
|
export interface ResourceAks {
|
|
86
122
|
/**
|
|
@@ -117,6 +153,10 @@ export interface ResourceAks {
|
|
|
117
153
|
* ID of the secret store containing credentials for this resource, if any.
|
|
118
154
|
*/
|
|
119
155
|
secretStoreId?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
158
|
+
*/
|
|
159
|
+
subdomain?: pulumi.Input<string>;
|
|
120
160
|
/**
|
|
121
161
|
* Tags is a map of key, value pairs.
|
|
122
162
|
*/
|
|
@@ -153,6 +193,10 @@ export interface ResourceAksBasicAuth {
|
|
|
153
193
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
154
194
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
155
195
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
198
|
+
*/
|
|
199
|
+
subdomain?: pulumi.Input<string>;
|
|
156
200
|
/**
|
|
157
201
|
* Tags is a map of key, value pairs.
|
|
158
202
|
*/
|
|
@@ -192,6 +236,10 @@ export interface ResourceAksServiceAccount {
|
|
|
192
236
|
*/
|
|
193
237
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
194
238
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
239
|
+
/**
|
|
240
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
241
|
+
*/
|
|
242
|
+
subdomain?: pulumi.Input<string>;
|
|
195
243
|
/**
|
|
196
244
|
* Tags is a map of key, value pairs.
|
|
197
245
|
*/
|
|
@@ -229,6 +277,10 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
229
277
|
*/
|
|
230
278
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
231
279
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
280
|
+
/**
|
|
281
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
282
|
+
*/
|
|
283
|
+
subdomain?: pulumi.Input<string>;
|
|
232
284
|
/**
|
|
233
285
|
* Tags is a map of key, value pairs.
|
|
234
286
|
*/
|
|
@@ -270,6 +322,10 @@ export interface ResourceAksUserImpersonation {
|
|
|
270
322
|
* ID of the secret store containing credentials for this resource, if any.
|
|
271
323
|
*/
|
|
272
324
|
secretStoreId?: pulumi.Input<string>;
|
|
325
|
+
/**
|
|
326
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
327
|
+
*/
|
|
328
|
+
subdomain?: pulumi.Input<string>;
|
|
273
329
|
/**
|
|
274
330
|
* Tags is a map of key, value pairs.
|
|
275
331
|
*/
|
|
@@ -318,6 +374,102 @@ export interface ResourceAmazonEks {
|
|
|
318
374
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
319
375
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
320
376
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
377
|
+
/**
|
|
378
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
379
|
+
*/
|
|
380
|
+
subdomain?: pulumi.Input<string>;
|
|
381
|
+
/**
|
|
382
|
+
* Tags is a map of key, value pairs.
|
|
383
|
+
*/
|
|
384
|
+
tags?: pulumi.Input<{
|
|
385
|
+
[key: string]: pulumi.Input<string>;
|
|
386
|
+
}>;
|
|
387
|
+
}
|
|
388
|
+
export interface ResourceAmazonEksInstanceProfile {
|
|
389
|
+
/**
|
|
390
|
+
* Bind interface
|
|
391
|
+
*/
|
|
392
|
+
bindInterface?: pulumi.Input<string>;
|
|
393
|
+
certificateAuthority?: pulumi.Input<string>;
|
|
394
|
+
clusterName: pulumi.Input<string>;
|
|
395
|
+
/**
|
|
396
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
397
|
+
*/
|
|
398
|
+
egressFilter?: pulumi.Input<string>;
|
|
399
|
+
endpoint: pulumi.Input<string>;
|
|
400
|
+
/**
|
|
401
|
+
* 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.
|
|
402
|
+
*/
|
|
403
|
+
healthcheckNamespace?: pulumi.Input<string>;
|
|
404
|
+
/**
|
|
405
|
+
* Unique human-readable name of the Resource.
|
|
406
|
+
*/
|
|
407
|
+
name: pulumi.Input<string>;
|
|
408
|
+
region: pulumi.Input<string>;
|
|
409
|
+
remoteIdentityGroupId?: pulumi.Input<string>;
|
|
410
|
+
remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
|
|
411
|
+
roleArn?: pulumi.Input<string>;
|
|
412
|
+
roleExternalId?: pulumi.Input<string>;
|
|
413
|
+
secretStoreCertificateAuthorityKey?: pulumi.Input<string>;
|
|
414
|
+
secretStoreCertificateAuthorityPath?: pulumi.Input<string>;
|
|
415
|
+
/**
|
|
416
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
417
|
+
*/
|
|
418
|
+
secretStoreId?: pulumi.Input<string>;
|
|
419
|
+
secretStoreRoleArnKey?: pulumi.Input<string>;
|
|
420
|
+
secretStoreRoleArnPath?: pulumi.Input<string>;
|
|
421
|
+
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
422
|
+
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
423
|
+
/**
|
|
424
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
425
|
+
*/
|
|
426
|
+
subdomain?: pulumi.Input<string>;
|
|
427
|
+
/**
|
|
428
|
+
* Tags is a map of key, value pairs.
|
|
429
|
+
*/
|
|
430
|
+
tags?: pulumi.Input<{
|
|
431
|
+
[key: string]: pulumi.Input<string>;
|
|
432
|
+
}>;
|
|
433
|
+
}
|
|
434
|
+
export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
435
|
+
/**
|
|
436
|
+
* Bind interface
|
|
437
|
+
*/
|
|
438
|
+
bindInterface?: pulumi.Input<string>;
|
|
439
|
+
certificateAuthority?: pulumi.Input<string>;
|
|
440
|
+
clusterName: pulumi.Input<string>;
|
|
441
|
+
/**
|
|
442
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
443
|
+
*/
|
|
444
|
+
egressFilter?: pulumi.Input<string>;
|
|
445
|
+
endpoint: pulumi.Input<string>;
|
|
446
|
+
/**
|
|
447
|
+
* 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.
|
|
448
|
+
*/
|
|
449
|
+
healthcheckNamespace?: pulumi.Input<string>;
|
|
450
|
+
/**
|
|
451
|
+
* Unique human-readable name of the Resource.
|
|
452
|
+
*/
|
|
453
|
+
name: pulumi.Input<string>;
|
|
454
|
+
region: pulumi.Input<string>;
|
|
455
|
+
remoteIdentityGroupId?: pulumi.Input<string>;
|
|
456
|
+
remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
|
|
457
|
+
roleArn?: pulumi.Input<string>;
|
|
458
|
+
roleExternalId?: pulumi.Input<string>;
|
|
459
|
+
secretStoreCertificateAuthorityKey?: pulumi.Input<string>;
|
|
460
|
+
secretStoreCertificateAuthorityPath?: pulumi.Input<string>;
|
|
461
|
+
/**
|
|
462
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
463
|
+
*/
|
|
464
|
+
secretStoreId?: pulumi.Input<string>;
|
|
465
|
+
secretStoreRoleArnKey?: pulumi.Input<string>;
|
|
466
|
+
secretStoreRoleArnPath?: pulumi.Input<string>;
|
|
467
|
+
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
468
|
+
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
469
|
+
/**
|
|
470
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
471
|
+
*/
|
|
472
|
+
subdomain?: pulumi.Input<string>;
|
|
321
473
|
/**
|
|
322
474
|
* Tags is a map of key, value pairs.
|
|
323
475
|
*/
|
|
@@ -364,6 +516,10 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
364
516
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
365
517
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
366
518
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
519
|
+
/**
|
|
520
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
521
|
+
*/
|
|
522
|
+
subdomain?: pulumi.Input<string>;
|
|
367
523
|
/**
|
|
368
524
|
* Tags is a map of key, value pairs.
|
|
369
525
|
*/
|
|
@@ -403,6 +559,10 @@ export interface ResourceAmazonEs {
|
|
|
403
559
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
404
560
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
405
561
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
562
|
+
/**
|
|
563
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
564
|
+
*/
|
|
565
|
+
subdomain?: pulumi.Input<string>;
|
|
406
566
|
/**
|
|
407
567
|
* Tags is a map of key, value pairs.
|
|
408
568
|
*/
|
|
@@ -435,6 +595,10 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
435
595
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
436
596
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
437
597
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
598
|
+
/**
|
|
599
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
600
|
+
*/
|
|
601
|
+
subdomain?: pulumi.Input<string>;
|
|
438
602
|
/**
|
|
439
603
|
* Tags is a map of key, value pairs.
|
|
440
604
|
*/
|
|
@@ -476,6 +640,10 @@ export interface ResourceAthena {
|
|
|
476
640
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
477
641
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
478
642
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
643
|
+
/**
|
|
644
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
645
|
+
*/
|
|
646
|
+
subdomain?: pulumi.Input<string>;
|
|
479
647
|
/**
|
|
480
648
|
* Tags is a map of key, value pairs.
|
|
481
649
|
*/
|
|
@@ -509,6 +677,10 @@ export interface ResourceAuroraMysql {
|
|
|
509
677
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
510
678
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
511
679
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
680
|
+
/**
|
|
681
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
682
|
+
*/
|
|
683
|
+
subdomain?: pulumi.Input<string>;
|
|
512
684
|
/**
|
|
513
685
|
* Tags is a map of key, value pairs.
|
|
514
686
|
*/
|
|
@@ -544,6 +716,10 @@ export interface ResourceAuroraPostgres {
|
|
|
544
716
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
545
717
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
546
718
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
719
|
+
/**
|
|
720
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
721
|
+
*/
|
|
722
|
+
subdomain?: pulumi.Input<string>;
|
|
547
723
|
/**
|
|
548
724
|
* Tags is a map of key, value pairs.
|
|
549
725
|
*/
|
|
@@ -618,6 +794,9 @@ export interface ResourceAwsConsole {
|
|
|
618
794
|
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
619
795
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
620
796
|
sessionExpiry?: pulumi.Input<number>;
|
|
797
|
+
/**
|
|
798
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
799
|
+
*/
|
|
621
800
|
subdomain: pulumi.Input<string>;
|
|
622
801
|
/**
|
|
623
802
|
* Tags is a map of key, value pairs.
|
|
@@ -660,6 +839,9 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
660
839
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
661
840
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
662
841
|
sessionExpiry?: pulumi.Input<number>;
|
|
842
|
+
/**
|
|
843
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
844
|
+
*/
|
|
663
845
|
subdomain: pulumi.Input<string>;
|
|
664
846
|
/**
|
|
665
847
|
* Tags is a map of key, value pairs.
|
|
@@ -692,7 +874,7 @@ export interface ResourceAzure {
|
|
|
692
874
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
693
875
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
694
876
|
/**
|
|
695
|
-
* *
|
|
877
|
+
* * azure_mysql:
|
|
696
878
|
*/
|
|
697
879
|
secretStoreTenantIdKey?: pulumi.Input<string>;
|
|
698
880
|
secretStoreTenantIdPath?: pulumi.Input<string>;
|
|
@@ -728,7 +910,7 @@ export interface ResourceAzureCertificate {
|
|
|
728
910
|
*/
|
|
729
911
|
secretStoreId?: pulumi.Input<string>;
|
|
730
912
|
/**
|
|
731
|
-
* *
|
|
913
|
+
* * azure_mysql:
|
|
732
914
|
*/
|
|
733
915
|
secretStoreTenantIdKey?: pulumi.Input<string>;
|
|
734
916
|
secretStoreTenantIdPath?: pulumi.Input<string>;
|
|
@@ -740,6 +922,44 @@ export interface ResourceAzureCertificate {
|
|
|
740
922
|
}>;
|
|
741
923
|
tenantId?: pulumi.Input<string>;
|
|
742
924
|
}
|
|
925
|
+
export interface ResourceAzureMysql {
|
|
926
|
+
/**
|
|
927
|
+
* Bind interface
|
|
928
|
+
*/
|
|
929
|
+
bindInterface?: pulumi.Input<string>;
|
|
930
|
+
database: pulumi.Input<string>;
|
|
931
|
+
/**
|
|
932
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
933
|
+
*/
|
|
934
|
+
egressFilter?: pulumi.Input<string>;
|
|
935
|
+
hostname: pulumi.Input<string>;
|
|
936
|
+
/**
|
|
937
|
+
* Unique human-readable name of the Resource.
|
|
938
|
+
*/
|
|
939
|
+
name: pulumi.Input<string>;
|
|
940
|
+
password?: pulumi.Input<string>;
|
|
941
|
+
port?: pulumi.Input<number>;
|
|
942
|
+
portOverride?: pulumi.Input<number>;
|
|
943
|
+
/**
|
|
944
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
945
|
+
*/
|
|
946
|
+
secretStoreId?: pulumi.Input<string>;
|
|
947
|
+
secretStorePasswordKey?: pulumi.Input<string>;
|
|
948
|
+
secretStorePasswordPath?: pulumi.Input<string>;
|
|
949
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
950
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
951
|
+
/**
|
|
952
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
953
|
+
*/
|
|
954
|
+
subdomain?: pulumi.Input<string>;
|
|
955
|
+
/**
|
|
956
|
+
* Tags is a map of key, value pairs.
|
|
957
|
+
*/
|
|
958
|
+
tags?: pulumi.Input<{
|
|
959
|
+
[key: string]: pulumi.Input<string>;
|
|
960
|
+
}>;
|
|
961
|
+
username?: pulumi.Input<string>;
|
|
962
|
+
}
|
|
743
963
|
export interface ResourceAzurePostgres {
|
|
744
964
|
/**
|
|
745
965
|
* Bind interface
|
|
@@ -767,6 +987,10 @@ export interface ResourceAzurePostgres {
|
|
|
767
987
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
768
988
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
769
989
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
990
|
+
/**
|
|
991
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
992
|
+
*/
|
|
993
|
+
subdomain?: pulumi.Input<string>;
|
|
770
994
|
/**
|
|
771
995
|
* Tags is a map of key, value pairs.
|
|
772
996
|
*/
|
|
@@ -798,6 +1022,10 @@ export interface ResourceBigQuery {
|
|
|
798
1022
|
secretStoreId?: pulumi.Input<string>;
|
|
799
1023
|
secretStorePrivateKeyKey?: pulumi.Input<string>;
|
|
800
1024
|
secretStorePrivateKeyPath?: pulumi.Input<string>;
|
|
1025
|
+
/**
|
|
1026
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1027
|
+
*/
|
|
1028
|
+
subdomain?: pulumi.Input<string>;
|
|
801
1029
|
/**
|
|
802
1030
|
* Tags is a map of key, value pairs.
|
|
803
1031
|
*/
|
|
@@ -831,6 +1059,10 @@ export interface ResourceCassandra {
|
|
|
831
1059
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
832
1060
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
833
1061
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1062
|
+
/**
|
|
1063
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1064
|
+
*/
|
|
1065
|
+
subdomain?: pulumi.Input<string>;
|
|
834
1066
|
/**
|
|
835
1067
|
* Tags is a map of key, value pairs.
|
|
836
1068
|
*/
|
|
@@ -867,6 +1099,10 @@ export interface ResourceCitus {
|
|
|
867
1099
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
868
1100
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
869
1101
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1104
|
+
*/
|
|
1105
|
+
subdomain?: pulumi.Input<string>;
|
|
870
1106
|
/**
|
|
871
1107
|
* Tags is a map of key, value pairs.
|
|
872
1108
|
*/
|
|
@@ -901,6 +1137,10 @@ export interface ResourceClustrix {
|
|
|
901
1137
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
902
1138
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
903
1139
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1140
|
+
/**
|
|
1141
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1142
|
+
*/
|
|
1143
|
+
subdomain?: pulumi.Input<string>;
|
|
904
1144
|
/**
|
|
905
1145
|
* Tags is a map of key, value pairs.
|
|
906
1146
|
*/
|
|
@@ -936,6 +1176,10 @@ export interface ResourceCockroach {
|
|
|
936
1176
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
937
1177
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
938
1178
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1179
|
+
/**
|
|
1180
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1181
|
+
*/
|
|
1182
|
+
subdomain?: pulumi.Input<string>;
|
|
939
1183
|
/**
|
|
940
1184
|
* Tags is a map of key, value pairs.
|
|
941
1185
|
*/
|
|
@@ -959,7 +1203,7 @@ export interface ResourceDb2I {
|
|
|
959
1203
|
*/
|
|
960
1204
|
name: pulumi.Input<string>;
|
|
961
1205
|
password?: pulumi.Input<string>;
|
|
962
|
-
port
|
|
1206
|
+
port: pulumi.Input<number>;
|
|
963
1207
|
portOverride?: pulumi.Input<number>;
|
|
964
1208
|
/**
|
|
965
1209
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -969,6 +1213,10 @@ export interface ResourceDb2I {
|
|
|
969
1213
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
970
1214
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
971
1215
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1216
|
+
/**
|
|
1217
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1218
|
+
*/
|
|
1219
|
+
subdomain?: pulumi.Input<string>;
|
|
972
1220
|
/**
|
|
973
1221
|
* Tags is a map of key, value pairs.
|
|
974
1222
|
*/
|
|
@@ -1004,6 +1252,10 @@ export interface ResourceDb2Luw {
|
|
|
1004
1252
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1005
1253
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1006
1254
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1255
|
+
/**
|
|
1256
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1257
|
+
*/
|
|
1258
|
+
subdomain?: pulumi.Input<string>;
|
|
1007
1259
|
/**
|
|
1008
1260
|
* Tags is a map of key, value pairs.
|
|
1009
1261
|
*/
|
|
@@ -1038,6 +1290,10 @@ export interface ResourceDocumentDbHost {
|
|
|
1038
1290
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1039
1291
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1040
1292
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1293
|
+
/**
|
|
1294
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1295
|
+
*/
|
|
1296
|
+
subdomain?: pulumi.Input<string>;
|
|
1041
1297
|
/**
|
|
1042
1298
|
* Tags is a map of key, value pairs.
|
|
1043
1299
|
*/
|
|
@@ -1073,6 +1329,10 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
1073
1329
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1074
1330
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1075
1331
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1332
|
+
/**
|
|
1333
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1334
|
+
*/
|
|
1335
|
+
subdomain?: pulumi.Input<string>;
|
|
1076
1336
|
/**
|
|
1077
1337
|
* Tags is a map of key, value pairs.
|
|
1078
1338
|
*/
|
|
@@ -1106,6 +1366,10 @@ export interface ResourceDruid {
|
|
|
1106
1366
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1107
1367
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1108
1368
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1369
|
+
/**
|
|
1370
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1371
|
+
*/
|
|
1372
|
+
subdomain?: pulumi.Input<string>;
|
|
1109
1373
|
/**
|
|
1110
1374
|
* Tags is a map of key, value pairs.
|
|
1111
1375
|
*/
|
|
@@ -1146,6 +1410,10 @@ export interface ResourceDynamoDb {
|
|
|
1146
1410
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
1147
1411
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
1148
1412
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
1413
|
+
/**
|
|
1414
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1415
|
+
*/
|
|
1416
|
+
subdomain?: pulumi.Input<string>;
|
|
1149
1417
|
/**
|
|
1150
1418
|
* Tags is a map of key, value pairs.
|
|
1151
1419
|
*/
|
|
@@ -1178,6 +1446,10 @@ export interface ResourceElastic {
|
|
|
1178
1446
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1179
1447
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1180
1448
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1449
|
+
/**
|
|
1450
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1451
|
+
*/
|
|
1452
|
+
subdomain?: pulumi.Input<string>;
|
|
1181
1453
|
/**
|
|
1182
1454
|
* Tags is a map of key, value pairs.
|
|
1183
1455
|
*/
|
|
@@ -1210,6 +1482,12 @@ export interface ResourceElasticacheRedis {
|
|
|
1210
1482
|
secretStoreId?: pulumi.Input<string>;
|
|
1211
1483
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
1212
1484
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1485
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1486
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1487
|
+
/**
|
|
1488
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1489
|
+
*/
|
|
1490
|
+
subdomain?: pulumi.Input<string>;
|
|
1213
1491
|
/**
|
|
1214
1492
|
* Tags is a map of key, value pairs.
|
|
1215
1493
|
*/
|
|
@@ -1217,6 +1495,7 @@ export interface ResourceElasticacheRedis {
|
|
|
1217
1495
|
[key: string]: pulumi.Input<string>;
|
|
1218
1496
|
}>;
|
|
1219
1497
|
tlsRequired?: pulumi.Input<boolean>;
|
|
1498
|
+
username?: pulumi.Input<string>;
|
|
1220
1499
|
}
|
|
1221
1500
|
export interface ResourceGcp {
|
|
1222
1501
|
/**
|
|
@@ -1276,6 +1555,10 @@ export interface ResourceGoogleGke {
|
|
|
1276
1555
|
secretStoreServiceAccountKeyKey?: pulumi.Input<string>;
|
|
1277
1556
|
secretStoreServiceAccountKeyPath?: pulumi.Input<string>;
|
|
1278
1557
|
serviceAccountKey?: pulumi.Input<string>;
|
|
1558
|
+
/**
|
|
1559
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1560
|
+
*/
|
|
1561
|
+
subdomain?: pulumi.Input<string>;
|
|
1279
1562
|
/**
|
|
1280
1563
|
* Tags is a map of key, value pairs.
|
|
1281
1564
|
*/
|
|
@@ -1311,6 +1594,10 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
1311
1594
|
secretStoreServiceAccountKeyKey?: pulumi.Input<string>;
|
|
1312
1595
|
secretStoreServiceAccountKeyPath?: pulumi.Input<string>;
|
|
1313
1596
|
serviceAccountKey?: pulumi.Input<string>;
|
|
1597
|
+
/**
|
|
1598
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1599
|
+
*/
|
|
1600
|
+
subdomain?: pulumi.Input<string>;
|
|
1314
1601
|
/**
|
|
1315
1602
|
* Tags is a map of key, value pairs.
|
|
1316
1603
|
*/
|
|
@@ -1345,6 +1632,10 @@ export interface ResourceGreenplum {
|
|
|
1345
1632
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1346
1633
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1347
1634
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1637
|
+
*/
|
|
1638
|
+
subdomain?: pulumi.Input<string>;
|
|
1348
1639
|
/**
|
|
1349
1640
|
* Tags is a map of key, value pairs.
|
|
1350
1641
|
*/
|
|
@@ -1366,6 +1657,7 @@ export interface ResourceHttpAuth {
|
|
|
1366
1657
|
egressFilter?: pulumi.Input<string>;
|
|
1367
1658
|
headersBlacklist?: pulumi.Input<string>;
|
|
1368
1659
|
healthcheckPath: pulumi.Input<string>;
|
|
1660
|
+
hostOverride?: pulumi.Input<string>;
|
|
1369
1661
|
/**
|
|
1370
1662
|
* Unique human-readable name of the Resource.
|
|
1371
1663
|
*/
|
|
@@ -1376,6 +1668,9 @@ export interface ResourceHttpAuth {
|
|
|
1376
1668
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1377
1669
|
*/
|
|
1378
1670
|
secretStoreId?: pulumi.Input<string>;
|
|
1671
|
+
/**
|
|
1672
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1673
|
+
*/
|
|
1379
1674
|
subdomain: pulumi.Input<string>;
|
|
1380
1675
|
/**
|
|
1381
1676
|
* Tags is a map of key, value pairs.
|
|
@@ -1400,6 +1695,7 @@ export interface ResourceHttpBasicAuth {
|
|
|
1400
1695
|
egressFilter?: pulumi.Input<string>;
|
|
1401
1696
|
headersBlacklist?: pulumi.Input<string>;
|
|
1402
1697
|
healthcheckPath: pulumi.Input<string>;
|
|
1698
|
+
hostOverride?: pulumi.Input<string>;
|
|
1403
1699
|
/**
|
|
1404
1700
|
* Unique human-readable name of the Resource.
|
|
1405
1701
|
*/
|
|
@@ -1413,6 +1709,9 @@ export interface ResourceHttpBasicAuth {
|
|
|
1413
1709
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1414
1710
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1415
1711
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1712
|
+
/**
|
|
1713
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1714
|
+
*/
|
|
1416
1715
|
subdomain: pulumi.Input<string>;
|
|
1417
1716
|
/**
|
|
1418
1717
|
* Tags is a map of key, value pairs.
|
|
@@ -1438,6 +1737,7 @@ export interface ResourceHttpNoAuth {
|
|
|
1438
1737
|
egressFilter?: pulumi.Input<string>;
|
|
1439
1738
|
headersBlacklist?: pulumi.Input<string>;
|
|
1440
1739
|
healthcheckPath: pulumi.Input<string>;
|
|
1740
|
+
hostOverride?: pulumi.Input<string>;
|
|
1441
1741
|
/**
|
|
1442
1742
|
* Unique human-readable name of the Resource.
|
|
1443
1743
|
*/
|
|
@@ -1446,6 +1746,9 @@ export interface ResourceHttpNoAuth {
|
|
|
1446
1746
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1447
1747
|
*/
|
|
1448
1748
|
secretStoreId?: pulumi.Input<string>;
|
|
1749
|
+
/**
|
|
1750
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1751
|
+
*/
|
|
1449
1752
|
subdomain: pulumi.Input<string>;
|
|
1450
1753
|
/**
|
|
1451
1754
|
* Tags is a map of key, value pairs.
|
|
@@ -1493,6 +1796,10 @@ export interface ResourceKubernetes {
|
|
|
1493
1796
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1494
1797
|
*/
|
|
1495
1798
|
secretStoreId?: pulumi.Input<string>;
|
|
1799
|
+
/**
|
|
1800
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1801
|
+
*/
|
|
1802
|
+
subdomain?: pulumi.Input<string>;
|
|
1496
1803
|
/**
|
|
1497
1804
|
* Tags is a map of key, value pairs.
|
|
1498
1805
|
*/
|
|
@@ -1529,6 +1836,10 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
1529
1836
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1530
1837
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1531
1838
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1839
|
+
/**
|
|
1840
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1841
|
+
*/
|
|
1842
|
+
subdomain?: pulumi.Input<string>;
|
|
1532
1843
|
/**
|
|
1533
1844
|
* Tags is a map of key, value pairs.
|
|
1534
1845
|
*/
|
|
@@ -1568,6 +1879,10 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
1568
1879
|
*/
|
|
1569
1880
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
1570
1881
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
1882
|
+
/**
|
|
1883
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1884
|
+
*/
|
|
1885
|
+
subdomain?: pulumi.Input<string>;
|
|
1571
1886
|
/**
|
|
1572
1887
|
* Tags is a map of key, value pairs.
|
|
1573
1888
|
*/
|
|
@@ -1605,6 +1920,10 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
1605
1920
|
*/
|
|
1606
1921
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
1607
1922
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
1923
|
+
/**
|
|
1924
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1925
|
+
*/
|
|
1926
|
+
subdomain?: pulumi.Input<string>;
|
|
1608
1927
|
/**
|
|
1609
1928
|
* Tags is a map of key, value pairs.
|
|
1610
1929
|
*/
|
|
@@ -1646,6 +1965,10 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
1646
1965
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1647
1966
|
*/
|
|
1648
1967
|
secretStoreId?: pulumi.Input<string>;
|
|
1968
|
+
/**
|
|
1969
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1970
|
+
*/
|
|
1971
|
+
subdomain?: pulumi.Input<string>;
|
|
1649
1972
|
/**
|
|
1650
1973
|
* Tags is a map of key, value pairs.
|
|
1651
1974
|
*/
|
|
@@ -1679,6 +2002,10 @@ export interface ResourceMaria {
|
|
|
1679
2002
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1680
2003
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1681
2004
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2005
|
+
/**
|
|
2006
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2007
|
+
*/
|
|
2008
|
+
subdomain?: pulumi.Input<string>;
|
|
1682
2009
|
/**
|
|
1683
2010
|
* Tags is a map of key, value pairs.
|
|
1684
2011
|
*/
|
|
@@ -1707,6 +2034,10 @@ export interface ResourceMemcached {
|
|
|
1707
2034
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1708
2035
|
*/
|
|
1709
2036
|
secretStoreId?: pulumi.Input<string>;
|
|
2037
|
+
/**
|
|
2038
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2039
|
+
*/
|
|
2040
|
+
subdomain?: pulumi.Input<string>;
|
|
1710
2041
|
/**
|
|
1711
2042
|
* Tags is a map of key, value pairs.
|
|
1712
2043
|
*/
|
|
@@ -1740,6 +2071,10 @@ export interface ResourceMemsql {
|
|
|
1740
2071
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1741
2072
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1742
2073
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2074
|
+
/**
|
|
2075
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2076
|
+
*/
|
|
2077
|
+
subdomain?: pulumi.Input<string>;
|
|
1743
2078
|
/**
|
|
1744
2079
|
* Tags is a map of key, value pairs.
|
|
1745
2080
|
*/
|
|
@@ -1774,6 +2109,10 @@ export interface ResourceMongoHost {
|
|
|
1774
2109
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1775
2110
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1776
2111
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2112
|
+
/**
|
|
2113
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2114
|
+
*/
|
|
2115
|
+
subdomain?: pulumi.Input<string>;
|
|
1777
2116
|
/**
|
|
1778
2117
|
* Tags is a map of key, value pairs.
|
|
1779
2118
|
*/
|
|
@@ -1810,6 +2149,10 @@ export interface ResourceMongoLegacyHost {
|
|
|
1810
2149
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1811
2150
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1812
2151
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2152
|
+
/**
|
|
2153
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2154
|
+
*/
|
|
2155
|
+
subdomain?: pulumi.Input<string>;
|
|
1813
2156
|
/**
|
|
1814
2157
|
* Tags is a map of key, value pairs.
|
|
1815
2158
|
*/
|
|
@@ -1847,6 +2190,10 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
1847
2190
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1848
2191
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1849
2192
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2193
|
+
/**
|
|
2194
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2195
|
+
*/
|
|
2196
|
+
subdomain?: pulumi.Input<string>;
|
|
1850
2197
|
/**
|
|
1851
2198
|
* Tags is a map of key, value pairs.
|
|
1852
2199
|
*/
|
|
@@ -1884,6 +2231,10 @@ export interface ResourceMongoReplicaSet {
|
|
|
1884
2231
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1885
2232
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1886
2233
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2234
|
+
/**
|
|
2235
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2236
|
+
*/
|
|
2237
|
+
subdomain?: pulumi.Input<string>;
|
|
1887
2238
|
/**
|
|
1888
2239
|
* Tags is a map of key, value pairs.
|
|
1889
2240
|
*/
|
|
@@ -1918,6 +2269,10 @@ export interface ResourceMongoShardedCluster {
|
|
|
1918
2269
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1919
2270
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1920
2271
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2272
|
+
/**
|
|
2273
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2274
|
+
*/
|
|
2275
|
+
subdomain?: pulumi.Input<string>;
|
|
1921
2276
|
/**
|
|
1922
2277
|
* Tags is a map of key, value pairs.
|
|
1923
2278
|
*/
|
|
@@ -1963,6 +2318,10 @@ export interface ResourceMtlsMysql {
|
|
|
1963
2318
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1964
2319
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1965
2320
|
serverName?: pulumi.Input<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?: pulumi.Input<string>;
|
|
1966
2325
|
/**
|
|
1967
2326
|
* Tags is a map of key, value pairs.
|
|
1968
2327
|
*/
|
|
@@ -2008,6 +2367,10 @@ export interface ResourceMtlsPostgres {
|
|
|
2008
2367
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2009
2368
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2010
2369
|
serverName?: pulumi.Input<string>;
|
|
2370
|
+
/**
|
|
2371
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2372
|
+
*/
|
|
2373
|
+
subdomain?: pulumi.Input<string>;
|
|
2011
2374
|
/**
|
|
2012
2375
|
* Tags is a map of key, value pairs.
|
|
2013
2376
|
*/
|
|
@@ -2042,6 +2405,10 @@ export interface ResourceMysql {
|
|
|
2042
2405
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2043
2406
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2044
2407
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2408
|
+
/**
|
|
2409
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2410
|
+
*/
|
|
2411
|
+
subdomain?: pulumi.Input<string>;
|
|
2045
2412
|
/**
|
|
2046
2413
|
* Tags is a map of key, value pairs.
|
|
2047
2414
|
*/
|
|
@@ -2070,6 +2437,10 @@ export interface ResourceNeptune {
|
|
|
2070
2437
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2071
2438
|
*/
|
|
2072
2439
|
secretStoreId?: pulumi.Input<string>;
|
|
2440
|
+
/**
|
|
2441
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2442
|
+
*/
|
|
2443
|
+
subdomain?: pulumi.Input<string>;
|
|
2073
2444
|
/**
|
|
2074
2445
|
* Tags is a map of key, value pairs.
|
|
2075
2446
|
*/
|
|
@@ -2110,6 +2481,10 @@ export interface ResourceNeptuneIam {
|
|
|
2110
2481
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
2111
2482
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
2112
2483
|
secretStoreSecretAccessKeyPath?: pulumi.Input<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?: pulumi.Input<string>;
|
|
2113
2488
|
/**
|
|
2114
2489
|
* Tags is a map of key, value pairs.
|
|
2115
2490
|
*/
|
|
@@ -2143,6 +2518,10 @@ export interface ResourceOracle {
|
|
|
2143
2518
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2144
2519
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2145
2520
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2521
|
+
/**
|
|
2522
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2523
|
+
*/
|
|
2524
|
+
subdomain?: pulumi.Input<string>;
|
|
2146
2525
|
/**
|
|
2147
2526
|
* Tags is a map of key, value pairs.
|
|
2148
2527
|
*/
|
|
@@ -2179,6 +2558,10 @@ export interface ResourcePostgres {
|
|
|
2179
2558
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2180
2559
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2181
2560
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2561
|
+
/**
|
|
2562
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2563
|
+
*/
|
|
2564
|
+
subdomain?: pulumi.Input<string>;
|
|
2182
2565
|
/**
|
|
2183
2566
|
* Tags is a map of key, value pairs.
|
|
2184
2567
|
*/
|
|
@@ -2211,6 +2594,10 @@ export interface ResourcePresto {
|
|
|
2211
2594
|
secretStoreId?: pulumi.Input<string>;
|
|
2212
2595
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
2213
2596
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2597
|
+
/**
|
|
2598
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2599
|
+
*/
|
|
2600
|
+
subdomain?: pulumi.Input<string>;
|
|
2214
2601
|
/**
|
|
2215
2602
|
* Tags is a map of key, value pairs.
|
|
2216
2603
|
*/
|
|
@@ -2245,6 +2632,10 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
2245
2632
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2246
2633
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2247
2634
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2637
|
+
*/
|
|
2638
|
+
subdomain?: pulumi.Input<string>;
|
|
2248
2639
|
/**
|
|
2249
2640
|
* Tags is a map of key, value pairs.
|
|
2250
2641
|
*/
|
|
@@ -2274,6 +2665,10 @@ export interface ResourceRawTcp {
|
|
|
2274
2665
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2275
2666
|
*/
|
|
2276
2667
|
secretStoreId?: pulumi.Input<string>;
|
|
2668
|
+
/**
|
|
2669
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2670
|
+
*/
|
|
2671
|
+
subdomain?: pulumi.Input<string>;
|
|
2277
2672
|
/**
|
|
2278
2673
|
* Tags is a map of key, value pairs.
|
|
2279
2674
|
*/
|
|
@@ -2297,7 +2692,7 @@ export interface ResourceRdp {
|
|
|
2297
2692
|
*/
|
|
2298
2693
|
name: pulumi.Input<string>;
|
|
2299
2694
|
password?: pulumi.Input<string>;
|
|
2300
|
-
port
|
|
2695
|
+
port?: pulumi.Input<number>;
|
|
2301
2696
|
portOverride?: pulumi.Input<number>;
|
|
2302
2697
|
/**
|
|
2303
2698
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -2307,6 +2702,10 @@ export interface ResourceRdp {
|
|
|
2307
2702
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2308
2703
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2309
2704
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2705
|
+
/**
|
|
2706
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2707
|
+
*/
|
|
2708
|
+
subdomain?: pulumi.Input<string>;
|
|
2310
2709
|
/**
|
|
2311
2710
|
* Tags is a map of key, value pairs.
|
|
2312
2711
|
*/
|
|
@@ -2338,12 +2737,20 @@ export interface ResourceRedis {
|
|
|
2338
2737
|
secretStoreId?: pulumi.Input<string>;
|
|
2339
2738
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
2340
2739
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2740
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2741
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2742
|
+
/**
|
|
2743
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2744
|
+
*/
|
|
2745
|
+
subdomain?: pulumi.Input<string>;
|
|
2341
2746
|
/**
|
|
2342
2747
|
* Tags is a map of key, value pairs.
|
|
2343
2748
|
*/
|
|
2344
2749
|
tags?: pulumi.Input<{
|
|
2345
2750
|
[key: string]: pulumi.Input<string>;
|
|
2346
2751
|
}>;
|
|
2752
|
+
tlsRequired?: pulumi.Input<boolean>;
|
|
2753
|
+
username?: pulumi.Input<string>;
|
|
2347
2754
|
}
|
|
2348
2755
|
export interface ResourceRedshift {
|
|
2349
2756
|
/**
|
|
@@ -2372,6 +2779,10 @@ export interface ResourceRedshift {
|
|
|
2372
2779
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2373
2780
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2374
2781
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2782
|
+
/**
|
|
2783
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2784
|
+
*/
|
|
2785
|
+
subdomain?: pulumi.Input<string>;
|
|
2375
2786
|
/**
|
|
2376
2787
|
* Tags is a map of key, value pairs.
|
|
2377
2788
|
*/
|
|
@@ -2406,6 +2817,10 @@ export interface ResourceSingleStore {
|
|
|
2406
2817
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2407
2818
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2408
2819
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2820
|
+
/**
|
|
2821
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2822
|
+
*/
|
|
2823
|
+
subdomain?: pulumi.Input<string>;
|
|
2409
2824
|
/**
|
|
2410
2825
|
* Tags is a map of key, value pairs.
|
|
2411
2826
|
*/
|
|
@@ -2440,6 +2855,10 @@ export interface ResourceSnowflake {
|
|
|
2440
2855
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2441
2856
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2442
2857
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2858
|
+
/**
|
|
2859
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2860
|
+
*/
|
|
2861
|
+
subdomain?: pulumi.Input<string>;
|
|
2443
2862
|
/**
|
|
2444
2863
|
* Tags is a map of key, value pairs.
|
|
2445
2864
|
*/
|
|
@@ -2448,6 +2867,39 @@ export interface ResourceSnowflake {
|
|
|
2448
2867
|
}>;
|
|
2449
2868
|
username?: pulumi.Input<string>;
|
|
2450
2869
|
}
|
|
2870
|
+
export interface ResourceSnowsight {
|
|
2871
|
+
/**
|
|
2872
|
+
* Bind interface
|
|
2873
|
+
*/
|
|
2874
|
+
bindInterface?: pulumi.Input<string>;
|
|
2875
|
+
/**
|
|
2876
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
2877
|
+
*/
|
|
2878
|
+
egressFilter?: pulumi.Input<string>;
|
|
2879
|
+
healthcheckUsername: pulumi.Input<string>;
|
|
2880
|
+
/**
|
|
2881
|
+
* Unique human-readable name of the Resource.
|
|
2882
|
+
*/
|
|
2883
|
+
name: pulumi.Input<string>;
|
|
2884
|
+
portOverride?: pulumi.Input<number>;
|
|
2885
|
+
samlMetadata?: pulumi.Input<string>;
|
|
2886
|
+
/**
|
|
2887
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
2888
|
+
*/
|
|
2889
|
+
secretStoreId?: pulumi.Input<string>;
|
|
2890
|
+
secretStoreSamlMetadataKey?: pulumi.Input<string>;
|
|
2891
|
+
secretStoreSamlMetadataPath?: pulumi.Input<string>;
|
|
2892
|
+
/**
|
|
2893
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2894
|
+
*/
|
|
2895
|
+
subdomain: pulumi.Input<string>;
|
|
2896
|
+
/**
|
|
2897
|
+
* Tags is a map of key, value pairs.
|
|
2898
|
+
*/
|
|
2899
|
+
tags?: pulumi.Input<{
|
|
2900
|
+
[key: string]: pulumi.Input<string>;
|
|
2901
|
+
}>;
|
|
2902
|
+
}
|
|
2451
2903
|
export interface ResourceSqlServer {
|
|
2452
2904
|
/**
|
|
2453
2905
|
* Bind interface
|
|
@@ -2476,6 +2928,10 @@ export interface ResourceSqlServer {
|
|
|
2476
2928
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2477
2929
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2478
2930
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2931
|
+
/**
|
|
2932
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2933
|
+
*/
|
|
2934
|
+
subdomain?: pulumi.Input<string>;
|
|
2479
2935
|
/**
|
|
2480
2936
|
* Tags is a map of key, value pairs.
|
|
2481
2937
|
*/
|
|
@@ -2510,6 +2966,10 @@ export interface ResourceSsh {
|
|
|
2510
2966
|
secretStoreId?: pulumi.Input<string>;
|
|
2511
2967
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2512
2968
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2969
|
+
/**
|
|
2970
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2971
|
+
*/
|
|
2972
|
+
subdomain?: pulumi.Input<string>;
|
|
2513
2973
|
/**
|
|
2514
2974
|
* Tags is a map of key, value pairs.
|
|
2515
2975
|
*/
|
|
@@ -2545,6 +3005,10 @@ export interface ResourceSshCert {
|
|
|
2545
3005
|
secretStoreId?: pulumi.Input<string>;
|
|
2546
3006
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2547
3007
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3008
|
+
/**
|
|
3009
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3010
|
+
*/
|
|
3011
|
+
subdomain?: pulumi.Input<string>;
|
|
2548
3012
|
/**
|
|
2549
3013
|
* Tags is a map of key, value pairs.
|
|
2550
3014
|
*/
|
|
@@ -2580,6 +3044,10 @@ export interface ResourceSshCustomerKey {
|
|
|
2580
3044
|
secretStorePrivateKeyPath?: pulumi.Input<string>;
|
|
2581
3045
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2582
3046
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3047
|
+
/**
|
|
3048
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3049
|
+
*/
|
|
3050
|
+
subdomain?: pulumi.Input<string>;
|
|
2583
3051
|
/**
|
|
2584
3052
|
* Tags is a map of key, value pairs.
|
|
2585
3053
|
*/
|
|
@@ -2613,6 +3081,10 @@ export interface ResourceSybase {
|
|
|
2613
3081
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2614
3082
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2615
3083
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3084
|
+
/**
|
|
3085
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3086
|
+
*/
|
|
3087
|
+
subdomain?: pulumi.Input<string>;
|
|
2616
3088
|
/**
|
|
2617
3089
|
* Tags is a map of key, value pairs.
|
|
2618
3090
|
*/
|
|
@@ -2646,6 +3118,10 @@ export interface ResourceSybaseIq {
|
|
|
2646
3118
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2647
3119
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2648
3120
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3121
|
+
/**
|
|
3122
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3123
|
+
*/
|
|
3124
|
+
subdomain?: pulumi.Input<string>;
|
|
2649
3125
|
/**
|
|
2650
3126
|
* Tags is a map of key, value pairs.
|
|
2651
3127
|
*/
|
|
@@ -2679,6 +3155,10 @@ export interface ResourceTeradata {
|
|
|
2679
3155
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2680
3156
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2681
3157
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3158
|
+
/**
|
|
3159
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3160
|
+
*/
|
|
3161
|
+
subdomain?: pulumi.Input<string>;
|
|
2682
3162
|
/**
|
|
2683
3163
|
* Tags is a map of key, value pairs.
|
|
2684
3164
|
*/
|
|
@@ -2729,6 +3209,19 @@ export interface SecretStoreCyberarkConjur {
|
|
|
2729
3209
|
[key: string]: pulumi.Input<string>;
|
|
2730
3210
|
}>;
|
|
2731
3211
|
}
|
|
3212
|
+
export interface SecretStoreCyberarkPam {
|
|
3213
|
+
appUrl: pulumi.Input<string>;
|
|
3214
|
+
/**
|
|
3215
|
+
* Unique human-readable name of the SecretStore.
|
|
3216
|
+
*/
|
|
3217
|
+
name: pulumi.Input<string>;
|
|
3218
|
+
/**
|
|
3219
|
+
* Tags is a map of key, value pairs.
|
|
3220
|
+
*/
|
|
3221
|
+
tags?: pulumi.Input<{
|
|
3222
|
+
[key: string]: pulumi.Input<string>;
|
|
3223
|
+
}>;
|
|
3224
|
+
}
|
|
2732
3225
|
export interface SecretStoreCyberarkPamExperimental {
|
|
2733
3226
|
appUrl: pulumi.Input<string>;
|
|
2734
3227
|
/**
|