@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
|
@@ -4,7 +4,6 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
* ApprovalWorkflowApprover links an approval workflow approver to an ApprovalWorkflowStep
|
|
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";
|
|
@@ -20,7 +19,6 @@ import * as outputs from "./types/output";
|
|
|
20
19
|
* roleId: "r-542982",
|
|
21
20
|
* });
|
|
22
21
|
* ```
|
|
23
|
-
* <!--End PulumiCodeChooser -->
|
|
24
22
|
*/
|
|
25
23
|
export declare function getApprovalWorkflowApprover(args?: GetApprovalWorkflowApproverArgs, opts?: pulumi.InvokeOptions): Promise<GetApprovalWorkflowApproverResult>;
|
|
26
24
|
/**
|
|
@@ -85,7 +83,6 @@ export interface GetApprovalWorkflowApproverResult {
|
|
|
85
83
|
* ApprovalWorkflowApprover links an approval workflow approver to an ApprovalWorkflowStep
|
|
86
84
|
* ## Example Usage
|
|
87
85
|
*
|
|
88
|
-
* <!--Start PulumiCodeChooser -->
|
|
89
86
|
* ```typescript
|
|
90
87
|
* import * as pulumi from "@pulumi/pulumi";
|
|
91
88
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -101,7 +98,6 @@ export interface GetApprovalWorkflowApproverResult {
|
|
|
101
98
|
* roleId: "r-542982",
|
|
102
99
|
* });
|
|
103
100
|
* ```
|
|
104
|
-
* <!--End PulumiCodeChooser -->
|
|
105
101
|
*/
|
|
106
102
|
export declare function getApprovalWorkflowApproverOutput(args?: GetApprovalWorkflowApproverOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApprovalWorkflowApproverResult>;
|
|
107
103
|
/**
|
|
@@ -9,7 +9,6 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* ApprovalWorkflowApprover links an approval workflow approver to an ApprovalWorkflowStep
|
|
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";
|
|
@@ -25,7 +24,6 @@ const utilities = require("./utilities");
|
|
|
25
24
|
* roleId: "r-542982",
|
|
26
25
|
* });
|
|
27
26
|
* ```
|
|
28
|
-
* <!--End PulumiCodeChooser -->
|
|
29
27
|
*/
|
|
30
28
|
function getApprovalWorkflowApprover(args, opts) {
|
|
31
29
|
args = args || {};
|
|
@@ -43,7 +41,6 @@ exports.getApprovalWorkflowApprover = getApprovalWorkflowApprover;
|
|
|
43
41
|
* ApprovalWorkflowApprover links an approval workflow approver to an ApprovalWorkflowStep
|
|
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";
|
|
@@ -59,7 +56,6 @@ exports.getApprovalWorkflowApprover = getApprovalWorkflowApprover;
|
|
|
59
56
|
* roleId: "r-542982",
|
|
60
57
|
* });
|
|
61
58
|
* ```
|
|
62
|
-
* <!--End PulumiCodeChooser -->
|
|
63
59
|
*/
|
|
64
60
|
function getApprovalWorkflowApproverOutput(args, opts) {
|
|
65
61
|
return pulumi.output(args).apply((a) => getApprovalWorkflowApprover(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getApprovalWorkflowApprover.js","sourceRoot":"","sources":["../getApprovalWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getApprovalWorkflowApprover.js","sourceRoot":"","sources":["../getApprovalWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAA2B;IAC3G,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,mEAAmE,EAAE;QAC9F,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,kEAWC;AA6DD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,iCAAiC,CAAC,IAA4C,EAAE,IAA2B;IACvH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,2BAA2B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtF,CAAC;AAFD,8EAEC"}
|
|
@@ -4,7 +4,6 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
* ApprovalWorkflowStep links an approval workflow step to an ApprovalWorkflow
|
|
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";
|
|
@@ -13,7 +12,6 @@ import * as outputs from "./types/output";
|
|
|
13
12
|
* approvalFlowId: "af-7935485",
|
|
14
13
|
* });
|
|
15
14
|
* ```
|
|
16
|
-
* <!--End PulumiCodeChooser -->
|
|
17
15
|
*/
|
|
18
16
|
export declare function getApprovalWorkflowStep(args?: GetApprovalWorkflowStepArgs, opts?: pulumi.InvokeOptions): Promise<GetApprovalWorkflowStepResult>;
|
|
19
17
|
/**
|
|
@@ -54,7 +52,6 @@ export interface GetApprovalWorkflowStepResult {
|
|
|
54
52
|
* ApprovalWorkflowStep links an approval workflow step to an ApprovalWorkflow
|
|
55
53
|
* ## Example Usage
|
|
56
54
|
*
|
|
57
|
-
* <!--Start PulumiCodeChooser -->
|
|
58
55
|
* ```typescript
|
|
59
56
|
* import * as pulumi from "@pulumi/pulumi";
|
|
60
57
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -63,7 +60,6 @@ export interface GetApprovalWorkflowStepResult {
|
|
|
63
60
|
* approvalFlowId: "af-7935485",
|
|
64
61
|
* });
|
|
65
62
|
* ```
|
|
66
|
-
* <!--End PulumiCodeChooser -->
|
|
67
63
|
*/
|
|
68
64
|
export declare function getApprovalWorkflowStepOutput(args?: GetApprovalWorkflowStepOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApprovalWorkflowStepResult>;
|
|
69
65
|
/**
|
|
@@ -9,7 +9,6 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* ApprovalWorkflowStep links an approval workflow step to an ApprovalWorkflow
|
|
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";
|
|
@@ -18,7 +17,6 @@ const utilities = require("./utilities");
|
|
|
18
17
|
* approvalFlowId: "af-7935485",
|
|
19
18
|
* });
|
|
20
19
|
* ```
|
|
21
|
-
* <!--End PulumiCodeChooser -->
|
|
22
20
|
*/
|
|
23
21
|
function getApprovalWorkflowStep(args, opts) {
|
|
24
22
|
args = args || {};
|
|
@@ -33,7 +31,6 @@ exports.getApprovalWorkflowStep = getApprovalWorkflowStep;
|
|
|
33
31
|
* ApprovalWorkflowStep links an approval workflow step to an ApprovalWorkflow
|
|
34
32
|
* ## Example Usage
|
|
35
33
|
*
|
|
36
|
-
* <!--Start PulumiCodeChooser -->
|
|
37
34
|
* ```typescript
|
|
38
35
|
* import * as pulumi from "@pulumi/pulumi";
|
|
39
36
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -42,7 +39,6 @@ exports.getApprovalWorkflowStep = getApprovalWorkflowStep;
|
|
|
42
39
|
* approvalFlowId: "af-7935485",
|
|
43
40
|
* });
|
|
44
41
|
* ```
|
|
45
|
-
* <!--End PulumiCodeChooser -->
|
|
46
42
|
*/
|
|
47
43
|
function getApprovalWorkflowStepOutput(args, opts) {
|
|
48
44
|
return pulumi.output(args).apply((a) => getApprovalWorkflowStep(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getApprovalWorkflowStep.js","sourceRoot":"","sources":["../getApprovalWorkflowStep.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getApprovalWorkflowStep.js","sourceRoot":"","sources":["../getApprovalWorkflowStep.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,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,2DAA2D,EAAE;QACtF,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0DAQC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,6BAA6B,CAAC,IAAwC,EAAE,IAA2B;IAC/G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* IdentityAliases define the username to be used for a specific account
|
|
5
|
+
* when connecting to a remote resource using that identity set.
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as sdm from "@pulumi/sdm";
|
|
11
|
+
*
|
|
12
|
+
* const user = sdm.getIdentityAlias({
|
|
13
|
+
* id: "i-0900909",
|
|
14
|
+
* username: "user",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getIdentityAlias(args?: GetIdentityAliasArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentityAliasResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getIdentityAlias.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetIdentityAliasArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The account for this identity alias.
|
|
25
|
+
*/
|
|
26
|
+
accountId?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Unique identifier of the IdentityAlias.
|
|
29
|
+
*/
|
|
30
|
+
id?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The identity set.
|
|
33
|
+
*/
|
|
34
|
+
identitySetId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The username to be used as the identity alias for this account.
|
|
37
|
+
*/
|
|
38
|
+
username?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* A collection of values returned by getIdentityAlias.
|
|
42
|
+
*/
|
|
43
|
+
export interface GetIdentityAliasResult {
|
|
44
|
+
/**
|
|
45
|
+
* The account for this identity alias.
|
|
46
|
+
*/
|
|
47
|
+
readonly accountId?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unique identifier of the IdentityAlias.
|
|
50
|
+
*/
|
|
51
|
+
readonly id?: string;
|
|
52
|
+
/**
|
|
53
|
+
* A list where each element has the following attributes:
|
|
54
|
+
*/
|
|
55
|
+
readonly identityAliases: outputs.GetIdentityAliasIdentityAlias[];
|
|
56
|
+
/**
|
|
57
|
+
* The identity set.
|
|
58
|
+
*/
|
|
59
|
+
readonly identitySetId?: string;
|
|
60
|
+
/**
|
|
61
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
62
|
+
*/
|
|
63
|
+
readonly ids: string[];
|
|
64
|
+
/**
|
|
65
|
+
* The username to be used as the identity alias for this account.
|
|
66
|
+
*/
|
|
67
|
+
readonly username?: string;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* IdentityAliases define the username to be used for a specific account
|
|
71
|
+
* when connecting to a remote resource using that identity set.
|
|
72
|
+
* ## Example Usage
|
|
73
|
+
*
|
|
74
|
+
* ```typescript
|
|
75
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
76
|
+
* import * as sdm from "@pulumi/sdm";
|
|
77
|
+
*
|
|
78
|
+
* const user = sdm.getIdentityAlias({
|
|
79
|
+
* id: "i-0900909",
|
|
80
|
+
* username: "user",
|
|
81
|
+
* });
|
|
82
|
+
* ```
|
|
83
|
+
*/
|
|
84
|
+
export declare function getIdentityAliasOutput(args?: GetIdentityAliasOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIdentityAliasResult>;
|
|
85
|
+
/**
|
|
86
|
+
* A collection of arguments for invoking getIdentityAlias.
|
|
87
|
+
*/
|
|
88
|
+
export interface GetIdentityAliasOutputArgs {
|
|
89
|
+
/**
|
|
90
|
+
* The account for this identity alias.
|
|
91
|
+
*/
|
|
92
|
+
accountId?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* Unique identifier of the IdentityAlias.
|
|
95
|
+
*/
|
|
96
|
+
id?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* The identity set.
|
|
99
|
+
*/
|
|
100
|
+
identitySetId?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The username to be used as the identity alias for this account.
|
|
103
|
+
*/
|
|
104
|
+
username?: pulumi.Input<string>;
|
|
105
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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.getIdentityAliasOutput = exports.getIdentityAlias = 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
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as sdm from "@pulumi/sdm";
|
|
16
|
+
*
|
|
17
|
+
* const user = sdm.getIdentityAlias({
|
|
18
|
+
* id: "i-0900909",
|
|
19
|
+
* username: "user",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getIdentityAlias(args, opts) {
|
|
24
|
+
args = args || {};
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("sdm:index/getIdentityAlias:getIdentityAlias", {
|
|
27
|
+
"accountId": args.accountId,
|
|
28
|
+
"id": args.id,
|
|
29
|
+
"identitySetId": args.identitySetId,
|
|
30
|
+
"username": args.username,
|
|
31
|
+
}, opts);
|
|
32
|
+
}
|
|
33
|
+
exports.getIdentityAlias = getIdentityAlias;
|
|
34
|
+
/**
|
|
35
|
+
* IdentityAliases define the username to be used for a specific account
|
|
36
|
+
* when connecting to a remote resource using that identity set.
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as sdm from "@pulumi/sdm";
|
|
42
|
+
*
|
|
43
|
+
* const user = sdm.getIdentityAlias({
|
|
44
|
+
* id: "i-0900909",
|
|
45
|
+
* username: "user",
|
|
46
|
+
* });
|
|
47
|
+
* ```
|
|
48
|
+
*/
|
|
49
|
+
function getIdentityAliasOutput(args, opts) {
|
|
50
|
+
return pulumi.output(args).apply((a) => getIdentityAlias(a, opts));
|
|
51
|
+
}
|
|
52
|
+
exports.getIdentityAliasOutput = getIdentityAliasOutput;
|
|
53
|
+
//# sourceMappingURL=getIdentityAlias.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIdentityAlias.js","sourceRoot":"","sources":["../getIdentityAlias.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,6CAA6C,EAAE;QACxE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,4CAUC;AAqDD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* A IdentitySet defines a group of identity aliases.
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as sdm from "@pulumi/sdm";
|
|
10
|
+
*
|
|
11
|
+
* const default = sdm.getIdentitySet({
|
|
12
|
+
* name: "default",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getIdentitySet(args?: GetIdentitySetArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentitySetResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getIdentitySet.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetIdentitySetArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Unique identifier of the IdentitySet.
|
|
23
|
+
*/
|
|
24
|
+
id?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Unique human-readable name of the IdentitySet.
|
|
27
|
+
*/
|
|
28
|
+
name?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A collection of values returned by getIdentitySet.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetIdentitySetResult {
|
|
34
|
+
/**
|
|
35
|
+
* Unique identifier of the IdentitySet.
|
|
36
|
+
*/
|
|
37
|
+
readonly id?: string;
|
|
38
|
+
/**
|
|
39
|
+
* A list where each element has the following attributes:
|
|
40
|
+
*/
|
|
41
|
+
readonly identitySets: outputs.GetIdentitySetIdentitySet[];
|
|
42
|
+
/**
|
|
43
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
44
|
+
*/
|
|
45
|
+
readonly ids: string[];
|
|
46
|
+
/**
|
|
47
|
+
* Unique human-readable name of the IdentitySet.
|
|
48
|
+
*/
|
|
49
|
+
readonly name?: string;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* A IdentitySet defines a group of identity aliases.
|
|
53
|
+
* ## Example Usage
|
|
54
|
+
*
|
|
55
|
+
* ```typescript
|
|
56
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
57
|
+
* import * as sdm from "@pulumi/sdm";
|
|
58
|
+
*
|
|
59
|
+
* const default = sdm.getIdentitySet({
|
|
60
|
+
* name: "default",
|
|
61
|
+
* });
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
export declare function getIdentitySetOutput(args?: GetIdentitySetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIdentitySetResult>;
|
|
65
|
+
/**
|
|
66
|
+
* A collection of arguments for invoking getIdentitySet.
|
|
67
|
+
*/
|
|
68
|
+
export interface GetIdentitySetOutputArgs {
|
|
69
|
+
/**
|
|
70
|
+
* Unique identifier of the IdentitySet.
|
|
71
|
+
*/
|
|
72
|
+
id?: pulumi.Input<string>;
|
|
73
|
+
/**
|
|
74
|
+
* Unique human-readable name of the IdentitySet.
|
|
75
|
+
*/
|
|
76
|
+
name?: pulumi.Input<string>;
|
|
77
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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.getIdentitySetOutput = exports.getIdentitySet = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A IdentitySet defines a group of identity aliases.
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as sdm from "@pulumi/sdm";
|
|
15
|
+
*
|
|
16
|
+
* const default = sdm.getIdentitySet({
|
|
17
|
+
* name: "default",
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
function getIdentitySet(args, opts) {
|
|
22
|
+
args = args || {};
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("sdm:index/getIdentitySet:getIdentitySet", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
"name": args.name,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getIdentitySet = getIdentitySet;
|
|
30
|
+
/**
|
|
31
|
+
* A IdentitySet defines a group of identity aliases.
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as sdm from "@pulumi/sdm";
|
|
37
|
+
*
|
|
38
|
+
* const default = sdm.getIdentitySet({
|
|
39
|
+
* name: "default",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getIdentitySetOutput(args, opts) {
|
|
44
|
+
return pulumi.output(args).apply((a) => getIdentitySet(a, opts));
|
|
45
|
+
}
|
|
46
|
+
exports.getIdentitySetOutput = getIdentitySetOutput;
|
|
47
|
+
//# sourceMappingURL=getIdentitySet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIdentitySet.js","sourceRoot":"","sources":["../getIdentitySet.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;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,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AAqCD;;;;;;;;;;;;GAYG;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/getNode.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import * as outputs from "./types/output";
|
|
|
7
7
|
* 2. **Gateways:** a relay that also listens for connections from strongDM clients
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
10
|
-
* <!--Start PulumiCodeChooser -->
|
|
11
10
|
* ```typescript
|
|
12
11
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
12
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -20,7 +19,6 @@ import * as outputs from "./types/output";
|
|
|
20
19
|
* type: "gateway",
|
|
21
20
|
* });
|
|
22
21
|
* ```
|
|
23
|
-
* <!--End PulumiCodeChooser -->
|
|
24
22
|
*/
|
|
25
23
|
export declare function getNode(args?: GetNodeArgs, opts?: pulumi.InvokeOptions): Promise<GetNodeResult>;
|
|
26
24
|
/**
|
|
@@ -47,7 +45,7 @@ export interface GetNodeArgs {
|
|
|
47
45
|
* Tags is a map of key, value pairs.
|
|
48
46
|
*/
|
|
49
47
|
tags?: {
|
|
50
|
-
[key: string]:
|
|
48
|
+
[key: string]: string;
|
|
51
49
|
};
|
|
52
50
|
/**
|
|
53
51
|
* 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.
|
|
@@ -87,7 +85,7 @@ export interface GetNodeResult {
|
|
|
87
85
|
* Tags is a map of key, value pairs.
|
|
88
86
|
*/
|
|
89
87
|
readonly tags?: {
|
|
90
|
-
[key: string]:
|
|
88
|
+
[key: string]: string;
|
|
91
89
|
};
|
|
92
90
|
readonly type?: string;
|
|
93
91
|
}
|
|
@@ -98,7 +96,6 @@ export interface GetNodeResult {
|
|
|
98
96
|
* 2. **Gateways:** a relay that also listens for connections from strongDM clients
|
|
99
97
|
* ## Example Usage
|
|
100
98
|
*
|
|
101
|
-
* <!--Start PulumiCodeChooser -->
|
|
102
99
|
* ```typescript
|
|
103
100
|
* import * as pulumi from "@pulumi/pulumi";
|
|
104
101
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -111,7 +108,6 @@ export interface GetNodeResult {
|
|
|
111
108
|
* type: "gateway",
|
|
112
109
|
* });
|
|
113
110
|
* ```
|
|
114
|
-
* <!--End PulumiCodeChooser -->
|
|
115
111
|
*/
|
|
116
112
|
export declare function getNodeOutput(args?: GetNodeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNodeResult>;
|
|
117
113
|
/**
|
|
@@ -138,7 +134,7 @@ export interface GetNodeOutputArgs {
|
|
|
138
134
|
* Tags is a map of key, value pairs.
|
|
139
135
|
*/
|
|
140
136
|
tags?: pulumi.Input<{
|
|
141
|
-
[key: string]:
|
|
137
|
+
[key: string]: pulumi.Input<string>;
|
|
142
138
|
}>;
|
|
143
139
|
/**
|
|
144
140
|
* 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/getNode.js
CHANGED
|
@@ -12,7 +12,6 @@ const utilities = require("./utilities");
|
|
|
12
12
|
* 2. **Gateways:** a relay that also listens for connections from strongDM clients
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
-
* <!--Start PulumiCodeChooser -->
|
|
16
15
|
* ```typescript
|
|
17
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
18
17
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -25,7 +24,6 @@ const utilities = require("./utilities");
|
|
|
25
24
|
* type: "gateway",
|
|
26
25
|
* });
|
|
27
26
|
* ```
|
|
28
|
-
* <!--End PulumiCodeChooser -->
|
|
29
27
|
*/
|
|
30
28
|
function getNode(args, opts) {
|
|
31
29
|
args = args || {};
|
|
@@ -47,7 +45,6 @@ exports.getNode = getNode;
|
|
|
47
45
|
* 2. **Gateways:** a relay that also listens for connections from strongDM clients
|
|
48
46
|
* ## Example Usage
|
|
49
47
|
*
|
|
50
|
-
* <!--Start PulumiCodeChooser -->
|
|
51
48
|
* ```typescript
|
|
52
49
|
* import * as pulumi from "@pulumi/pulumi";
|
|
53
50
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -60,7 +57,6 @@ exports.getNode = getNode;
|
|
|
60
57
|
* type: "gateway",
|
|
61
58
|
* });
|
|
62
59
|
* ```
|
|
63
|
-
* <!--End PulumiCodeChooser -->
|
|
64
60
|
*/
|
|
65
61
|
function getNodeOutput(args, opts) {
|
|
66
62
|
return pulumi.output(args).apply((a) => getNode(a, opts));
|
package/getNode.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNode.js","sourceRoot":"","sources":["../getNode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNode.js","sourceRoot":"","sources":["../getNode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,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,2BAA2B,EAAE;QACtD,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0BAYC;AAmED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|
package/getRemoteIdentity.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
* when connecting to a remote resource using that group.
|
|
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
|
* username: "user",
|
|
16
15
|
* });
|
|
17
16
|
* ```
|
|
18
|
-
* <!--End PulumiCodeChooser -->
|
|
19
17
|
*/
|
|
20
18
|
export declare function getRemoteIdentity(args?: GetRemoteIdentityArgs, opts?: pulumi.InvokeOptions): Promise<GetRemoteIdentityResult>;
|
|
21
19
|
/**
|
|
@@ -73,7 +71,6 @@ export interface GetRemoteIdentityResult {
|
|
|
73
71
|
* when connecting to a remote resource using that group.
|
|
74
72
|
* ## Example Usage
|
|
75
73
|
*
|
|
76
|
-
* <!--Start PulumiCodeChooser -->
|
|
77
74
|
* ```typescript
|
|
78
75
|
* import * as pulumi from "@pulumi/pulumi";
|
|
79
76
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -83,7 +80,6 @@ export interface GetRemoteIdentityResult {
|
|
|
83
80
|
* username: "user",
|
|
84
81
|
* });
|
|
85
82
|
* ```
|
|
86
|
-
* <!--End PulumiCodeChooser -->
|
|
87
83
|
*/
|
|
88
84
|
export declare function getRemoteIdentityOutput(args?: GetRemoteIdentityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRemoteIdentityResult>;
|
|
89
85
|
/**
|
package/getRemoteIdentity.js
CHANGED
|
@@ -10,7 +10,6 @@ const utilities = require("./utilities");
|
|
|
10
10
|
* when connecting to a remote resource using that group.
|
|
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
|
* username: "user",
|
|
21
20
|
* });
|
|
22
21
|
* ```
|
|
23
|
-
* <!--End PulumiCodeChooser -->
|
|
24
22
|
*/
|
|
25
23
|
function getRemoteIdentity(args, opts) {
|
|
26
24
|
args = args || {};
|
|
@@ -38,7 +36,6 @@ exports.getRemoteIdentity = getRemoteIdentity;
|
|
|
38
36
|
* when connecting to a remote resource using that group.
|
|
39
37
|
* ## Example Usage
|
|
40
38
|
*
|
|
41
|
-
* <!--Start PulumiCodeChooser -->
|
|
42
39
|
* ```typescript
|
|
43
40
|
* import * as pulumi from "@pulumi/pulumi";
|
|
44
41
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -48,7 +45,6 @@ exports.getRemoteIdentity = getRemoteIdentity;
|
|
|
48
45
|
* username: "user",
|
|
49
46
|
* });
|
|
50
47
|
* ```
|
|
51
|
-
* <!--End PulumiCodeChooser -->
|
|
52
48
|
*/
|
|
53
49
|
function getRemoteIdentityOutput(args, opts) {
|
|
54
50
|
return pulumi.output(args).apply((a) => getRemoteIdentity(a, opts));
|
package/getRemoteIdentity.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRemoteIdentity.js","sourceRoot":"","sources":["../getRemoteIdentity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getRemoteIdentity.js","sourceRoot":"","sources":["../getRemoteIdentity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,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,+CAA+C,EAAE;QAC1E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8CAUC;AAqDD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
|
@@ -4,7 +4,6 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
* A RemoteIdentityGroup defines a group of remote identities.
|
|
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";
|
|
@@ -13,7 +12,6 @@ import * as outputs from "./types/output";
|
|
|
13
12
|
* name: "default",
|
|
14
13
|
* });
|
|
15
14
|
* ```
|
|
16
|
-
* <!--End PulumiCodeChooser -->
|
|
17
15
|
*/
|
|
18
16
|
export declare function getRemoteIdentityGroup(args?: GetRemoteIdentityGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetRemoteIdentityGroupResult>;
|
|
19
17
|
/**
|
|
@@ -54,7 +52,6 @@ export interface GetRemoteIdentityGroupResult {
|
|
|
54
52
|
* A RemoteIdentityGroup defines a group of remote identities.
|
|
55
53
|
* ## Example Usage
|
|
56
54
|
*
|
|
57
|
-
* <!--Start PulumiCodeChooser -->
|
|
58
55
|
* ```typescript
|
|
59
56
|
* import * as pulumi from "@pulumi/pulumi";
|
|
60
57
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -63,7 +60,6 @@ export interface GetRemoteIdentityGroupResult {
|
|
|
63
60
|
* name: "default",
|
|
64
61
|
* });
|
|
65
62
|
* ```
|
|
66
|
-
* <!--End PulumiCodeChooser -->
|
|
67
63
|
*/
|
|
68
64
|
export declare function getRemoteIdentityGroupOutput(args?: GetRemoteIdentityGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRemoteIdentityGroupResult>;
|
|
69
65
|
/**
|
|
@@ -9,7 +9,6 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* A RemoteIdentityGroup defines a group of remote identities.
|
|
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";
|
|
@@ -18,7 +17,6 @@ const utilities = require("./utilities");
|
|
|
18
17
|
* name: "default",
|
|
19
18
|
* });
|
|
20
19
|
* ```
|
|
21
|
-
* <!--End PulumiCodeChooser -->
|
|
22
20
|
*/
|
|
23
21
|
function getRemoteIdentityGroup(args, opts) {
|
|
24
22
|
args = args || {};
|
|
@@ -33,7 +31,6 @@ exports.getRemoteIdentityGroup = getRemoteIdentityGroup;
|
|
|
33
31
|
* A RemoteIdentityGroup defines a group of remote identities.
|
|
34
32
|
* ## Example Usage
|
|
35
33
|
*
|
|
36
|
-
* <!--Start PulumiCodeChooser -->
|
|
37
34
|
* ```typescript
|
|
38
35
|
* import * as pulumi from "@pulumi/pulumi";
|
|
39
36
|
* import * as sdm from "@pulumi/sdm";
|
|
@@ -42,7 +39,6 @@ exports.getRemoteIdentityGroup = getRemoteIdentityGroup;
|
|
|
42
39
|
* name: "default",
|
|
43
40
|
* });
|
|
44
41
|
* ```
|
|
45
|
-
* <!--End PulumiCodeChooser -->
|
|
46
42
|
*/
|
|
47
43
|
function getRemoteIdentityGroupOutput(args, opts) {
|
|
48
44
|
return pulumi.output(args).apply((a) => getRemoteIdentityGroup(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRemoteIdentityGroup.js","sourceRoot":"","sources":["../getRemoteIdentityGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getRemoteIdentityGroup.js","sourceRoot":"","sources":["../getRemoteIdentityGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,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,yDAAyD,EAAE;QACpF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wDAQC;AAqCD;;;;;;;;;;;;GAYG;AACH,SAAgB,4BAA4B,CAAC,IAAuC,EAAE,IAA2B;IAC7G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,sBAAsB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjF,CAAC;AAFD,oEAEC"}
|