@pierskarsenbarg/sdm 1.11.0 → 1.13.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 -3
- package/account.js +2 -3
- package/account.js.map +1 -1
- package/accountAttachment.d.ts +0 -2
- package/accountAttachment.js +0 -2
- package/accountAttachment.js.map +1 -1
- package/approvalWorkflow.d.ts +0 -2
- package/approvalWorkflow.js +0 -2
- package/approvalWorkflow.js.map +1 -1
- package/approvalWorkflowApprover.d.ts +0 -2
- package/approvalWorkflowApprover.js +0 -2
- package/approvalWorkflowApprover.js.map +1 -1
- package/approvalWorkflowStep.d.ts +0 -2
- package/approvalWorkflowStep.js +0 -2
- package/approvalWorkflowStep.js.map +1 -1
- package/getAccount.d.ts +52 -14
- package/getAccount.js +22 -6
- package/getAccount.js.map +1 -1
- package/getAccountAttachment.d.ts +0 -4
- package/getAccountAttachment.js +0 -4
- package/getAccountAttachment.js.map +1 -1
- package/getApprovalWorkflow.d.ts +0 -4
- package/getApprovalWorkflow.js +0 -4
- package/getApprovalWorkflow.js.map +1 -1
- package/getApprovalWorkflowApprover.d.ts +0 -4
- package/getApprovalWorkflowApprover.js +0 -4
- package/getApprovalWorkflowApprover.js.map +1 -1
- package/getApprovalWorkflowStep.d.ts +0 -4
- package/getApprovalWorkflowStep.js +0 -4
- package/getApprovalWorkflowStep.js.map +1 -1
- package/getIdentityAlias.d.ts +105 -0
- package/getIdentityAlias.js +53 -0
- package/getIdentityAlias.js.map +1 -0
- package/getIdentitySet.d.ts +77 -0
- package/getIdentitySet.js +47 -0
- package/getIdentitySet.js.map +1 -0
- package/getNode.d.ts +3 -7
- package/getNode.js +0 -4
- package/getNode.js.map +1 -1
- package/getRemoteIdentity.d.ts +0 -4
- package/getRemoteIdentity.js +0 -4
- package/getRemoteIdentity.js.map +1 -1
- package/getRemoteIdentityGroup.d.ts +0 -4
- package/getRemoteIdentityGroup.js +0 -4
- package/getRemoteIdentityGroup.js.map +1 -1
- package/getResource.d.ts +3 -7
- package/getResource.js +0 -4
- package/getResource.js.map +1 -1
- package/getSecretStore.d.ts +3 -3
- package/getSshCaPubkey.d.ts +0 -4
- package/getSshCaPubkey.js +0 -4
- package/getSshCaPubkey.js.map +1 -1
- package/getWorkflow.d.ts +0 -4
- package/getWorkflow.js +0 -4
- package/getWorkflow.js.map +1 -1
- package/getWorkflowApprover.d.ts +0 -4
- package/getWorkflowApprover.js +0 -4
- package/getWorkflowApprover.js.map +1 -1
- package/getWorkflowRole.d.ts +0 -4
- package/getWorkflowRole.js +0 -4
- package/getWorkflowRole.js.map +1 -1
- package/identityAlias.d.ts +83 -0
- package/identityAlias.js +73 -0
- package/identityAlias.js.map +1 -0
- package/identitySet.d.ts +68 -0
- package/identitySet.js +69 -0
- package/identitySet.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +18 -2
- package/index.js.map +1 -1
- package/node.d.ts +0 -2
- package/node.js +0 -2
- package/node.js.map +1 -1
- package/package.json +1 -1
- package/role.d.ts +0 -2
- package/role.js +0 -2
- package/role.js.map +1 -1
- package/secretStore.d.ts +30 -0
- package/secretStore.js +8 -0
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +280 -96
- package/types/output.d.ts +657 -197
- package/workflow.d.ts +0 -2
- package/workflow.js +0 -2
- package/workflow.js.map +1 -1
- package/workflowApprover.d.ts +0 -2
- package/workflowApprover.js +0 -2
- package/workflowApprover.js.map +1 -1
- package/workflowRole.d.ts +0 -2
- package/workflowRole.js +0 -2
- package/workflowRole.js.map +1 -1
package/getResource.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
* delegates access to.
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
8
|
-
* <!--Start PulumiCodeChooser -->
|
|
9
8
|
* ```typescript
|
|
10
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
10
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -19,7 +18,6 @@ import * as outputs from "./types/output";
|
|
|
19
18
|
* type: "mysql",
|
|
20
19
|
* });
|
|
21
20
|
* ```
|
|
22
|
-
* <!--End PulumiCodeChooser -->
|
|
23
21
|
*/
|
|
24
22
|
export declare function getResource(args?: GetResourceArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceResult>;
|
|
25
23
|
/**
|
|
@@ -46,7 +44,7 @@ export interface GetResourceArgs {
|
|
|
46
44
|
* Tags is a map of key, value pairs.
|
|
47
45
|
*/
|
|
48
46
|
tags?: {
|
|
49
|
-
[key: string]:
|
|
47
|
+
[key: string]: string;
|
|
50
48
|
};
|
|
51
49
|
/**
|
|
52
50
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
|
@@ -90,7 +88,7 @@ export interface GetResourceResult {
|
|
|
90
88
|
* Tags is a map of key, value pairs.
|
|
91
89
|
*/
|
|
92
90
|
readonly tags?: {
|
|
93
|
-
[key: string]:
|
|
91
|
+
[key: string]: string;
|
|
94
92
|
};
|
|
95
93
|
readonly type?: string;
|
|
96
94
|
/**
|
|
@@ -103,7 +101,6 @@ export interface GetResourceResult {
|
|
|
103
101
|
* delegates access to.
|
|
104
102
|
* ## Example Usage
|
|
105
103
|
*
|
|
106
|
-
* <!--Start PulumiCodeChooser -->
|
|
107
104
|
* ```typescript
|
|
108
105
|
* import * as pulumi from "@pulumi/pulumi";
|
|
109
106
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -117,7 +114,6 @@ export interface GetResourceResult {
|
|
|
117
114
|
* type: "mysql",
|
|
118
115
|
* });
|
|
119
116
|
* ```
|
|
120
|
-
* <!--End PulumiCodeChooser -->
|
|
121
117
|
*/
|
|
122
118
|
export declare function getResourceOutput(args?: GetResourceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetResourceResult>;
|
|
123
119
|
/**
|
|
@@ -144,7 +140,7 @@ export interface GetResourceOutputArgs {
|
|
|
144
140
|
* Tags is a map of key, value pairs.
|
|
145
141
|
*/
|
|
146
142
|
tags?: pulumi.Input<{
|
|
147
|
-
[key: string]:
|
|
143
|
+
[key: string]: pulumi.Input<string>;
|
|
148
144
|
}>;
|
|
149
145
|
/**
|
|
150
146
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
package/getResource.js
CHANGED
|
@@ -10,7 +10,6 @@ const utilities = require("./utilities");
|
|
|
10
10
|
* delegates access to.
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
-
* <!--Start PulumiCodeChooser -->
|
|
14
13
|
* ```typescript
|
|
15
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
15
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -24,7 +23,6 @@ const utilities = require("./utilities");
|
|
|
24
23
|
* type: "mysql",
|
|
25
24
|
* });
|
|
26
25
|
* ```
|
|
27
|
-
* <!--End PulumiCodeChooser -->
|
|
28
26
|
*/
|
|
29
27
|
function getResource(args, opts) {
|
|
30
28
|
args = args || {};
|
|
@@ -45,7 +43,6 @@ exports.getResource = getResource;
|
|
|
45
43
|
* delegates access to.
|
|
46
44
|
* ## Example Usage
|
|
47
45
|
*
|
|
48
|
-
* <!--Start PulumiCodeChooser -->
|
|
49
46
|
* ```typescript
|
|
50
47
|
* import * as pulumi from "@pulumi/pulumi";
|
|
51
48
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -59,7 +56,6 @@ exports.getResource = getResource;
|
|
|
59
56
|
* type: "mysql",
|
|
60
57
|
* });
|
|
61
58
|
* ```
|
|
62
|
-
* <!--End PulumiCodeChooser -->
|
|
63
59
|
*/
|
|
64
60
|
function getResourceOutput(args, opts) {
|
|
65
61
|
return pulumi.output(args).apply((a) => getResource(a, opts));
|
package/getResource.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getResource.js","sourceRoot":"","sources":["../getResource.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getResource.js","sourceRoot":"","sources":["../getResource.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;AA2ED;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getSecretStore.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export interface GetSecretStoreArgs {
|
|
|
21
21
|
* Tags is a map of key, value pairs.
|
|
22
22
|
*/
|
|
23
23
|
tags?: {
|
|
24
|
-
[key: string]:
|
|
24
|
+
[key: string]: string;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
|
@@ -53,7 +53,7 @@ export interface GetSecretStoreResult {
|
|
|
53
53
|
* Tags is a map of key, value pairs.
|
|
54
54
|
*/
|
|
55
55
|
readonly tags?: {
|
|
56
|
-
[key: string]:
|
|
56
|
+
[key: string]: string;
|
|
57
57
|
};
|
|
58
58
|
readonly type?: string;
|
|
59
59
|
}
|
|
@@ -78,7 +78,7 @@ export interface GetSecretStoreOutputArgs {
|
|
|
78
78
|
* Tags is a map of key, value pairs.
|
|
79
79
|
*/
|
|
80
80
|
tags?: pulumi.Input<{
|
|
81
|
-
[key: string]:
|
|
81
|
+
[key: string]: pulumi.Input<string>;
|
|
82
82
|
}>;
|
|
83
83
|
/**
|
|
84
84
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
package/getSshCaPubkey.d.ts
CHANGED
|
@@ -3,14 +3,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
3
3
|
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
4
4
|
* ## Example Usage
|
|
5
5
|
*
|
|
6
|
-
* <!--Start PulumiCodeChooser -->
|
|
7
6
|
* ```typescript
|
|
8
7
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
8
|
* import * as sdm from "@pulumi/sdm";
|
|
10
9
|
*
|
|
11
10
|
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
12
11
|
* ```
|
|
13
|
-
* <!--End PulumiCodeChooser -->
|
|
14
12
|
*/
|
|
15
13
|
export declare function getSshCaPubkey(args?: GetSshCaPubkeyArgs, opts?: pulumi.InvokeOptions): Promise<GetSshCaPubkeyResult>;
|
|
16
14
|
/**
|
|
@@ -43,14 +41,12 @@ export interface GetSshCaPubkeyResult {
|
|
|
43
41
|
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
44
42
|
* ## Example Usage
|
|
45
43
|
*
|
|
46
|
-
* <!--Start PulumiCodeChooser -->
|
|
47
44
|
* ```typescript
|
|
48
45
|
* import * as pulumi from "@pulumi/pulumi";
|
|
49
46
|
* import * as sdm from "@pulumi/sdm";
|
|
50
47
|
*
|
|
51
48
|
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
52
49
|
* ```
|
|
53
|
-
* <!--End PulumiCodeChooser -->
|
|
54
50
|
*/
|
|
55
51
|
export declare function getSshCaPubkeyOutput(args?: GetSshCaPubkeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSshCaPubkeyResult>;
|
|
56
52
|
/**
|
package/getSshCaPubkey.js
CHANGED
|
@@ -9,14 +9,12 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
|
12
|
-
* <!--Start PulumiCodeChooser -->
|
|
13
12
|
* ```typescript
|
|
14
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
14
|
* import * as sdm from "@pulumi/sdm";
|
|
16
15
|
*
|
|
17
16
|
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
18
17
|
* ```
|
|
19
|
-
* <!--End PulumiCodeChooser -->
|
|
20
18
|
*/
|
|
21
19
|
function getSshCaPubkey(args, opts) {
|
|
22
20
|
args = args || {};
|
|
@@ -31,14 +29,12 @@ exports.getSshCaPubkey = getSshCaPubkey;
|
|
|
31
29
|
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
32
30
|
* ## Example Usage
|
|
33
31
|
*
|
|
34
|
-
* <!--Start PulumiCodeChooser -->
|
|
35
32
|
* ```typescript
|
|
36
33
|
* import * as pulumi from "@pulumi/pulumi";
|
|
37
34
|
* import * as sdm from "@pulumi/sdm";
|
|
38
35
|
*
|
|
39
36
|
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
40
37
|
* ```
|
|
41
|
-
* <!--End PulumiCodeChooser -->
|
|
42
38
|
*/
|
|
43
39
|
function getSshCaPubkeyOutput(args, opts) {
|
|
44
40
|
return pulumi.output(args).apply((a) => getSshCaPubkey(a, opts));
|
package/getSshCaPubkey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSshCaPubkey.js","sourceRoot":"","sources":["../getSshCaPubkey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSshCaPubkey.js","sourceRoot":"","sources":["../getSshCaPubkey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AA6BD;;;;;;;;;;GAUG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getWorkflow.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import * as outputs from "./types/output";
|
|
|
6
6
|
* but automatic approval or a set of users authorized to approve the requests.
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
9
|
-
* <!--Start PulumiCodeChooser -->
|
|
10
9
|
* ```typescript
|
|
11
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
11
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -16,7 +15,6 @@ import * as outputs from "./types/output";
|
|
|
16
15
|
* name: "workflow example",
|
|
17
16
|
* });
|
|
18
17
|
* ```
|
|
19
|
-
* <!--End PulumiCodeChooser -->
|
|
20
18
|
*/
|
|
21
19
|
export declare function getWorkflow(args?: GetWorkflowArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowResult>;
|
|
22
20
|
/**
|
|
@@ -99,7 +97,6 @@ export interface GetWorkflowResult {
|
|
|
99
97
|
* but automatic approval or a set of users authorized to approve the requests.
|
|
100
98
|
* ## Example Usage
|
|
101
99
|
*
|
|
102
|
-
* <!--Start PulumiCodeChooser -->
|
|
103
100
|
* ```typescript
|
|
104
101
|
* import * as pulumi from "@pulumi/pulumi";
|
|
105
102
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -109,7 +106,6 @@ export interface GetWorkflowResult {
|
|
|
109
106
|
* name: "workflow example",
|
|
110
107
|
* });
|
|
111
108
|
* ```
|
|
112
|
-
* <!--End PulumiCodeChooser -->
|
|
113
109
|
*/
|
|
114
110
|
export declare function getWorkflowOutput(args?: GetWorkflowOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetWorkflowResult>;
|
|
115
111
|
/**
|
package/getWorkflow.js
CHANGED
|
@@ -11,7 +11,6 @@ const utilities = require("./utilities");
|
|
|
11
11
|
* but automatic approval or a set of users authorized to approve the requests.
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
14
|
-
* <!--Start PulumiCodeChooser -->
|
|
15
14
|
* ```typescript
|
|
16
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
16
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -21,7 +20,6 @@ const utilities = require("./utilities");
|
|
|
21
20
|
* name: "workflow example",
|
|
22
21
|
* });
|
|
23
22
|
* ```
|
|
24
|
-
* <!--End PulumiCodeChooser -->
|
|
25
23
|
*/
|
|
26
24
|
function getWorkflow(args, opts) {
|
|
27
25
|
args = args || {};
|
|
@@ -43,7 +41,6 @@ exports.getWorkflow = getWorkflow;
|
|
|
43
41
|
* but automatic approval or a set of users authorized to approve the requests.
|
|
44
42
|
* ## Example Usage
|
|
45
43
|
*
|
|
46
|
-
* <!--Start PulumiCodeChooser -->
|
|
47
44
|
* ```typescript
|
|
48
45
|
* import * as pulumi from "@pulumi/pulumi";
|
|
49
46
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -53,7 +50,6 @@ exports.getWorkflow = getWorkflow;
|
|
|
53
50
|
* name: "workflow example",
|
|
54
51
|
* });
|
|
55
52
|
* ```
|
|
56
|
-
* <!--End PulumiCodeChooser -->
|
|
57
53
|
*/
|
|
58
54
|
function getWorkflowOutput(args, opts) {
|
|
59
55
|
return pulumi.output(args).apply((a) => getWorkflow(a, opts));
|
package/getWorkflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkflow.js","sourceRoot":"","sources":["../getWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getWorkflow.js","sourceRoot":"","sources":["../getWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;AA6ED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getWorkflowApprover.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
-
* <!--Start PulumiCodeChooser -->
|
|
8
7
|
* ```typescript
|
|
9
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
10
9
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -18,7 +17,6 @@ import * as outputs from "./types/output";
|
|
|
18
17
|
* workflowId: "aw-679923",
|
|
19
18
|
* });
|
|
20
19
|
* ```
|
|
21
|
-
* <!--End PulumiCodeChooser -->
|
|
22
20
|
*/
|
|
23
21
|
export declare function getWorkflowApprover(args?: GetWorkflowApproverArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowApproverResult>;
|
|
24
22
|
/**
|
|
@@ -75,7 +73,6 @@ export interface GetWorkflowApproverResult {
|
|
|
75
73
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
76
74
|
* ## Example Usage
|
|
77
75
|
*
|
|
78
|
-
* <!--Start PulumiCodeChooser -->
|
|
79
76
|
* ```typescript
|
|
80
77
|
* import * as pulumi from "@pulumi/pulumi";
|
|
81
78
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -89,7 +86,6 @@ export interface GetWorkflowApproverResult {
|
|
|
89
86
|
* workflowId: "aw-679923",
|
|
90
87
|
* });
|
|
91
88
|
* ```
|
|
92
|
-
* <!--End PulumiCodeChooser -->
|
|
93
89
|
*/
|
|
94
90
|
export declare function getWorkflowApproverOutput(args?: GetWorkflowApproverOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetWorkflowApproverResult>;
|
|
95
91
|
/**
|
package/getWorkflowApprover.js
CHANGED
|
@@ -9,7 +9,6 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
|
12
|
-
* <!--Start PulumiCodeChooser -->
|
|
13
12
|
* ```typescript
|
|
14
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
14
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -23,7 +22,6 @@ const utilities = require("./utilities");
|
|
|
23
22
|
* workflowId: "aw-679923",
|
|
24
23
|
* });
|
|
25
24
|
* ```
|
|
26
|
-
* <!--End PulumiCodeChooser -->
|
|
27
25
|
*/
|
|
28
26
|
function getWorkflowApprover(args, opts) {
|
|
29
27
|
args = args || {};
|
|
@@ -40,7 +38,6 @@ exports.getWorkflowApprover = getWorkflowApprover;
|
|
|
40
38
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
41
39
|
* ## Example Usage
|
|
42
40
|
*
|
|
43
|
-
* <!--Start PulumiCodeChooser -->
|
|
44
41
|
* ```typescript
|
|
45
42
|
* import * as pulumi from "@pulumi/pulumi";
|
|
46
43
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -54,7 +51,6 @@ exports.getWorkflowApprover = getWorkflowApprover;
|
|
|
54
51
|
* workflowId: "aw-679923",
|
|
55
52
|
* });
|
|
56
53
|
* ```
|
|
57
|
-
* <!--End PulumiCodeChooser -->
|
|
58
54
|
*/
|
|
59
55
|
function getWorkflowApproverOutput(args, opts) {
|
|
60
56
|
return pulumi.output(args).apply((a) => getWorkflowApprover(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkflowApprover.js","sourceRoot":"","sources":["../getWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getWorkflowApprover.js","sourceRoot":"","sources":["../getWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kDAUC;AAqDD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
package/getWorkflowRole.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
* to request access to a resource via the workflow.
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
8
|
-
* <!--Start PulumiCodeChooser -->
|
|
9
8
|
* ```typescript
|
|
10
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
10
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -15,7 +14,6 @@ import * as outputs from "./types/output";
|
|
|
15
14
|
* workflowId: "aw-7935485",
|
|
16
15
|
* });
|
|
17
16
|
* ```
|
|
18
|
-
* <!--End PulumiCodeChooser -->
|
|
19
17
|
*/
|
|
20
18
|
export declare function getWorkflowRole(args?: GetWorkflowRoleArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowRoleResult>;
|
|
21
19
|
/**
|
|
@@ -65,7 +63,6 @@ export interface GetWorkflowRoleResult {
|
|
|
65
63
|
* to request access to a resource via the workflow.
|
|
66
64
|
* ## Example Usage
|
|
67
65
|
*
|
|
68
|
-
* <!--Start PulumiCodeChooser -->
|
|
69
66
|
* ```typescript
|
|
70
67
|
* import * as pulumi from "@pulumi/pulumi";
|
|
71
68
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -75,7 +72,6 @@ export interface GetWorkflowRoleResult {
|
|
|
75
72
|
* workflowId: "aw-7935485",
|
|
76
73
|
* });
|
|
77
74
|
* ```
|
|
78
|
-
* <!--End PulumiCodeChooser -->
|
|
79
75
|
*/
|
|
80
76
|
export declare function getWorkflowRoleOutput(args?: GetWorkflowRoleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetWorkflowRoleResult>;
|
|
81
77
|
/**
|
package/getWorkflowRole.js
CHANGED
|
@@ -10,7 +10,6 @@ const utilities = require("./utilities");
|
|
|
10
10
|
* to request access to a resource via the workflow.
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
-
* <!--Start PulumiCodeChooser -->
|
|
14
13
|
* ```typescript
|
|
15
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
15
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -20,7 +19,6 @@ const utilities = require("./utilities");
|
|
|
20
19
|
* workflowId: "aw-7935485",
|
|
21
20
|
* });
|
|
22
21
|
* ```
|
|
23
|
-
* <!--End PulumiCodeChooser -->
|
|
24
22
|
*/
|
|
25
23
|
function getWorkflowRole(args, opts) {
|
|
26
24
|
args = args || {};
|
|
@@ -37,7 +35,6 @@ exports.getWorkflowRole = getWorkflowRole;
|
|
|
37
35
|
* to request access to a resource via the workflow.
|
|
38
36
|
* ## Example Usage
|
|
39
37
|
*
|
|
40
|
-
* <!--Start PulumiCodeChooser -->
|
|
41
38
|
* ```typescript
|
|
42
39
|
* import * as pulumi from "@pulumi/pulumi";
|
|
43
40
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -47,7 +44,6 @@ exports.getWorkflowRole = getWorkflowRole;
|
|
|
47
44
|
* workflowId: "aw-7935485",
|
|
48
45
|
* });
|
|
49
46
|
* ```
|
|
50
|
-
* <!--End PulumiCodeChooser -->
|
|
51
47
|
*/
|
|
52
48
|
function getWorkflowRoleOutput(args, opts) {
|
|
53
49
|
return pulumi.output(args).apply((a) => getWorkflowRole(a, opts));
|
package/getWorkflowRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkflowRole.js","sourceRoot":"","sources":["../getWorkflowRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getWorkflowRole.js","sourceRoot":"","sources":["../getWorkflowRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0CASC;AA6CD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* IdentityAliases define the username to be used for a specific account
|
|
4
|
+
* when connecting to a remote resource using that identity set.
|
|
5
|
+
* ## Import
|
|
6
|
+
*
|
|
7
|
+
* A IdentityAlias can be imported using the id, e.g.,
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import sdm:index/identityAlias:IdentityAlias example i-12345678
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class IdentityAlias extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing IdentityAlias resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentityAliasState, opts?: pulumi.CustomResourceOptions): IdentityAlias;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of IdentityAlias. This is designed to work even
|
|
26
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
|
+
*/
|
|
28
|
+
static isInstance(obj: any): obj is IdentityAlias;
|
|
29
|
+
/**
|
|
30
|
+
* The account for this identity alias.
|
|
31
|
+
*/
|
|
32
|
+
readonly accountId: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* The identity set.
|
|
35
|
+
*/
|
|
36
|
+
readonly identitySetId: pulumi.Output<string>;
|
|
37
|
+
/**
|
|
38
|
+
* The username to be used as the identity alias for this account.
|
|
39
|
+
*/
|
|
40
|
+
readonly username: pulumi.Output<string>;
|
|
41
|
+
/**
|
|
42
|
+
* Create a IdentityAlias resource with the given unique name, arguments, and options.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resource.
|
|
45
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
46
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
47
|
+
*/
|
|
48
|
+
constructor(name: string, args: IdentityAliasArgs, opts?: pulumi.CustomResourceOptions);
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Input properties used for looking up and filtering IdentityAlias resources.
|
|
52
|
+
*/
|
|
53
|
+
export interface IdentityAliasState {
|
|
54
|
+
/**
|
|
55
|
+
* The account for this identity alias.
|
|
56
|
+
*/
|
|
57
|
+
accountId?: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The identity set.
|
|
60
|
+
*/
|
|
61
|
+
identitySetId?: pulumi.Input<string>;
|
|
62
|
+
/**
|
|
63
|
+
* The username to be used as the identity alias for this account.
|
|
64
|
+
*/
|
|
65
|
+
username?: pulumi.Input<string>;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* The set of arguments for constructing a IdentityAlias resource.
|
|
69
|
+
*/
|
|
70
|
+
export interface IdentityAliasArgs {
|
|
71
|
+
/**
|
|
72
|
+
* The account for this identity alias.
|
|
73
|
+
*/
|
|
74
|
+
accountId: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* The identity set.
|
|
77
|
+
*/
|
|
78
|
+
identitySetId: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* The username to be used as the identity alias for this account.
|
|
81
|
+
*/
|
|
82
|
+
username: pulumi.Input<string>;
|
|
83
|
+
}
|
package/identityAlias.js
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.IdentityAlias = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* IdentityAliases define the username to be used for a specific account
|
|
10
|
+
* when connecting to a remote resource using that identity set.
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* A IdentityAlias can be imported using the id, e.g.,
|
|
14
|
+
*
|
|
15
|
+
* ```sh
|
|
16
|
+
* $ pulumi import sdm:index/identityAlias:IdentityAlias example i-12345678
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
class IdentityAlias extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing IdentityAlias resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new IdentityAlias(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of IdentityAlias. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === IdentityAlias.__pulumiType;
|
|
41
|
+
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["accountId"] = state ? state.accountId : undefined;
|
|
48
|
+
resourceInputs["identitySetId"] = state ? state.identitySetId : undefined;
|
|
49
|
+
resourceInputs["username"] = state ? state.username : undefined;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
const args = argsOrState;
|
|
53
|
+
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'accountId'");
|
|
55
|
+
}
|
|
56
|
+
if ((!args || args.identitySetId === undefined) && !opts.urn) {
|
|
57
|
+
throw new Error("Missing required property 'identitySetId'");
|
|
58
|
+
}
|
|
59
|
+
if ((!args || args.username === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'username'");
|
|
61
|
+
}
|
|
62
|
+
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
63
|
+
resourceInputs["identitySetId"] = args ? args.identitySetId : undefined;
|
|
64
|
+
resourceInputs["username"] = args ? args.username : undefined;
|
|
65
|
+
}
|
|
66
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
67
|
+
super(IdentityAlias.__pulumiType, name, resourceInputs, opts);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.IdentityAlias = IdentityAlias;
|
|
71
|
+
/** @internal */
|
|
72
|
+
IdentityAlias.__pulumiType = 'sdm:index/identityAlias:IdentityAlias';
|
|
73
|
+
//# sourceMappingURL=identityAlias.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identityAlias.js","sourceRoot":"","sources":["../identityAlias.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AA1EL,sCA2EC;AA7DG,gBAAgB;AACO,0BAAY,GAAG,uCAAuC,CAAC"}
|
package/identitySet.d.ts
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* A IdentitySet defines a group of identity aliases.
|
|
4
|
+
* ## Example Usage
|
|
5
|
+
*
|
|
6
|
+
* ```typescript
|
|
7
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
9
|
+
*
|
|
10
|
+
* const _default = new sdm.IdentitySet("default", {});
|
|
11
|
+
* ```
|
|
12
|
+
* This resource can be imported using the import command.
|
|
13
|
+
*
|
|
14
|
+
* ## Import
|
|
15
|
+
*
|
|
16
|
+
* A IdentitySet can be imported using the id, e.g.,
|
|
17
|
+
*
|
|
18
|
+
* ```sh
|
|
19
|
+
* $ pulumi import sdm:index/identitySet:IdentitySet example ig-12345678
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare class IdentitySet extends pulumi.CustomResource {
|
|
23
|
+
/**
|
|
24
|
+
* Get an existing IdentitySet resource's state with the given name, ID, and optional extra
|
|
25
|
+
* properties used to qualify the lookup.
|
|
26
|
+
*
|
|
27
|
+
* @param name The _unique_ name of the resulting resource.
|
|
28
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
29
|
+
* @param state Any extra arguments used during the lookup.
|
|
30
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
31
|
+
*/
|
|
32
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentitySetState, opts?: pulumi.CustomResourceOptions): IdentitySet;
|
|
33
|
+
/**
|
|
34
|
+
* Returns true if the given object is an instance of IdentitySet. This is designed to work even
|
|
35
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
36
|
+
*/
|
|
37
|
+
static isInstance(obj: any): obj is IdentitySet;
|
|
38
|
+
/**
|
|
39
|
+
* Unique human-readable name of the IdentitySet.
|
|
40
|
+
*/
|
|
41
|
+
readonly name: pulumi.Output<string>;
|
|
42
|
+
/**
|
|
43
|
+
* Create a IdentitySet resource with the given unique name, arguments, and options.
|
|
44
|
+
*
|
|
45
|
+
* @param name The _unique_ name of the resource.
|
|
46
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
47
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
48
|
+
*/
|
|
49
|
+
constructor(name: string, args?: IdentitySetArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Input properties used for looking up and filtering IdentitySet resources.
|
|
53
|
+
*/
|
|
54
|
+
export interface IdentitySetState {
|
|
55
|
+
/**
|
|
56
|
+
* Unique human-readable name of the IdentitySet.
|
|
57
|
+
*/
|
|
58
|
+
name?: pulumi.Input<string>;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* The set of arguments for constructing a IdentitySet resource.
|
|
62
|
+
*/
|
|
63
|
+
export interface IdentitySetArgs {
|
|
64
|
+
/**
|
|
65
|
+
* Unique human-readable name of the IdentitySet.
|
|
66
|
+
*/
|
|
67
|
+
name?: pulumi.Input<string>;
|
|
68
|
+
}
|