@pierskarsenbarg/sdm 1.30.0 → 1.32.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 +3 -6
- package/account.js +5 -5
- package/account.js.map +1 -1
- package/accountAttachment.js +7 -7
- package/accountAttachment.js.map +1 -1
- package/accountGroup.d.ts +87 -0
- package/accountGroup.js +84 -0
- package/accountGroup.js.map +1 -0
- package/approvalWorkflow.d.ts +6 -0
- package/approvalWorkflow.js +16 -10
- package/approvalWorkflow.js.map +1 -1
- package/getAccount.d.ts +2 -2
- package/getAccountGroup.d.ts +101 -0
- package/getAccountGroup.js +66 -0
- package/getAccountGroup.js.map +1 -0
- package/getGroup.d.ts +127 -0
- package/getGroup.js +72 -0
- package/getGroup.js.map +1 -0
- package/getGroupRole.d.ts +101 -0
- package/getGroupRole.js +66 -0
- package/getGroupRole.js.map +1 -0
- package/getNode.d.ts +2 -2
- package/getResource.d.ts +2 -2
- package/getSecretEngine.d.ts +74 -2
- package/getSecretEngine.js +12 -0
- package/getSecretEngine.js.map +1 -1
- package/getSecretStore.d.ts +2 -2
- package/getWorkflow.d.ts +32 -0
- package/getWorkflow.js +32 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowRole.d.ts +10 -4
- package/getWorkflowRole.js +10 -4
- package/getWorkflowRole.js.map +1 -1
- package/group.d.ts +110 -0
- package/group.js +79 -0
- package/group.js.map +1 -0
- package/groupRole.d.ts +87 -0
- package/groupRole.js +84 -0
- package/groupRole.js.map +1 -0
- package/identityAlias.js +10 -10
- package/identityAlias.js.map +1 -1
- package/identitySet.js +3 -3
- package/identitySet.js.map +1 -1
- package/index.d.ts +18 -0
- package/index.js +26 -2
- package/index.js.map +1 -1
- package/managedSecret.js +14 -14
- package/managedSecret.js.map +1 -1
- package/managedSecretValue.js +8 -8
- package/managedSecretValue.js.map +1 -1
- package/node.js +7 -7
- package/node.js.map +1 -1
- package/package.json +1 -1
- package/peeringGroup.js +3 -3
- package/peeringGroup.js.map +1 -1
- package/peeringGroupNode.js +5 -5
- package/peeringGroupNode.js.map +1 -1
- package/peeringGroupPeer.js +5 -5
- package/peeringGroupPeer.js.map +1 -1
- package/peeringGroupResource.js +5 -5
- package/peeringGroupResource.js.map +1 -1
- package/policy.js +7 -7
- package/policy.js.map +1 -1
- package/provider.js +4 -4
- package/provider.js.map +1 -1
- package/proxyClusterKey.js +5 -5
- package/proxyClusterKey.js.map +1 -1
- package/remoteIdentity.js +10 -10
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +96 -27
- package/resource.js +221 -215
- package/resource.js.map +1 -1
- package/role.d.ts +37 -0
- package/role.js +45 -8
- package/role.js.map +1 -1
- package/secretEngine.d.ts +9 -15
- package/secretEngine.js +7 -5
- package/secretEngine.js.map +1 -1
- package/secretStore.d.ts +3 -6
- package/secretStore.js +47 -47
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +613 -348
- package/types/output.d.ts +1299 -688
- package/utilities.js +18 -29
- package/utilities.js.map +1 -1
- package/workflow.d.ts +42 -0
- package/workflow.js +61 -19
- package/workflow.js.map +1 -1
- package/workflowApprover.js +8 -8
- package/workflowApprover.js.map +1 -1
- package/workflowRole.d.ts +6 -2
- package/workflowRole.js +13 -9
- package/workflowRole.js.map +1 -1
package/account.d.ts
CHANGED
|
@@ -58,8 +58,7 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
58
58
|
*/
|
|
59
59
|
static isInstance(obj: any): obj is Account;
|
|
60
60
|
/**
|
|
61
|
-
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services
|
|
62
|
-
* are typically automated jobs.
|
|
61
|
+
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services are typically automated jobs.
|
|
63
62
|
*/
|
|
64
63
|
readonly service: pulumi.Output<outputs.AccountService | undefined>;
|
|
65
64
|
/**
|
|
@@ -80,8 +79,7 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
80
79
|
*/
|
|
81
80
|
export interface AccountState {
|
|
82
81
|
/**
|
|
83
|
-
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services
|
|
84
|
-
* are typically automated jobs.
|
|
82
|
+
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services are typically automated jobs.
|
|
85
83
|
*/
|
|
86
84
|
service?: pulumi.Input<inputs.AccountService>;
|
|
87
85
|
/**
|
|
@@ -94,8 +92,7 @@ export interface AccountState {
|
|
|
94
92
|
*/
|
|
95
93
|
export interface AccountArgs {
|
|
96
94
|
/**
|
|
97
|
-
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services
|
|
98
|
-
* are typically automated jobs.
|
|
95
|
+
* A Service is a service account that can connect to resources they are granted directly, or granted via roles. Services are typically automated jobs.
|
|
99
96
|
*/
|
|
100
97
|
service?: pulumi.Input<inputs.AccountService>;
|
|
101
98
|
/**
|
package/account.js
CHANGED
|
@@ -56,7 +56,7 @@ class Account extends pulumi.CustomResource {
|
|
|
56
56
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
57
57
|
*/
|
|
58
58
|
static get(name, id, state, opts) {
|
|
59
|
-
return new Account(name, state,
|
|
59
|
+
return new Account(name, state, { ...opts, id: id });
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* Returns true if the given object is an instance of Account. This is designed to work even
|
|
@@ -73,13 +73,13 @@ class Account extends pulumi.CustomResource {
|
|
|
73
73
|
opts = opts || {};
|
|
74
74
|
if (opts.id) {
|
|
75
75
|
const state = argsOrState;
|
|
76
|
-
resourceInputs["service"] = state
|
|
77
|
-
resourceInputs["user"] = state
|
|
76
|
+
resourceInputs["service"] = state?.service;
|
|
77
|
+
resourceInputs["user"] = state?.user;
|
|
78
78
|
}
|
|
79
79
|
else {
|
|
80
80
|
const args = argsOrState;
|
|
81
|
-
resourceInputs["service"] = args
|
|
82
|
-
resourceInputs["user"] = args
|
|
81
|
+
resourceInputs["service"] = args?.service;
|
|
82
|
+
resourceInputs["user"] = args?.user;
|
|
83
83
|
}
|
|
84
84
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
85
|
super(Account.__pulumiType, name, resourceInputs, opts);
|
package/account.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../account.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../account.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AA3DL,0BA4DC;AA9CG,gBAAgB;AACO,oBAAY,GAAG,2BAA2B,CAAC"}
|
package/accountAttachment.js
CHANGED
|
@@ -39,7 +39,7 @@ class AccountAttachment extends pulumi.CustomResource {
|
|
|
39
39
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
40
40
|
*/
|
|
41
41
|
static get(name, id, state, opts) {
|
|
42
|
-
return new AccountAttachment(name, state,
|
|
42
|
+
return new AccountAttachment(name, state, { ...opts, id: id });
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* Returns true if the given object is an instance of AccountAttachment. This is designed to work even
|
|
@@ -56,19 +56,19 @@ class AccountAttachment extends pulumi.CustomResource {
|
|
|
56
56
|
opts = opts || {};
|
|
57
57
|
if (opts.id) {
|
|
58
58
|
const state = argsOrState;
|
|
59
|
-
resourceInputs["accountId"] = state
|
|
60
|
-
resourceInputs["roleId"] = state
|
|
59
|
+
resourceInputs["accountId"] = state?.accountId;
|
|
60
|
+
resourceInputs["roleId"] = state?.roleId;
|
|
61
61
|
}
|
|
62
62
|
else {
|
|
63
63
|
const args = argsOrState;
|
|
64
|
-
if (
|
|
64
|
+
if (args?.accountId === undefined && !opts.urn) {
|
|
65
65
|
throw new Error("Missing required property 'accountId'");
|
|
66
66
|
}
|
|
67
|
-
if (
|
|
67
|
+
if (args?.roleId === undefined && !opts.urn) {
|
|
68
68
|
throw new Error("Missing required property 'roleId'");
|
|
69
69
|
}
|
|
70
|
-
resourceInputs["accountId"] = args
|
|
71
|
-
resourceInputs["roleId"] = args
|
|
70
|
+
resourceInputs["accountId"] = args?.accountId;
|
|
71
|
+
resourceInputs["roleId"] = args?.roleId;
|
|
72
72
|
}
|
|
73
73
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
74
74
|
super(AccountAttachment.__pulumiType, name, resourceInputs, opts);
|
package/accountAttachment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAttachment.js","sourceRoot":"","sources":["../accountAttachment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"accountAttachment.js","sourceRoot":"","sources":["../accountAttachment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAjEL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,+CAA+C,CAAC"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
4
|
+
* ## Example Usage
|
|
5
|
+
*
|
|
6
|
+
* ```typescript
|
|
7
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
9
|
+
*
|
|
10
|
+
* const securityLeadToSecurityTeam = new sdm.AccountGroup("securityLeadToSecurityTeam", {
|
|
11
|
+
* accountId: sdm_account.security_lead.id,
|
|
12
|
+
* groupId: sdm_group.security_team.id,
|
|
13
|
+
* });
|
|
14
|
+
* const adminUserToAdministrators = new sdm.AccountGroup("adminUserToAdministrators", {
|
|
15
|
+
* accountId: "a-1234567890abcdef",
|
|
16
|
+
* groupId: "group-1234567890abcdef",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
* This resource can be imported using the import command.
|
|
20
|
+
*
|
|
21
|
+
* ## Import
|
|
22
|
+
*
|
|
23
|
+
* A AccountGroup can be imported using the id, e.g.,
|
|
24
|
+
*
|
|
25
|
+
* ```sh
|
|
26
|
+
* $ pulumi import sdm:index/accountGroup:AccountGroup example accountgroup-12345678
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare class AccountGroup extends pulumi.CustomResource {
|
|
30
|
+
/**
|
|
31
|
+
* Get an existing AccountGroup resource's state with the given name, ID, and optional extra
|
|
32
|
+
* properties used to qualify the lookup.
|
|
33
|
+
*
|
|
34
|
+
* @param name The _unique_ name of the resulting resource.
|
|
35
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
36
|
+
* @param state Any extra arguments used during the lookup.
|
|
37
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
38
|
+
*/
|
|
39
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountGroupState, opts?: pulumi.CustomResourceOptions): AccountGroup;
|
|
40
|
+
/**
|
|
41
|
+
* Returns true if the given object is an instance of AccountGroup. This is designed to work even
|
|
42
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
43
|
+
*/
|
|
44
|
+
static isInstance(obj: any): obj is AccountGroup;
|
|
45
|
+
/**
|
|
46
|
+
* Unique identifier of the Account.
|
|
47
|
+
*/
|
|
48
|
+
readonly accountId: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Unique identifier of the Group.
|
|
51
|
+
*/
|
|
52
|
+
readonly groupId: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Create a AccountGroup resource with the given unique name, arguments, and options.
|
|
55
|
+
*
|
|
56
|
+
* @param name The _unique_ name of the resource.
|
|
57
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
58
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
59
|
+
*/
|
|
60
|
+
constructor(name: string, args: AccountGroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Input properties used for looking up and filtering AccountGroup resources.
|
|
64
|
+
*/
|
|
65
|
+
export interface AccountGroupState {
|
|
66
|
+
/**
|
|
67
|
+
* Unique identifier of the Account.
|
|
68
|
+
*/
|
|
69
|
+
accountId?: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* Unique identifier of the Group.
|
|
72
|
+
*/
|
|
73
|
+
groupId?: pulumi.Input<string>;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* The set of arguments for constructing a AccountGroup resource.
|
|
77
|
+
*/
|
|
78
|
+
export interface AccountGroupArgs {
|
|
79
|
+
/**
|
|
80
|
+
* Unique identifier of the Account.
|
|
81
|
+
*/
|
|
82
|
+
accountId: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Unique identifier of the Group.
|
|
85
|
+
*/
|
|
86
|
+
groupId: pulumi.Input<string>;
|
|
87
|
+
}
|
package/accountGroup.js
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.AccountGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
15
|
+
*
|
|
16
|
+
* const securityLeadToSecurityTeam = new sdm.AccountGroup("securityLeadToSecurityTeam", {
|
|
17
|
+
* accountId: sdm_account.security_lead.id,
|
|
18
|
+
* groupId: sdm_group.security_team.id,
|
|
19
|
+
* });
|
|
20
|
+
* const adminUserToAdministrators = new sdm.AccountGroup("adminUserToAdministrators", {
|
|
21
|
+
* accountId: "a-1234567890abcdef",
|
|
22
|
+
* groupId: "group-1234567890abcdef",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
* This resource can be imported using the import command.
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* A AccountGroup can be imported using the id, e.g.,
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import sdm:index/accountGroup:AccountGroup example accountgroup-12345678
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
class AccountGroup extends pulumi.CustomResource {
|
|
36
|
+
/**
|
|
37
|
+
* Get an existing AccountGroup resource's state with the given name, ID, and optional extra
|
|
38
|
+
* properties used to qualify the lookup.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resulting resource.
|
|
41
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
42
|
+
* @param state Any extra arguments used during the lookup.
|
|
43
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
|
+
*/
|
|
45
|
+
static get(name, id, state, opts) {
|
|
46
|
+
return new AccountGroup(name, state, { ...opts, id: id });
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Returns true if the given object is an instance of AccountGroup. This is designed to work even
|
|
50
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
51
|
+
*/
|
|
52
|
+
static isInstance(obj) {
|
|
53
|
+
if (obj === undefined || obj === null) {
|
|
54
|
+
return false;
|
|
55
|
+
}
|
|
56
|
+
return obj['__pulumiType'] === AccountGroup.__pulumiType;
|
|
57
|
+
}
|
|
58
|
+
constructor(name, argsOrState, opts) {
|
|
59
|
+
let resourceInputs = {};
|
|
60
|
+
opts = opts || {};
|
|
61
|
+
if (opts.id) {
|
|
62
|
+
const state = argsOrState;
|
|
63
|
+
resourceInputs["accountId"] = state?.accountId;
|
|
64
|
+
resourceInputs["groupId"] = state?.groupId;
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
const args = argsOrState;
|
|
68
|
+
if (args?.accountId === undefined && !opts.urn) {
|
|
69
|
+
throw new Error("Missing required property 'accountId'");
|
|
70
|
+
}
|
|
71
|
+
if (args?.groupId === undefined && !opts.urn) {
|
|
72
|
+
throw new Error("Missing required property 'groupId'");
|
|
73
|
+
}
|
|
74
|
+
resourceInputs["accountId"] = args?.accountId;
|
|
75
|
+
resourceInputs["groupId"] = args?.groupId;
|
|
76
|
+
}
|
|
77
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
78
|
+
super(AccountGroup.__pulumiType, name, resourceInputs, opts);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
exports.AccountGroup = AccountGroup;
|
|
82
|
+
/** @internal */
|
|
83
|
+
AccountGroup.__pulumiType = 'sdm:index/accountGroup:AccountGroup';
|
|
84
|
+
//# sourceMappingURL=accountGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountGroup.js","sourceRoot":"","sources":["../accountGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AAjEL,oCAkEC;AApDG,gBAAgB;AACO,yBAAY,GAAG,qCAAqC,CAAC"}
|
package/approvalWorkflow.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ import * as outputs from "./types/output";
|
|
|
19
19
|
* accountId: "a-1234abc",
|
|
20
20
|
* },
|
|
21
21
|
* {
|
|
22
|
+
* groupId: "group-1234abc",
|
|
23
|
+
* },
|
|
24
|
+
* {
|
|
22
25
|
* reference: "manager-of-requester",
|
|
23
26
|
* },
|
|
24
27
|
* ],
|
|
@@ -34,6 +37,9 @@ import * as outputs from "./types/output";
|
|
|
34
37
|
* accountId: "a-5678def",
|
|
35
38
|
* },
|
|
36
39
|
* {
|
|
40
|
+
* groupId: "group-5678def",
|
|
41
|
+
* },
|
|
42
|
+
* {
|
|
37
43
|
* reference: "manager-of-manager-of-requester",
|
|
38
44
|
* },
|
|
39
45
|
* ],
|
package/approvalWorkflow.js
CHANGED
|
@@ -23,6 +23,9 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* accountId: "a-1234abc",
|
|
24
24
|
* },
|
|
25
25
|
* {
|
|
26
|
+
* groupId: "group-1234abc",
|
|
27
|
+
* },
|
|
28
|
+
* {
|
|
26
29
|
* reference: "manager-of-requester",
|
|
27
30
|
* },
|
|
28
31
|
* ],
|
|
@@ -38,6 +41,9 @@ const utilities = require("./utilities");
|
|
|
38
41
|
* accountId: "a-5678def",
|
|
39
42
|
* },
|
|
40
43
|
* {
|
|
44
|
+
* groupId: "group-5678def",
|
|
45
|
+
* },
|
|
46
|
+
* {
|
|
41
47
|
* reference: "manager-of-manager-of-requester",
|
|
42
48
|
* },
|
|
43
49
|
* ],
|
|
@@ -69,7 +75,7 @@ class ApprovalWorkflow extends pulumi.CustomResource {
|
|
|
69
75
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
70
76
|
*/
|
|
71
77
|
static get(name, id, state, opts) {
|
|
72
|
-
return new ApprovalWorkflow(name, state,
|
|
78
|
+
return new ApprovalWorkflow(name, state, { ...opts, id: id });
|
|
73
79
|
}
|
|
74
80
|
/**
|
|
75
81
|
* Returns true if the given object is an instance of ApprovalWorkflow. This is designed to work even
|
|
@@ -86,20 +92,20 @@ class ApprovalWorkflow extends pulumi.CustomResource {
|
|
|
86
92
|
opts = opts || {};
|
|
87
93
|
if (opts.id) {
|
|
88
94
|
const state = argsOrState;
|
|
89
|
-
resourceInputs["approvalMode"] = state
|
|
90
|
-
resourceInputs["approvalSteps"] = state
|
|
91
|
-
resourceInputs["description"] = state
|
|
92
|
-
resourceInputs["name"] = state
|
|
95
|
+
resourceInputs["approvalMode"] = state?.approvalMode;
|
|
96
|
+
resourceInputs["approvalSteps"] = state?.approvalSteps;
|
|
97
|
+
resourceInputs["description"] = state?.description;
|
|
98
|
+
resourceInputs["name"] = state?.name;
|
|
93
99
|
}
|
|
94
100
|
else {
|
|
95
101
|
const args = argsOrState;
|
|
96
|
-
if (
|
|
102
|
+
if (args?.approvalMode === undefined && !opts.urn) {
|
|
97
103
|
throw new Error("Missing required property 'approvalMode'");
|
|
98
104
|
}
|
|
99
|
-
resourceInputs["approvalMode"] = args
|
|
100
|
-
resourceInputs["approvalSteps"] = args
|
|
101
|
-
resourceInputs["description"] = args
|
|
102
|
-
resourceInputs["name"] = args
|
|
105
|
+
resourceInputs["approvalMode"] = args?.approvalMode;
|
|
106
|
+
resourceInputs["approvalSteps"] = args?.approvalSteps;
|
|
107
|
+
resourceInputs["description"] = args?.description;
|
|
108
|
+
resourceInputs["name"] = args?.name;
|
|
103
109
|
}
|
|
104
110
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
105
111
|
super(ApprovalWorkflow.__pulumiType, name, resourceInputs, opts);
|
package/approvalWorkflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approvalWorkflow.js","sourceRoot":"","sources":["../approvalWorkflow.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"approvalWorkflow.js","sourceRoot":"","sources":["../approvalWorkflow.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IA2BD,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,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;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;;AA1EL,4CA2EC;AA7DG,gBAAgB;AACO,6BAAY,GAAG,6CAA6C,CAAC"}
|
package/getAccount.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export interface GetAccountArgs {
|
|
|
85
85
|
[key: string]: string;
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
|
-
* a filter to select all items of a certain subtype. See the [filter documentation](https://
|
|
88
|
+
* a filter to select all items of a certain subtype. See the [filter documentation](https://docs.strongdm.com/references/cli/filters/) for more information.
|
|
89
89
|
*/
|
|
90
90
|
type?: string;
|
|
91
91
|
}
|
|
@@ -239,7 +239,7 @@ export interface GetAccountOutputArgs {
|
|
|
239
239
|
[key: string]: pulumi.Input<string>;
|
|
240
240
|
}>;
|
|
241
241
|
/**
|
|
242
|
-
* a filter to select all items of a certain subtype. See the [filter documentation](https://
|
|
242
|
+
* a filter to select all items of a certain subtype. See the [filter documentation](https://docs.strongdm.com/references/cli/filters/) for more information.
|
|
243
243
|
*/
|
|
244
244
|
type?: pulumi.Input<string>;
|
|
245
245
|
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
10
|
+
*
|
|
11
|
+
* const securityLeadGroups = sdm.getAccountGroup({
|
|
12
|
+
* accountId: sdm_account.security_lead.id,
|
|
13
|
+
* });
|
|
14
|
+
* const specificRelationship = sdm.getAccountGroup({
|
|
15
|
+
* id: "accountgroup-1234567890abcdef",
|
|
16
|
+
* });
|
|
17
|
+
* const usersInGroup = sdm.getAccountGroup({
|
|
18
|
+
* groupId: sdm_group.devops_group.id,
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function getAccountGroup(args?: GetAccountGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountGroupResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getAccountGroup.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetAccountGroupArgs {
|
|
27
|
+
/**
|
|
28
|
+
* Unique identifier of the Account.
|
|
29
|
+
*/
|
|
30
|
+
accountId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier of the Group.
|
|
33
|
+
*/
|
|
34
|
+
groupId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier of the AccountGroup.
|
|
37
|
+
*/
|
|
38
|
+
id?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* A collection of values returned by getAccountGroup.
|
|
42
|
+
*/
|
|
43
|
+
export interface GetAccountGroupResult {
|
|
44
|
+
/**
|
|
45
|
+
* Unique identifier of the Account.
|
|
46
|
+
*/
|
|
47
|
+
readonly accountId?: string;
|
|
48
|
+
/**
|
|
49
|
+
* A list where each element has the following attributes:
|
|
50
|
+
*/
|
|
51
|
+
readonly accountsGroups: outputs.GetAccountGroupAccountsGroup[];
|
|
52
|
+
/**
|
|
53
|
+
* Unique identifier of the Group.
|
|
54
|
+
*/
|
|
55
|
+
readonly groupId?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Unique identifier of the AccountGroup.
|
|
58
|
+
*/
|
|
59
|
+
readonly id?: string;
|
|
60
|
+
/**
|
|
61
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
62
|
+
*/
|
|
63
|
+
readonly ids: string[];
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
67
|
+
* ## Example Usage
|
|
68
|
+
*
|
|
69
|
+
* ```typescript
|
|
70
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
71
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
72
|
+
*
|
|
73
|
+
* const securityLeadGroups = sdm.getAccountGroup({
|
|
74
|
+
* accountId: sdm_account.security_lead.id,
|
|
75
|
+
* });
|
|
76
|
+
* const specificRelationship = sdm.getAccountGroup({
|
|
77
|
+
* id: "accountgroup-1234567890abcdef",
|
|
78
|
+
* });
|
|
79
|
+
* const usersInGroup = sdm.getAccountGroup({
|
|
80
|
+
* groupId: sdm_group.devops_group.id,
|
|
81
|
+
* });
|
|
82
|
+
* ```
|
|
83
|
+
*/
|
|
84
|
+
export declare function getAccountGroupOutput(args?: GetAccountGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccountGroupResult>;
|
|
85
|
+
/**
|
|
86
|
+
* A collection of arguments for invoking getAccountGroup.
|
|
87
|
+
*/
|
|
88
|
+
export interface GetAccountGroupOutputArgs {
|
|
89
|
+
/**
|
|
90
|
+
* Unique identifier of the Account.
|
|
91
|
+
*/
|
|
92
|
+
accountId?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* Unique identifier of the Group.
|
|
95
|
+
*/
|
|
96
|
+
groupId?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* Unique identifier of the AccountGroup.
|
|
99
|
+
*/
|
|
100
|
+
id?: pulumi.Input<string>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getAccountGroupOutput = exports.getAccountGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
15
|
+
*
|
|
16
|
+
* const securityLeadGroups = sdm.getAccountGroup({
|
|
17
|
+
* accountId: sdm_account.security_lead.id,
|
|
18
|
+
* });
|
|
19
|
+
* const specificRelationship = sdm.getAccountGroup({
|
|
20
|
+
* id: "accountgroup-1234567890abcdef",
|
|
21
|
+
* });
|
|
22
|
+
* const usersInGroup = sdm.getAccountGroup({
|
|
23
|
+
* groupId: sdm_group.devops_group.id,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
function getAccountGroup(args, opts) {
|
|
28
|
+
args = args || {};
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invoke("sdm:index/getAccountGroup:getAccountGroup", {
|
|
31
|
+
"accountId": args.accountId,
|
|
32
|
+
"groupId": args.groupId,
|
|
33
|
+
"id": args.id,
|
|
34
|
+
}, opts);
|
|
35
|
+
}
|
|
36
|
+
exports.getAccountGroup = getAccountGroup;
|
|
37
|
+
/**
|
|
38
|
+
* An AccountGroup is a link between an Account and a Group.
|
|
39
|
+
* ## Example Usage
|
|
40
|
+
*
|
|
41
|
+
* ```typescript
|
|
42
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
44
|
+
*
|
|
45
|
+
* const securityLeadGroups = sdm.getAccountGroup({
|
|
46
|
+
* accountId: sdm_account.security_lead.id,
|
|
47
|
+
* });
|
|
48
|
+
* const specificRelationship = sdm.getAccountGroup({
|
|
49
|
+
* id: "accountgroup-1234567890abcdef",
|
|
50
|
+
* });
|
|
51
|
+
* const usersInGroup = sdm.getAccountGroup({
|
|
52
|
+
* groupId: sdm_group.devops_group.id,
|
|
53
|
+
* });
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
function getAccountGroupOutput(args, opts) {
|
|
57
|
+
args = args || {};
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
59
|
+
return pulumi.runtime.invokeOutput("sdm:index/getAccountGroup:getAccountGroup", {
|
|
60
|
+
"accountId": args.accountId,
|
|
61
|
+
"groupId": args.groupId,
|
|
62
|
+
"id": args.id,
|
|
63
|
+
}, opts);
|
|
64
|
+
}
|
|
65
|
+
exports.getAccountGroupOutput = getAccountGroupOutput;
|
|
66
|
+
//# sourceMappingURL=getAccountGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAccountGroup.js","sourceRoot":"","sources":["../getAccountGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,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,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;AA6CD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sDAQC"}
|