@pierskarsenbarg/sdm 1.27.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account.d.ts +2 -0
- package/account.js +2 -0
- package/account.js.map +1 -1
- package/approvalWorkflow.d.ts +32 -1
- package/approvalWorkflow.js +32 -1
- package/approvalWorkflow.js.map +1 -1
- package/getAccount.d.ts +12 -0
- package/getAccount.js +2 -0
- package/getAccount.js.map +1 -1
- package/getResource.d.ts +1 -1
- package/getWorkflow.d.ts +6 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowApprover.d.ts +2 -30
- package/getWorkflowApprover.js +2 -30
- package/getWorkflowApprover.js.map +1 -1
- package/index.d.ts +1 -3
- package/index.js +18 -4
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +14 -0
- package/provider.js +8 -0
- package/provider.js.map +1 -1
- package/resource.d.ts +39 -27
- package/resource.js +6 -0
- package/resource.js.map +1 -1
- package/types/input.d.ts +186 -10
- package/types/output.d.ts +371 -14
- package/workflow.d.ts +6 -0
- package/workflow.js.map +1 -1
- package/workflowApprover.d.ts +1 -15
- package/workflowApprover.js +1 -15
- package/workflowApprover.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -37,10 +37,22 @@ export interface AccountUser {
|
|
|
37
37
|
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
38
38
|
*/
|
|
39
39
|
managedBy: string;
|
|
40
|
+
/**
|
|
41
|
+
* Manager ID is the ID of the user's manager. This field is empty when the user has no manager.
|
|
42
|
+
*/
|
|
43
|
+
managerId?: string;
|
|
40
44
|
/**
|
|
41
45
|
* PermissionLevel is the user's permission level e.g. admin, DBA, user.
|
|
42
46
|
*/
|
|
43
47
|
permissionLevel: string;
|
|
48
|
+
/**
|
|
49
|
+
* Resolved Manager ID is the ID of the user's manager derived from the manager_id, if present, or from the SCIM metadata. This is a read-only field that's only populated for get and list.
|
|
50
|
+
*/
|
|
51
|
+
resolvedManagerId: string;
|
|
52
|
+
/**
|
|
53
|
+
* SCIM contains the raw SCIM metadata for the user. This is a read-only field.
|
|
54
|
+
*/
|
|
55
|
+
scim: string;
|
|
44
56
|
/**
|
|
45
57
|
* The Service's suspended state.
|
|
46
58
|
*/
|
|
@@ -68,11 +80,15 @@ export interface ApprovalWorkflowApprovalStep {
|
|
|
68
80
|
}
|
|
69
81
|
export interface ApprovalWorkflowApprovalStepApprover {
|
|
70
82
|
/**
|
|
71
|
-
* The account id of the approver (only
|
|
83
|
+
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
72
84
|
*/
|
|
73
85
|
accountId?: string;
|
|
74
86
|
/**
|
|
75
|
-
*
|
|
87
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
|
|
88
|
+
*/
|
|
89
|
+
reference?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
76
92
|
*/
|
|
77
93
|
roleId?: string;
|
|
78
94
|
}
|
|
@@ -175,10 +191,22 @@ export interface GetAccountAccountUser {
|
|
|
175
191
|
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
176
192
|
*/
|
|
177
193
|
managedBy: string;
|
|
194
|
+
/**
|
|
195
|
+
* Manager ID is the ID of the user's manager. This field is empty when the user has no manager.
|
|
196
|
+
*/
|
|
197
|
+
managerId?: string;
|
|
178
198
|
/**
|
|
179
199
|
* PermissionLevel is the user's permission level e.g. admin, DBA, user.
|
|
180
200
|
*/
|
|
181
201
|
permissionLevel?: string;
|
|
202
|
+
/**
|
|
203
|
+
* Resolved Manager ID is the ID of the user's manager derived from the manager_id, if present, or from the SCIM metadata. This is a read-only field that's only populated for get and list.
|
|
204
|
+
*/
|
|
205
|
+
resolvedManagerId: string;
|
|
206
|
+
/**
|
|
207
|
+
* SCIM contains the raw SCIM metadata for the user. This is a read-only field.
|
|
208
|
+
*/
|
|
209
|
+
scim: string;
|
|
182
210
|
/**
|
|
183
211
|
* Reserved for future use. Always false for tokens.
|
|
184
212
|
*/
|
|
@@ -220,11 +248,15 @@ export interface GetApprovalWorkflowApprovalStep {
|
|
|
220
248
|
}
|
|
221
249
|
export interface GetApprovalWorkflowApprovalStepApprover {
|
|
222
250
|
/**
|
|
223
|
-
* The account id of the approver (only
|
|
251
|
+
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
224
252
|
*/
|
|
225
253
|
accountId?: string;
|
|
226
254
|
/**
|
|
227
|
-
*
|
|
255
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
|
|
256
|
+
*/
|
|
257
|
+
reference?: string;
|
|
258
|
+
/**
|
|
259
|
+
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
228
260
|
*/
|
|
229
261
|
roleId?: string;
|
|
230
262
|
}
|
|
@@ -266,11 +298,15 @@ export interface GetApprovalWorkflowApprovalWorkflowApprovalStep {
|
|
|
266
298
|
}
|
|
267
299
|
export interface GetApprovalWorkflowApprovalWorkflowApprovalStepApprover {
|
|
268
300
|
/**
|
|
269
|
-
* The account id of the approver (only
|
|
301
|
+
* The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
270
302
|
*/
|
|
271
303
|
accountId?: string;
|
|
272
304
|
/**
|
|
273
|
-
*
|
|
305
|
+
* A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
|
|
306
|
+
*/
|
|
307
|
+
reference?: string;
|
|
308
|
+
/**
|
|
309
|
+
* The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
|
|
274
310
|
*/
|
|
275
311
|
roleId?: string;
|
|
276
312
|
}
|
|
@@ -581,6 +617,7 @@ export interface GetRemoteIdentityRemoteIdentity {
|
|
|
581
617
|
username?: string;
|
|
582
618
|
}
|
|
583
619
|
export interface GetResourceResource {
|
|
620
|
+
aerospikes: outputs.GetResourceResourceAerospike[];
|
|
584
621
|
aks: outputs.GetResourceResourceAk[];
|
|
585
622
|
aksBasicAuths: outputs.GetResourceResourceAksBasicAuth[];
|
|
586
623
|
aksServiceAccountUserImpersonations: outputs.GetResourceResourceAksServiceAccountUserImpersonation[];
|
|
@@ -622,6 +659,7 @@ export interface GetResourceResource {
|
|
|
622
659
|
db2Luws: outputs.GetResourceResourceDb2Luw[];
|
|
623
660
|
documentDbHostIams: outputs.GetResourceResourceDocumentDbHostIam[];
|
|
624
661
|
documentDbHosts: outputs.GetResourceResourceDocumentDbHost[];
|
|
662
|
+
documentDbReplicaSetIams: outputs.GetResourceResourceDocumentDbReplicaSetIam[];
|
|
625
663
|
documentDbReplicaSets: outputs.GetResourceResourceDocumentDbReplicaSet[];
|
|
626
664
|
druids: outputs.GetResourceResourceDruid[];
|
|
627
665
|
dynamoDbiams: outputs.GetResourceResourceDynamoDbiam[];
|
|
@@ -656,6 +694,7 @@ export interface GetResourceResource {
|
|
|
656
694
|
mysqls: outputs.GetResourceResourceMysql[];
|
|
657
695
|
neptuneIams: outputs.GetResourceResourceNeptuneIam[];
|
|
658
696
|
neptunes: outputs.GetResourceResourceNeptune[];
|
|
697
|
+
oracleNnes: outputs.GetResourceResourceOracleNne[];
|
|
659
698
|
oracles: outputs.GetResourceResourceOracle[];
|
|
660
699
|
postgres: outputs.GetResourceResourcePostgre[];
|
|
661
700
|
prestos: outputs.GetResourceResourcePresto[];
|
|
@@ -685,6 +724,62 @@ export interface GetResourceResource {
|
|
|
685
724
|
trinos: outputs.GetResourceResourceTrino[];
|
|
686
725
|
verticas: outputs.GetResourceResourceVertica[];
|
|
687
726
|
}
|
|
727
|
+
export interface GetResourceResourceAerospike {
|
|
728
|
+
/**
|
|
729
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
730
|
+
*/
|
|
731
|
+
bindInterface?: string;
|
|
732
|
+
/**
|
|
733
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
734
|
+
*/
|
|
735
|
+
egressFilter?: string;
|
|
736
|
+
/**
|
|
737
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
738
|
+
*/
|
|
739
|
+
hostname?: string;
|
|
740
|
+
/**
|
|
741
|
+
* Unique identifier of the Resource.
|
|
742
|
+
*/
|
|
743
|
+
id?: string;
|
|
744
|
+
/**
|
|
745
|
+
* Unique human-readable name of the Resource.
|
|
746
|
+
*/
|
|
747
|
+
name?: string;
|
|
748
|
+
/**
|
|
749
|
+
* The password to authenticate with.
|
|
750
|
+
*/
|
|
751
|
+
password?: string;
|
|
752
|
+
/**
|
|
753
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
754
|
+
*/
|
|
755
|
+
port?: number;
|
|
756
|
+
/**
|
|
757
|
+
* The local port used by clients to connect to this resource.
|
|
758
|
+
*/
|
|
759
|
+
portOverride?: number;
|
|
760
|
+
/**
|
|
761
|
+
* ID of the proxy cluster for this resource, if any.
|
|
762
|
+
*/
|
|
763
|
+
proxyClusterId?: string;
|
|
764
|
+
/**
|
|
765
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
766
|
+
*/
|
|
767
|
+
secretStoreId?: string;
|
|
768
|
+
/**
|
|
769
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
770
|
+
*/
|
|
771
|
+
subdomain?: string;
|
|
772
|
+
/**
|
|
773
|
+
* Tags is a map of key, value pairs.
|
|
774
|
+
*/
|
|
775
|
+
tags?: {
|
|
776
|
+
[key: string]: string;
|
|
777
|
+
};
|
|
778
|
+
/**
|
|
779
|
+
* The username to authenticate with.
|
|
780
|
+
*/
|
|
781
|
+
username?: string;
|
|
782
|
+
}
|
|
688
783
|
export interface GetResourceResourceAk {
|
|
689
784
|
/**
|
|
690
785
|
* If true, allows users to fallback to the existing authentication mode (Leased Credential or Identity Set) when a resource role is not provided.
|
|
@@ -3391,6 +3486,58 @@ export interface GetResourceResourceDocumentDbReplicaSet {
|
|
|
3391
3486
|
*/
|
|
3392
3487
|
username?: string;
|
|
3393
3488
|
}
|
|
3489
|
+
export interface GetResourceResourceDocumentDbReplicaSetIam {
|
|
3490
|
+
/**
|
|
3491
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
3492
|
+
*/
|
|
3493
|
+
bindInterface?: string;
|
|
3494
|
+
/**
|
|
3495
|
+
* Set to connect to a replica instead of the primary node.
|
|
3496
|
+
*/
|
|
3497
|
+
connectToReplica?: boolean;
|
|
3498
|
+
/**
|
|
3499
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3500
|
+
*/
|
|
3501
|
+
egressFilter?: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
3504
|
+
*/
|
|
3505
|
+
hostname?: string;
|
|
3506
|
+
/**
|
|
3507
|
+
* Unique identifier of the Resource.
|
|
3508
|
+
*/
|
|
3509
|
+
id?: string;
|
|
3510
|
+
/**
|
|
3511
|
+
* Unique human-readable name of the Resource.
|
|
3512
|
+
*/
|
|
3513
|
+
name?: string;
|
|
3514
|
+
/**
|
|
3515
|
+
* The local port used by clients to connect to this resource.
|
|
3516
|
+
*/
|
|
3517
|
+
portOverride?: number;
|
|
3518
|
+
/**
|
|
3519
|
+
* ID of the proxy cluster for this resource, if any.
|
|
3520
|
+
*/
|
|
3521
|
+
proxyClusterId?: string;
|
|
3522
|
+
/**
|
|
3523
|
+
* The AWS region to connect to.
|
|
3524
|
+
*/
|
|
3525
|
+
region?: string;
|
|
3526
|
+
/**
|
|
3527
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3528
|
+
*/
|
|
3529
|
+
secretStoreId?: string;
|
|
3530
|
+
/**
|
|
3531
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3532
|
+
*/
|
|
3533
|
+
subdomain?: string;
|
|
3534
|
+
/**
|
|
3535
|
+
* Tags is a map of key, value pairs.
|
|
3536
|
+
*/
|
|
3537
|
+
tags?: {
|
|
3538
|
+
[key: string]: string;
|
|
3539
|
+
};
|
|
3540
|
+
}
|
|
3394
3541
|
export interface GetResourceResourceDruid {
|
|
3395
3542
|
/**
|
|
3396
3543
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -5574,6 +5721,66 @@ export interface GetResourceResourceOracle {
|
|
|
5574
5721
|
*/
|
|
5575
5722
|
username?: string;
|
|
5576
5723
|
}
|
|
5724
|
+
export interface GetResourceResourceOracleNne {
|
|
5725
|
+
/**
|
|
5726
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
5727
|
+
*/
|
|
5728
|
+
bindInterface?: string;
|
|
5729
|
+
/**
|
|
5730
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
5731
|
+
*/
|
|
5732
|
+
database?: string;
|
|
5733
|
+
/**
|
|
5734
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
5735
|
+
*/
|
|
5736
|
+
egressFilter?: string;
|
|
5737
|
+
/**
|
|
5738
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
5739
|
+
*/
|
|
5740
|
+
hostname?: string;
|
|
5741
|
+
/**
|
|
5742
|
+
* Unique identifier of the Resource.
|
|
5743
|
+
*/
|
|
5744
|
+
id?: string;
|
|
5745
|
+
/**
|
|
5746
|
+
* Unique human-readable name of the Resource.
|
|
5747
|
+
*/
|
|
5748
|
+
name?: string;
|
|
5749
|
+
/**
|
|
5750
|
+
* The password to authenticate with.
|
|
5751
|
+
*/
|
|
5752
|
+
password?: string;
|
|
5753
|
+
/**
|
|
5754
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
5755
|
+
*/
|
|
5756
|
+
port?: number;
|
|
5757
|
+
/**
|
|
5758
|
+
* The local port used by clients to connect to this resource.
|
|
5759
|
+
*/
|
|
5760
|
+
portOverride?: number;
|
|
5761
|
+
/**
|
|
5762
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5763
|
+
*/
|
|
5764
|
+
proxyClusterId?: string;
|
|
5765
|
+
/**
|
|
5766
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
5767
|
+
*/
|
|
5768
|
+
secretStoreId?: string;
|
|
5769
|
+
/**
|
|
5770
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
5771
|
+
*/
|
|
5772
|
+
subdomain?: string;
|
|
5773
|
+
/**
|
|
5774
|
+
* Tags is a map of key, value pairs.
|
|
5775
|
+
*/
|
|
5776
|
+
tags?: {
|
|
5777
|
+
[key: string]: string;
|
|
5778
|
+
};
|
|
5779
|
+
/**
|
|
5780
|
+
* The username to authenticate with.
|
|
5781
|
+
*/
|
|
5782
|
+
username?: string;
|
|
5783
|
+
}
|
|
5577
5784
|
export interface GetResourceResourcePostgre {
|
|
5578
5785
|
/**
|
|
5579
5786
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -7185,10 +7392,6 @@ export interface GetResourceResourceTrino {
|
|
|
7185
7392
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
7186
7393
|
*/
|
|
7187
7394
|
bindInterface?: string;
|
|
7188
|
-
/**
|
|
7189
|
-
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
7190
|
-
*/
|
|
7191
|
-
database?: string;
|
|
7192
7395
|
/**
|
|
7193
7396
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
7194
7397
|
*/
|
|
@@ -8238,6 +8441,8 @@ export interface GetWorkflowWorkflow {
|
|
|
8238
8441
|
approvalFlowId?: string;
|
|
8239
8442
|
/**
|
|
8240
8443
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
8444
|
+
*
|
|
8445
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
8241
8446
|
*/
|
|
8242
8447
|
autoGrant?: boolean;
|
|
8243
8448
|
/**
|
|
@@ -8367,6 +8572,58 @@ export interface NodeRelayMaintenanceWindow {
|
|
|
8367
8572
|
cronSchedule: string;
|
|
8368
8573
|
requireIdleness: boolean;
|
|
8369
8574
|
}
|
|
8575
|
+
export interface ResourceAerospike {
|
|
8576
|
+
/**
|
|
8577
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
8578
|
+
*/
|
|
8579
|
+
bindInterface: string;
|
|
8580
|
+
/**
|
|
8581
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
8582
|
+
*/
|
|
8583
|
+
egressFilter?: string;
|
|
8584
|
+
/**
|
|
8585
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
8586
|
+
*/
|
|
8587
|
+
hostname: string;
|
|
8588
|
+
/**
|
|
8589
|
+
* Unique human-readable name of the Resource.
|
|
8590
|
+
*/
|
|
8591
|
+
name: string;
|
|
8592
|
+
/**
|
|
8593
|
+
* The password to authenticate with.
|
|
8594
|
+
*/
|
|
8595
|
+
password?: string;
|
|
8596
|
+
/**
|
|
8597
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
8598
|
+
*/
|
|
8599
|
+
port?: number;
|
|
8600
|
+
/**
|
|
8601
|
+
* The local port used by clients to connect to this resource.
|
|
8602
|
+
*/
|
|
8603
|
+
portOverride: number;
|
|
8604
|
+
/**
|
|
8605
|
+
* ID of the proxy cluster for this resource, if any.
|
|
8606
|
+
*/
|
|
8607
|
+
proxyClusterId?: string;
|
|
8608
|
+
/**
|
|
8609
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
8610
|
+
*/
|
|
8611
|
+
secretStoreId?: string;
|
|
8612
|
+
/**
|
|
8613
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
8614
|
+
*/
|
|
8615
|
+
subdomain: string;
|
|
8616
|
+
/**
|
|
8617
|
+
* Tags is a map of key, value pairs.
|
|
8618
|
+
*/
|
|
8619
|
+
tags?: {
|
|
8620
|
+
[key: string]: string;
|
|
8621
|
+
};
|
|
8622
|
+
/**
|
|
8623
|
+
* The username to authenticate with.
|
|
8624
|
+
*/
|
|
8625
|
+
username?: string;
|
|
8626
|
+
}
|
|
8370
8627
|
export interface ResourceAks {
|
|
8371
8628
|
/**
|
|
8372
8629
|
* If true, allows users to fallback to the existing authentication mode (Leased Credential or Identity Set) when a resource role is not provided.
|
|
@@ -10905,6 +11162,54 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
10905
11162
|
*/
|
|
10906
11163
|
username?: string;
|
|
10907
11164
|
}
|
|
11165
|
+
export interface ResourceDocumentDbReplicaSetIam {
|
|
11166
|
+
/**
|
|
11167
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
11168
|
+
*/
|
|
11169
|
+
bindInterface: string;
|
|
11170
|
+
/**
|
|
11171
|
+
* Set to connect to a replica instead of the primary node.
|
|
11172
|
+
*/
|
|
11173
|
+
connectToReplica?: boolean;
|
|
11174
|
+
/**
|
|
11175
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
11176
|
+
*/
|
|
11177
|
+
egressFilter?: string;
|
|
11178
|
+
/**
|
|
11179
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
11180
|
+
*/
|
|
11181
|
+
hostname: string;
|
|
11182
|
+
/**
|
|
11183
|
+
* Unique human-readable name of the Resource.
|
|
11184
|
+
*/
|
|
11185
|
+
name: string;
|
|
11186
|
+
/**
|
|
11187
|
+
* The local port used by clients to connect to this resource.
|
|
11188
|
+
*/
|
|
11189
|
+
portOverride: number;
|
|
11190
|
+
/**
|
|
11191
|
+
* ID of the proxy cluster for this resource, if any.
|
|
11192
|
+
*/
|
|
11193
|
+
proxyClusterId?: string;
|
|
11194
|
+
/**
|
|
11195
|
+
* The AWS region to connect to.
|
|
11196
|
+
*/
|
|
11197
|
+
region: string;
|
|
11198
|
+
/**
|
|
11199
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
11200
|
+
*/
|
|
11201
|
+
secretStoreId?: string;
|
|
11202
|
+
/**
|
|
11203
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
11204
|
+
*/
|
|
11205
|
+
subdomain: string;
|
|
11206
|
+
/**
|
|
11207
|
+
* Tags is a map of key, value pairs.
|
|
11208
|
+
*/
|
|
11209
|
+
tags?: {
|
|
11210
|
+
[key: string]: string;
|
|
11211
|
+
};
|
|
11212
|
+
}
|
|
10908
11213
|
export interface ResourceDruid {
|
|
10909
11214
|
/**
|
|
10910
11215
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -12952,6 +13257,62 @@ export interface ResourceOracle {
|
|
|
12952
13257
|
*/
|
|
12953
13258
|
username?: string;
|
|
12954
13259
|
}
|
|
13260
|
+
export interface ResourceOracleNne {
|
|
13261
|
+
/**
|
|
13262
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
13263
|
+
*/
|
|
13264
|
+
bindInterface: string;
|
|
13265
|
+
/**
|
|
13266
|
+
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
13267
|
+
*/
|
|
13268
|
+
database: string;
|
|
13269
|
+
/**
|
|
13270
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
13271
|
+
*/
|
|
13272
|
+
egressFilter?: string;
|
|
13273
|
+
/**
|
|
13274
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
13275
|
+
*/
|
|
13276
|
+
hostname: string;
|
|
13277
|
+
/**
|
|
13278
|
+
* Unique human-readable name of the Resource.
|
|
13279
|
+
*/
|
|
13280
|
+
name: string;
|
|
13281
|
+
/**
|
|
13282
|
+
* The password to authenticate with.
|
|
13283
|
+
*/
|
|
13284
|
+
password?: string;
|
|
13285
|
+
/**
|
|
13286
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
13287
|
+
*/
|
|
13288
|
+
port: number;
|
|
13289
|
+
/**
|
|
13290
|
+
* The local port used by clients to connect to this resource.
|
|
13291
|
+
*/
|
|
13292
|
+
portOverride: number;
|
|
13293
|
+
/**
|
|
13294
|
+
* ID of the proxy cluster for this resource, if any.
|
|
13295
|
+
*/
|
|
13296
|
+
proxyClusterId?: string;
|
|
13297
|
+
/**
|
|
13298
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
13299
|
+
*/
|
|
13300
|
+
secretStoreId?: string;
|
|
13301
|
+
/**
|
|
13302
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
13303
|
+
*/
|
|
13304
|
+
subdomain: string;
|
|
13305
|
+
/**
|
|
13306
|
+
* Tags is a map of key, value pairs.
|
|
13307
|
+
*/
|
|
13308
|
+
tags?: {
|
|
13309
|
+
[key: string]: string;
|
|
13310
|
+
};
|
|
13311
|
+
/**
|
|
13312
|
+
* The username to authenticate with.
|
|
13313
|
+
*/
|
|
13314
|
+
username?: string;
|
|
13315
|
+
}
|
|
12955
13316
|
export interface ResourcePostgres {
|
|
12956
13317
|
/**
|
|
12957
13318
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -14463,10 +14824,6 @@ export interface ResourceTrino {
|
|
|
14463
14824
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
14464
14825
|
*/
|
|
14465
14826
|
bindInterface: string;
|
|
14466
|
-
/**
|
|
14467
|
-
* The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
|
|
14468
|
-
*/
|
|
14469
|
-
database: string;
|
|
14470
14827
|
/**
|
|
14471
14828
|
* A filter applied to the routing logic to pin datasource to nodes.
|
|
14472
14829
|
*/
|
package/workflow.d.ts
CHANGED
|
@@ -45,6 +45,8 @@ export declare class Workflow extends pulumi.CustomResource {
|
|
|
45
45
|
readonly approvalFlowId: pulumi.Output<string | undefined>;
|
|
46
46
|
/**
|
|
47
47
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
48
|
+
*
|
|
49
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
48
50
|
*/
|
|
49
51
|
readonly autoGrant: pulumi.Output<boolean | undefined>;
|
|
50
52
|
/**
|
|
@@ -94,6 +96,8 @@ export interface WorkflowState {
|
|
|
94
96
|
approvalFlowId?: pulumi.Input<string>;
|
|
95
97
|
/**
|
|
96
98
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
99
|
+
*
|
|
100
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
97
101
|
*/
|
|
98
102
|
autoGrant?: pulumi.Input<boolean>;
|
|
99
103
|
/**
|
|
@@ -135,6 +139,8 @@ export interface WorkflowArgs {
|
|
|
135
139
|
approvalFlowId?: pulumi.Input<string>;
|
|
136
140
|
/**
|
|
137
141
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
142
|
+
*
|
|
143
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
138
144
|
*/
|
|
139
145
|
autoGrant?: pulumi.Input<boolean>;
|
|
140
146
|
/**
|
package/workflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.js","sourceRoot":"","sources":["../workflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow.js","sourceRoot":"","sources":["../workflow.ts"],"names":[],"mappings":"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"}
|
package/workflowApprover.d.ts
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* ```typescript
|
|
7
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
-
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
9
|
-
*
|
|
10
|
-
* const workflowApproverAccountExample = new sdm.WorkflowApprover("workflowApproverAccountExample", {
|
|
11
|
-
* accountId: "a-234605",
|
|
12
|
-
* workflowId: "aw-6799234",
|
|
13
|
-
* });
|
|
14
|
-
* const workflowApproverRoleExample = new sdm.WorkflowApprover("workflowApproverRoleExample", {
|
|
15
|
-
* roleId: "r-542982",
|
|
16
|
-
* workflowId: "aw-1935694",
|
|
17
|
-
* });
|
|
18
|
-
* ```
|
|
4
|
+
* This resource is deprecated.
|
|
19
5
|
* This resource can be imported using the import command.
|
|
20
6
|
*
|
|
21
7
|
* ## Import
|
package/workflowApprover.js
CHANGED
|
@@ -7,21 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* ```typescript
|
|
13
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
-
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
15
|
-
*
|
|
16
|
-
* const workflowApproverAccountExample = new sdm.WorkflowApprover("workflowApproverAccountExample", {
|
|
17
|
-
* accountId: "a-234605",
|
|
18
|
-
* workflowId: "aw-6799234",
|
|
19
|
-
* });
|
|
20
|
-
* const workflowApproverRoleExample = new sdm.WorkflowApprover("workflowApproverRoleExample", {
|
|
21
|
-
* roleId: "r-542982",
|
|
22
|
-
* workflowId: "aw-1935694",
|
|
23
|
-
* });
|
|
24
|
-
* ```
|
|
10
|
+
* This resource is deprecated.
|
|
25
11
|
* This resource can be imported using the import command.
|
|
26
12
|
*
|
|
27
13
|
* ## Import
|
package/workflowApprover.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflowApprover.js","sourceRoot":"","sources":["../workflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"workflowApprover.js","sourceRoot":"","sources":["../workflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AApEL,4CAqEC;AAvDG,gBAAgB;AACO,6BAAY,GAAG,6CAA6C,CAAC"}
|