@pierskarsenbarg/sdm 0.0.9 → 0.1.5
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/getRole.d.ts +0 -18
- package/getRole.js +0 -1
- package/getRole.js.map +1 -1
- package/index.d.ts +0 -6
- package/index.js +0 -18
- package/index.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/role.d.ts +0 -18
- package/role.js +0 -2
- package/role.js.map +1 -1
- package/types/input.d.ts +10 -3
- package/types/output.d.ts +70 -101
- package/accountGrant.d.ts +0 -69
- package/accountGrant.js +0 -66
- package/accountGrant.js.map +0 -1
- package/getAccountGrant.d.ts +0 -77
- package/getAccountGrant.js +0 -39
- package/getAccountGrant.js.map +0 -1
- package/getRoleAttachment.d.ts +0 -79
- package/getRoleAttachment.js +0 -41
- package/getRoleAttachment.js.map +0 -1
- package/getRoleGrant.d.ts +0 -79
- package/getRoleGrant.js +0 -41
- package/getRoleGrant.js.map +0 -1
- package/roleAttachment.d.ts +0 -69
- package/roleAttachment.js +0 -66
- package/roleAttachment.js.map +0 -1
- package/roleGrant.d.ts +0 -69
- package/roleGrant.js +0 -66
- package/roleGrant.js.map +0 -1
package/accountGrant.d.ts
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
/**
|
|
3
|
-
* ## Import
|
|
4
|
-
*
|
|
5
|
-
* AccountGrant can be imported using the id, e.g.,
|
|
6
|
-
*
|
|
7
|
-
* ```sh
|
|
8
|
-
* $ pulumi import sdm:index/accountGrant:AccountGrant example ag-12345678
|
|
9
|
-
* ```
|
|
10
|
-
*/
|
|
11
|
-
export declare class AccountGrant extends pulumi.CustomResource {
|
|
12
|
-
/**
|
|
13
|
-
* Get an existing AccountGrant resource's state with the given name, ID, and optional extra
|
|
14
|
-
* properties used to qualify the lookup.
|
|
15
|
-
*
|
|
16
|
-
* @param name The _unique_ name of the resulting resource.
|
|
17
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
-
* @param state Any extra arguments used during the lookup.
|
|
19
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
-
*/
|
|
21
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountGrantState, opts?: pulumi.CustomResourceOptions): AccountGrant;
|
|
22
|
-
/**
|
|
23
|
-
* Returns true if the given object is an instance of AccountGrant. This is designed to work even
|
|
24
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
25
|
-
*/
|
|
26
|
-
static isInstance(obj: any): obj is AccountGrant;
|
|
27
|
-
/**
|
|
28
|
-
* The account id of this AccountGrant.
|
|
29
|
-
*/
|
|
30
|
-
readonly accountId: pulumi.Output<string>;
|
|
31
|
-
/**
|
|
32
|
-
* The resource id of this AccountGrant.
|
|
33
|
-
*/
|
|
34
|
-
readonly resourceId: pulumi.Output<string>;
|
|
35
|
-
/**
|
|
36
|
-
* Create a AccountGrant resource with the given unique name, arguments, and options.
|
|
37
|
-
*
|
|
38
|
-
* @param name The _unique_ name of the resource.
|
|
39
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
40
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
41
|
-
*/
|
|
42
|
-
constructor(name: string, args: AccountGrantArgs, opts?: pulumi.CustomResourceOptions);
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* Input properties used for looking up and filtering AccountGrant resources.
|
|
46
|
-
*/
|
|
47
|
-
export interface AccountGrantState {
|
|
48
|
-
/**
|
|
49
|
-
* The account id of this AccountGrant.
|
|
50
|
-
*/
|
|
51
|
-
accountId?: pulumi.Input<string>;
|
|
52
|
-
/**
|
|
53
|
-
* The resource id of this AccountGrant.
|
|
54
|
-
*/
|
|
55
|
-
resourceId?: pulumi.Input<string>;
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* The set of arguments for constructing a AccountGrant resource.
|
|
59
|
-
*/
|
|
60
|
-
export interface AccountGrantArgs {
|
|
61
|
-
/**
|
|
62
|
-
* The account id of this AccountGrant.
|
|
63
|
-
*/
|
|
64
|
-
accountId: pulumi.Input<string>;
|
|
65
|
-
/**
|
|
66
|
-
* The resource id of this AccountGrant.
|
|
67
|
-
*/
|
|
68
|
-
resourceId: pulumi.Input<string>;
|
|
69
|
-
}
|
package/accountGrant.js
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
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.AccountGrant = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* ## Import
|
|
10
|
-
*
|
|
11
|
-
* AccountGrant can be imported using the id, e.g.,
|
|
12
|
-
*
|
|
13
|
-
* ```sh
|
|
14
|
-
* $ pulumi import sdm:index/accountGrant:AccountGrant example ag-12345678
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
class AccountGrant extends pulumi.CustomResource {
|
|
18
|
-
constructor(name, argsOrState, opts) {
|
|
19
|
-
let resourceInputs = {};
|
|
20
|
-
opts = opts || {};
|
|
21
|
-
if (opts.id) {
|
|
22
|
-
const state = argsOrState;
|
|
23
|
-
resourceInputs["accountId"] = state ? state.accountId : undefined;
|
|
24
|
-
resourceInputs["resourceId"] = state ? state.resourceId : undefined;
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
const args = argsOrState;
|
|
28
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
29
|
-
throw new Error("Missing required property 'accountId'");
|
|
30
|
-
}
|
|
31
|
-
if ((!args || args.resourceId === undefined) && !opts.urn) {
|
|
32
|
-
throw new Error("Missing required property 'resourceId'");
|
|
33
|
-
}
|
|
34
|
-
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
35
|
-
resourceInputs["resourceId"] = args ? args.resourceId : undefined;
|
|
36
|
-
}
|
|
37
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
38
|
-
super(AccountGrant.__pulumiType, name, resourceInputs, opts);
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Get an existing AccountGrant resource's state with the given name, ID, and optional extra
|
|
42
|
-
* properties used to qualify the lookup.
|
|
43
|
-
*
|
|
44
|
-
* @param name The _unique_ name of the resulting resource.
|
|
45
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
-
* @param state Any extra arguments used during the lookup.
|
|
47
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
-
*/
|
|
49
|
-
static get(name, id, state, opts) {
|
|
50
|
-
return new AccountGrant(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Returns true if the given object is an instance of AccountGrant. This is designed to work even
|
|
54
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
-
*/
|
|
56
|
-
static isInstance(obj) {
|
|
57
|
-
if (obj === undefined || obj === null) {
|
|
58
|
-
return false;
|
|
59
|
-
}
|
|
60
|
-
return obj['__pulumiType'] === AccountGrant.__pulumiType;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
exports.AccountGrant = AccountGrant;
|
|
64
|
-
/** @internal */
|
|
65
|
-
AccountGrant.__pulumiType = 'sdm:index/accountGrant:AccountGrant';
|
|
66
|
-
//# sourceMappingURL=accountGrant.js.map
|
package/accountGrant.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountGrant.js","sourceRoot":"","sources":["../accountGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IA6CnD,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,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,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,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,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;;AA1BL,oCAkEC;AApDG,gBAAgB;AACO,yBAAY,GAAG,qCAAqC,CAAC"}
|
package/getAccountGrant.d.ts
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import { output as outputs } from "./types";
|
|
3
|
-
/**
|
|
4
|
-
* AccountGrants connect a resource directly to an account, giving the account the permission to connect to that resource.
|
|
5
|
-
* This data source is deprecated.
|
|
6
|
-
* ## Example Usage
|
|
7
|
-
*
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
-
* import * as sdm from "@pulumi/sdm";
|
|
11
|
-
*
|
|
12
|
-
* const accountGrantQuery = pulumi.output(sdm.getAccountGrant({
|
|
13
|
-
* accountId: "a-00000054",
|
|
14
|
-
* }));
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
export declare function getAccountGrant(args?: GetAccountGrantArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountGrantResult>;
|
|
18
|
-
/**
|
|
19
|
-
* A collection of arguments for invoking getAccountGrant.
|
|
20
|
-
*/
|
|
21
|
-
export interface GetAccountGrantArgs {
|
|
22
|
-
/**
|
|
23
|
-
* The account id of this AccountGrant.
|
|
24
|
-
*/
|
|
25
|
-
accountId?: string;
|
|
26
|
-
/**
|
|
27
|
-
* Unique identifier of the AccountGrant.
|
|
28
|
-
*/
|
|
29
|
-
id?: string;
|
|
30
|
-
/**
|
|
31
|
-
* The resource id of this AccountGrant.
|
|
32
|
-
*/
|
|
33
|
-
resourceId?: string;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* A collection of values returned by getAccountGrant.
|
|
37
|
-
*/
|
|
38
|
-
export interface GetAccountGrantResult {
|
|
39
|
-
/**
|
|
40
|
-
* A list where each element has the following attributes:
|
|
41
|
-
*/
|
|
42
|
-
readonly accountGrants: outputs.GetAccountGrantAccountGrant[];
|
|
43
|
-
/**
|
|
44
|
-
* The account id of this AccountGrant.
|
|
45
|
-
*/
|
|
46
|
-
readonly accountId?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Unique identifier of the AccountGrant.
|
|
49
|
-
*/
|
|
50
|
-
readonly id?: string;
|
|
51
|
-
/**
|
|
52
|
-
* a list of strings of ids of data sources that match the given arguments.
|
|
53
|
-
*/
|
|
54
|
-
readonly ids: string[];
|
|
55
|
-
/**
|
|
56
|
-
* The resource id of this AccountGrant.
|
|
57
|
-
*/
|
|
58
|
-
readonly resourceId?: string;
|
|
59
|
-
}
|
|
60
|
-
export declare function getAccountGrantOutput(args?: GetAccountGrantOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAccountGrantResult>;
|
|
61
|
-
/**
|
|
62
|
-
* A collection of arguments for invoking getAccountGrant.
|
|
63
|
-
*/
|
|
64
|
-
export interface GetAccountGrantOutputArgs {
|
|
65
|
-
/**
|
|
66
|
-
* The account id of this AccountGrant.
|
|
67
|
-
*/
|
|
68
|
-
accountId?: pulumi.Input<string>;
|
|
69
|
-
/**
|
|
70
|
-
* Unique identifier of the AccountGrant.
|
|
71
|
-
*/
|
|
72
|
-
id?: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The resource id of this AccountGrant.
|
|
75
|
-
*/
|
|
76
|
-
resourceId?: pulumi.Input<string>;
|
|
77
|
-
}
|
package/getAccountGrant.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
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.getAccountGrantOutput = exports.getAccountGrant = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* AccountGrants connect a resource directly to an account, giving the account the permission to connect to that resource.
|
|
10
|
-
* This data source is deprecated.
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as sdm from "@pulumi/sdm";
|
|
16
|
-
*
|
|
17
|
-
* const accountGrantQuery = pulumi.output(sdm.getAccountGrant({
|
|
18
|
-
* accountId: "a-00000054",
|
|
19
|
-
* }));
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
function getAccountGrant(args, opts) {
|
|
23
|
-
args = args || {};
|
|
24
|
-
if (!opts) {
|
|
25
|
-
opts = {};
|
|
26
|
-
}
|
|
27
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
28
|
-
return pulumi.runtime.invoke("sdm:index/getAccountGrant:getAccountGrant", {
|
|
29
|
-
"accountId": args.accountId,
|
|
30
|
-
"id": args.id,
|
|
31
|
-
"resourceId": args.resourceId,
|
|
32
|
-
}, opts);
|
|
33
|
-
}
|
|
34
|
-
exports.getAccountGrant = getAccountGrant;
|
|
35
|
-
function getAccountGrantOutput(args, opts) {
|
|
36
|
-
return pulumi.output(args).apply(a => getAccountGrant(a, opts));
|
|
37
|
-
}
|
|
38
|
-
exports.getAccountGrantOutput = getAccountGrantOutput;
|
|
39
|
-
//# sourceMappingURL=getAccountGrant.js.map
|
package/getAccountGrant.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getAccountGrant.js","sourceRoot":"","sources":["../getAccountGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC;AA8CD,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getRoleAttachment.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import { output as outputs } from "./types";
|
|
3
|
-
/**
|
|
4
|
-
* A RoleAttachment assigns a role to a composite role.
|
|
5
|
-
*
|
|
6
|
-
* Deprecated: use multi-role via AccountAttachments instead.
|
|
7
|
-
* This data source is deprecated.
|
|
8
|
-
* ## Example Usage
|
|
9
|
-
*
|
|
10
|
-
* ```typescript
|
|
11
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
-
* import * as sdm from "@pulumi/sdm";
|
|
13
|
-
*
|
|
14
|
-
* const roleAttachmentQuery = pulumi.output(sdm.getRoleAttachment({
|
|
15
|
-
* compositeRoleId: "r-233332245",
|
|
16
|
-
* }));
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
export declare function getRoleAttachment(args?: GetRoleAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetRoleAttachmentResult>;
|
|
20
|
-
/**
|
|
21
|
-
* A collection of arguments for invoking getRoleAttachment.
|
|
22
|
-
*/
|
|
23
|
-
export interface GetRoleAttachmentArgs {
|
|
24
|
-
/**
|
|
25
|
-
* The id of the attached role of this RoleAttachment.
|
|
26
|
-
*/
|
|
27
|
-
attachedRoleId?: string;
|
|
28
|
-
/**
|
|
29
|
-
* The id of the composite role of this RoleAttachment.
|
|
30
|
-
*/
|
|
31
|
-
compositeRoleId?: string;
|
|
32
|
-
/**
|
|
33
|
-
* Unique identifier of the RoleAttachment.
|
|
34
|
-
*/
|
|
35
|
-
id?: string;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* A collection of values returned by getRoleAttachment.
|
|
39
|
-
*/
|
|
40
|
-
export interface GetRoleAttachmentResult {
|
|
41
|
-
/**
|
|
42
|
-
* The id of the attached role of this RoleAttachment.
|
|
43
|
-
*/
|
|
44
|
-
readonly attachedRoleId?: string;
|
|
45
|
-
/**
|
|
46
|
-
* The id of the composite role of this RoleAttachment.
|
|
47
|
-
*/
|
|
48
|
-
readonly compositeRoleId?: string;
|
|
49
|
-
/**
|
|
50
|
-
* Unique identifier of the RoleAttachment.
|
|
51
|
-
*/
|
|
52
|
-
readonly id?: string;
|
|
53
|
-
/**
|
|
54
|
-
* a list of strings of ids of data sources that match the given arguments.
|
|
55
|
-
*/
|
|
56
|
-
readonly ids: string[];
|
|
57
|
-
/**
|
|
58
|
-
* A list where each element has the following attributes:
|
|
59
|
-
*/
|
|
60
|
-
readonly roleAttachments: outputs.GetRoleAttachmentRoleAttachment[];
|
|
61
|
-
}
|
|
62
|
-
export declare function getRoleAttachmentOutput(args?: GetRoleAttachmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRoleAttachmentResult>;
|
|
63
|
-
/**
|
|
64
|
-
* A collection of arguments for invoking getRoleAttachment.
|
|
65
|
-
*/
|
|
66
|
-
export interface GetRoleAttachmentOutputArgs {
|
|
67
|
-
/**
|
|
68
|
-
* The id of the attached role of this RoleAttachment.
|
|
69
|
-
*/
|
|
70
|
-
attachedRoleId?: pulumi.Input<string>;
|
|
71
|
-
/**
|
|
72
|
-
* The id of the composite role of this RoleAttachment.
|
|
73
|
-
*/
|
|
74
|
-
compositeRoleId?: pulumi.Input<string>;
|
|
75
|
-
/**
|
|
76
|
-
* Unique identifier of the RoleAttachment.
|
|
77
|
-
*/
|
|
78
|
-
id?: pulumi.Input<string>;
|
|
79
|
-
}
|
package/getRoleAttachment.js
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
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.getRoleAttachmentOutput = exports.getRoleAttachment = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* A RoleAttachment assigns a role to a composite role.
|
|
10
|
-
*
|
|
11
|
-
* Deprecated: use multi-role via AccountAttachments instead.
|
|
12
|
-
* This data source is deprecated.
|
|
13
|
-
* ## Example Usage
|
|
14
|
-
*
|
|
15
|
-
* ```typescript
|
|
16
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
-
* import * as sdm from "@pulumi/sdm";
|
|
18
|
-
*
|
|
19
|
-
* const roleAttachmentQuery = pulumi.output(sdm.getRoleAttachment({
|
|
20
|
-
* compositeRoleId: "r-233332245",
|
|
21
|
-
* }));
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
function getRoleAttachment(args, opts) {
|
|
25
|
-
args = args || {};
|
|
26
|
-
if (!opts) {
|
|
27
|
-
opts = {};
|
|
28
|
-
}
|
|
29
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
30
|
-
return pulumi.runtime.invoke("sdm:index/getRoleAttachment:getRoleAttachment", {
|
|
31
|
-
"attachedRoleId": args.attachedRoleId,
|
|
32
|
-
"compositeRoleId": args.compositeRoleId,
|
|
33
|
-
"id": args.id,
|
|
34
|
-
}, opts);
|
|
35
|
-
}
|
|
36
|
-
exports.getRoleAttachment = getRoleAttachment;
|
|
37
|
-
function getRoleAttachmentOutput(args, opts) {
|
|
38
|
-
return pulumi.output(args).apply(a => getRoleAttachment(a, opts));
|
|
39
|
-
}
|
|
40
|
-
exports.getRoleAttachmentOutput = getRoleAttachmentOutput;
|
|
41
|
-
//# sourceMappingURL=getRoleAttachment.js.map
|
package/getRoleAttachment.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getRoleAttachment.js","sourceRoot":"","sources":["../getRoleAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8CAYC;AA8CD,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,0DAEC"}
|
package/getRoleGrant.d.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import { output as outputs } from "./types";
|
|
3
|
-
/**
|
|
4
|
-
* A RoleGrant connects a resource to a role, granting members of the role access to that resource.
|
|
5
|
-
*
|
|
6
|
-
* Deprecated: use Role access rules instead.
|
|
7
|
-
* This data source is deprecated.
|
|
8
|
-
* ## Example Usage
|
|
9
|
-
*
|
|
10
|
-
* ```typescript
|
|
11
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
-
* import * as sdm from "@pulumi/sdm";
|
|
13
|
-
*
|
|
14
|
-
* const roleGrantQuery = pulumi.output(sdm.getRoleGrant({
|
|
15
|
-
* roleId: "r-0009994",
|
|
16
|
-
* }));
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
export declare function getRoleGrant(args?: GetRoleGrantArgs, opts?: pulumi.InvokeOptions): Promise<GetRoleGrantResult>;
|
|
20
|
-
/**
|
|
21
|
-
* A collection of arguments for invoking getRoleGrant.
|
|
22
|
-
*/
|
|
23
|
-
export interface GetRoleGrantArgs {
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier of the RoleGrant.
|
|
26
|
-
*/
|
|
27
|
-
id?: string;
|
|
28
|
-
/**
|
|
29
|
-
* The id of the resource of this RoleGrant.
|
|
30
|
-
*/
|
|
31
|
-
resourceId?: string;
|
|
32
|
-
/**
|
|
33
|
-
* The id of the attached role of this RoleGrant.
|
|
34
|
-
*/
|
|
35
|
-
roleId?: string;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* A collection of values returned by getRoleGrant.
|
|
39
|
-
*/
|
|
40
|
-
export interface GetRoleGrantResult {
|
|
41
|
-
/**
|
|
42
|
-
* Unique identifier of the RoleGrant.
|
|
43
|
-
*/
|
|
44
|
-
readonly id?: string;
|
|
45
|
-
/**
|
|
46
|
-
* a list of strings of ids of data sources that match the given arguments.
|
|
47
|
-
*/
|
|
48
|
-
readonly ids: string[];
|
|
49
|
-
/**
|
|
50
|
-
* The id of the resource of this RoleGrant.
|
|
51
|
-
*/
|
|
52
|
-
readonly resourceId?: string;
|
|
53
|
-
/**
|
|
54
|
-
* A list where each element has the following attributes:
|
|
55
|
-
*/
|
|
56
|
-
readonly roleGrants: outputs.GetRoleGrantRoleGrant[];
|
|
57
|
-
/**
|
|
58
|
-
* The id of the attached role of this RoleGrant.
|
|
59
|
-
*/
|
|
60
|
-
readonly roleId?: string;
|
|
61
|
-
}
|
|
62
|
-
export declare function getRoleGrantOutput(args?: GetRoleGrantOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRoleGrantResult>;
|
|
63
|
-
/**
|
|
64
|
-
* A collection of arguments for invoking getRoleGrant.
|
|
65
|
-
*/
|
|
66
|
-
export interface GetRoleGrantOutputArgs {
|
|
67
|
-
/**
|
|
68
|
-
* Unique identifier of the RoleGrant.
|
|
69
|
-
*/
|
|
70
|
-
id?: pulumi.Input<string>;
|
|
71
|
-
/**
|
|
72
|
-
* The id of the resource of this RoleGrant.
|
|
73
|
-
*/
|
|
74
|
-
resourceId?: pulumi.Input<string>;
|
|
75
|
-
/**
|
|
76
|
-
* The id of the attached role of this RoleGrant.
|
|
77
|
-
*/
|
|
78
|
-
roleId?: pulumi.Input<string>;
|
|
79
|
-
}
|
package/getRoleGrant.js
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
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.getRoleGrantOutput = exports.getRoleGrant = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* A RoleGrant connects a resource to a role, granting members of the role access to that resource.
|
|
10
|
-
*
|
|
11
|
-
* Deprecated: use Role access rules instead.
|
|
12
|
-
* This data source is deprecated.
|
|
13
|
-
* ## Example Usage
|
|
14
|
-
*
|
|
15
|
-
* ```typescript
|
|
16
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
-
* import * as sdm from "@pulumi/sdm";
|
|
18
|
-
*
|
|
19
|
-
* const roleGrantQuery = pulumi.output(sdm.getRoleGrant({
|
|
20
|
-
* roleId: "r-0009994",
|
|
21
|
-
* }));
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
function getRoleGrant(args, opts) {
|
|
25
|
-
args = args || {};
|
|
26
|
-
if (!opts) {
|
|
27
|
-
opts = {};
|
|
28
|
-
}
|
|
29
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
30
|
-
return pulumi.runtime.invoke("sdm:index/getRoleGrant:getRoleGrant", {
|
|
31
|
-
"id": args.id,
|
|
32
|
-
"resourceId": args.resourceId,
|
|
33
|
-
"roleId": args.roleId,
|
|
34
|
-
}, opts);
|
|
35
|
-
}
|
|
36
|
-
exports.getRoleGrant = getRoleGrant;
|
|
37
|
-
function getRoleGrantOutput(args, opts) {
|
|
38
|
-
return pulumi.output(args).apply(a => getRoleGrant(a, opts));
|
|
39
|
-
}
|
|
40
|
-
exports.getRoleGrantOutput = getRoleGrantOutput;
|
|
41
|
-
//# sourceMappingURL=getRoleGrant.js.map
|
package/getRoleGrant.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getRoleGrant.js","sourceRoot":"","sources":["../getRoleGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oCAYC;AA8CD,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChE,CAAC;AAFD,gDAEC"}
|
package/roleAttachment.d.ts
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
/**
|
|
3
|
-
* ## Import
|
|
4
|
-
*
|
|
5
|
-
* RoleAttachment can be imported using the id, e.g.,
|
|
6
|
-
*
|
|
7
|
-
* ```sh
|
|
8
|
-
* $ pulumi import sdm:index/roleAttachment:RoleAttachment example ra-12345678
|
|
9
|
-
* ```
|
|
10
|
-
*/
|
|
11
|
-
export declare class RoleAttachment extends pulumi.CustomResource {
|
|
12
|
-
/**
|
|
13
|
-
* Get an existing RoleAttachment resource's state with the given name, ID, and optional extra
|
|
14
|
-
* properties used to qualify the lookup.
|
|
15
|
-
*
|
|
16
|
-
* @param name The _unique_ name of the resulting resource.
|
|
17
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
-
* @param state Any extra arguments used during the lookup.
|
|
19
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
-
*/
|
|
21
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: RoleAttachmentState, opts?: pulumi.CustomResourceOptions): RoleAttachment;
|
|
22
|
-
/**
|
|
23
|
-
* Returns true if the given object is an instance of RoleAttachment. This is designed to work even
|
|
24
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
25
|
-
*/
|
|
26
|
-
static isInstance(obj: any): obj is RoleAttachment;
|
|
27
|
-
/**
|
|
28
|
-
* The id of the attached role of this RoleAttachment.
|
|
29
|
-
*/
|
|
30
|
-
readonly attachedRoleId: pulumi.Output<string>;
|
|
31
|
-
/**
|
|
32
|
-
* The id of the composite role of this RoleAttachment.
|
|
33
|
-
*/
|
|
34
|
-
readonly compositeRoleId: pulumi.Output<string>;
|
|
35
|
-
/**
|
|
36
|
-
* Create a RoleAttachment resource with the given unique name, arguments, and options.
|
|
37
|
-
*
|
|
38
|
-
* @param name The _unique_ name of the resource.
|
|
39
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
40
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
41
|
-
*/
|
|
42
|
-
constructor(name: string, args: RoleAttachmentArgs, opts?: pulumi.CustomResourceOptions);
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* Input properties used for looking up and filtering RoleAttachment resources.
|
|
46
|
-
*/
|
|
47
|
-
export interface RoleAttachmentState {
|
|
48
|
-
/**
|
|
49
|
-
* The id of the attached role of this RoleAttachment.
|
|
50
|
-
*/
|
|
51
|
-
attachedRoleId?: pulumi.Input<string>;
|
|
52
|
-
/**
|
|
53
|
-
* The id of the composite role of this RoleAttachment.
|
|
54
|
-
*/
|
|
55
|
-
compositeRoleId?: pulumi.Input<string>;
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* The set of arguments for constructing a RoleAttachment resource.
|
|
59
|
-
*/
|
|
60
|
-
export interface RoleAttachmentArgs {
|
|
61
|
-
/**
|
|
62
|
-
* The id of the attached role of this RoleAttachment.
|
|
63
|
-
*/
|
|
64
|
-
attachedRoleId: pulumi.Input<string>;
|
|
65
|
-
/**
|
|
66
|
-
* The id of the composite role of this RoleAttachment.
|
|
67
|
-
*/
|
|
68
|
-
compositeRoleId: pulumi.Input<string>;
|
|
69
|
-
}
|
package/roleAttachment.js
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
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.RoleAttachment = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* ## Import
|
|
10
|
-
*
|
|
11
|
-
* RoleAttachment can be imported using the id, e.g.,
|
|
12
|
-
*
|
|
13
|
-
* ```sh
|
|
14
|
-
* $ pulumi import sdm:index/roleAttachment:RoleAttachment example ra-12345678
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
class RoleAttachment extends pulumi.CustomResource {
|
|
18
|
-
constructor(name, argsOrState, opts) {
|
|
19
|
-
let resourceInputs = {};
|
|
20
|
-
opts = opts || {};
|
|
21
|
-
if (opts.id) {
|
|
22
|
-
const state = argsOrState;
|
|
23
|
-
resourceInputs["attachedRoleId"] = state ? state.attachedRoleId : undefined;
|
|
24
|
-
resourceInputs["compositeRoleId"] = state ? state.compositeRoleId : undefined;
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
const args = argsOrState;
|
|
28
|
-
if ((!args || args.attachedRoleId === undefined) && !opts.urn) {
|
|
29
|
-
throw new Error("Missing required property 'attachedRoleId'");
|
|
30
|
-
}
|
|
31
|
-
if ((!args || args.compositeRoleId === undefined) && !opts.urn) {
|
|
32
|
-
throw new Error("Missing required property 'compositeRoleId'");
|
|
33
|
-
}
|
|
34
|
-
resourceInputs["attachedRoleId"] = args ? args.attachedRoleId : undefined;
|
|
35
|
-
resourceInputs["compositeRoleId"] = args ? args.compositeRoleId : undefined;
|
|
36
|
-
}
|
|
37
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
38
|
-
super(RoleAttachment.__pulumiType, name, resourceInputs, opts);
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Get an existing RoleAttachment resource's state with the given name, ID, and optional extra
|
|
42
|
-
* properties used to qualify the lookup.
|
|
43
|
-
*
|
|
44
|
-
* @param name The _unique_ name of the resulting resource.
|
|
45
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
-
* @param state Any extra arguments used during the lookup.
|
|
47
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
-
*/
|
|
49
|
-
static get(name, id, state, opts) {
|
|
50
|
-
return new RoleAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Returns true if the given object is an instance of RoleAttachment. This is designed to work even
|
|
54
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
-
*/
|
|
56
|
-
static isInstance(obj) {
|
|
57
|
-
if (obj === undefined || obj === null) {
|
|
58
|
-
return false;
|
|
59
|
-
}
|
|
60
|
-
return obj['__pulumiType'] === RoleAttachment.__pulumiType;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
exports.RoleAttachment = RoleAttachment;
|
|
64
|
-
/** @internal */
|
|
65
|
-
RoleAttachment.__pulumiType = 'sdm:index/roleAttachment:RoleAttachment';
|
|
66
|
-
//# sourceMappingURL=roleAttachment.js.map
|
package/roleAttachment.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"roleAttachment.js","sourceRoot":"","sources":["../roleAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IA6CrD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5D,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;;AA1BL,wCAkEC;AApDG,gBAAgB;AACO,2BAAY,GAAG,yCAAyC,CAAC"}
|