@pulumi/snowflake 0.5.2 → 0.6.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/accountGrant.d.ts +15 -0
- package/accountGrant.js +2 -0
- package/accountGrant.js.map +1 -1
- package/databaseGrant.d.ts +15 -0
- package/databaseGrant.js +2 -0
- package/databaseGrant.js.map +1 -1
- package/externalTableGrant.d.ts +15 -0
- package/externalTableGrant.js +2 -0
- package/externalTableGrant.js.map +1 -1
- package/fileFormatGrant.d.ts +15 -0
- package/fileFormatGrant.js +2 -0
- package/fileFormatGrant.js.map +1 -1
- package/functionGrant.d.ts +15 -0
- package/functionGrant.js +2 -0
- package/functionGrant.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/integrationGrant.d.ts +15 -0
- package/integrationGrant.js +2 -0
- package/integrationGrant.js.map +1 -1
- package/maskingPolicyGrant.d.ts +15 -0
- package/maskingPolicyGrant.js +2 -0
- package/maskingPolicyGrant.js.map +1 -1
- package/materializedViewGrant.d.ts +15 -0
- package/materializedViewGrant.js +2 -0
- package/materializedViewGrant.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/pipeGrant.d.ts +15 -0
- package/pipeGrant.js +2 -0
- package/pipeGrant.js.map +1 -1
- package/procedureGrant.d.ts +15 -0
- package/procedureGrant.js +2 -0
- package/procedureGrant.js.map +1 -1
- package/resourceMonitorGrant.d.ts +15 -0
- package/resourceMonitorGrant.js +2 -0
- package/resourceMonitorGrant.js.map +1 -1
- package/roleGrants.d.ts +15 -0
- package/roleGrants.js +2 -0
- package/roleGrants.js.map +1 -1
- package/roleOwnershipGrant.d.ts +72 -0
- package/roleOwnershipGrant.js +59 -0
- package/roleOwnershipGrant.js.map +1 -0
- package/rowAccessPolicyGrant.d.ts +15 -0
- package/rowAccessPolicyGrant.js +2 -0
- package/rowAccessPolicyGrant.js.map +1 -1
- package/schemaGrant.d.ts +15 -0
- package/schemaGrant.js +2 -0
- package/schemaGrant.js.map +1 -1
- package/sequenceGrant.d.ts +15 -0
- package/sequenceGrant.js +2 -0
- package/sequenceGrant.js.map +1 -1
- package/stageGrant.d.ts +15 -0
- package/stageGrant.js +2 -0
- package/stageGrant.js.map +1 -1
- package/streamGrant.d.ts +15 -0
- package/streamGrant.js +2 -0
- package/streamGrant.js.map +1 -1
- package/tableGrant.d.ts +15 -0
- package/tableGrant.js +2 -0
- package/tableGrant.js.map +1 -1
- package/taskGrant.d.ts +15 -0
- package/taskGrant.js +2 -0
- package/taskGrant.js.map +1 -1
- package/viewGrant.d.ts +15 -0
- package/viewGrant.js +2 -0
- package/viewGrant.js.map +1 -1
- package/warehouseGrant.d.ts +15 -0
- package/warehouseGrant.js +2 -0
- package/warehouseGrant.js.map +1 -1
package/sequenceGrant.d.ts
CHANGED
|
@@ -48,6 +48,11 @@ export declare class SequenceGrant extends pulumi.CustomResource {
|
|
|
48
48
|
* The name of the database containing the current or future sequences on which to grant privileges.
|
|
49
49
|
*/
|
|
50
50
|
readonly databaseName: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
53
|
+
* grants applied to roles and objects outside Terraform.
|
|
54
|
+
*/
|
|
55
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
51
56
|
/**
|
|
52
57
|
* When this is set to true and a schema*name is provided, apply this grant on all future sequences in the given schema. When this is true and no schema*name is provided apply this grant on all future sequences in the given database. The sequence*name field must be unset in order to use on*future.
|
|
53
58
|
*/
|
|
@@ -89,6 +94,11 @@ export interface SequenceGrantState {
|
|
|
89
94
|
* The name of the database containing the current or future sequences on which to grant privileges.
|
|
90
95
|
*/
|
|
91
96
|
databaseName?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
99
|
+
* grants applied to roles and objects outside Terraform.
|
|
100
|
+
*/
|
|
101
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
92
102
|
/**
|
|
93
103
|
* When this is set to true and a schema*name is provided, apply this grant on all future sequences in the given schema. When this is true and no schema*name is provided apply this grant on all future sequences in the given database. The sequence*name field must be unset in order to use on*future.
|
|
94
104
|
*/
|
|
@@ -122,6 +132,11 @@ export interface SequenceGrantArgs {
|
|
|
122
132
|
* The name of the database containing the current or future sequences on which to grant privileges.
|
|
123
133
|
*/
|
|
124
134
|
databaseName: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
137
|
+
* grants applied to roles and objects outside Terraform.
|
|
138
|
+
*/
|
|
139
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
125
140
|
/**
|
|
126
141
|
* When this is set to true and a schema*name is provided, apply this grant on all future sequences in the given schema. When this is true and no schema*name is provided apply this grant on all future sequences in the given database. The sequence*name field must be unset in order to use on*future.
|
|
127
142
|
*/
|
package/sequenceGrant.js
CHANGED
|
@@ -41,6 +41,7 @@ class SequenceGrant extends pulumi.CustomResource {
|
|
|
41
41
|
if (opts.id) {
|
|
42
42
|
const state = argsOrState;
|
|
43
43
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
44
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
44
45
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
45
46
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
46
47
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -57,6 +58,7 @@ class SequenceGrant extends pulumi.CustomResource {
|
|
|
57
58
|
throw new Error("Missing required property 'schemaName'");
|
|
58
59
|
}
|
|
59
60
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
61
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
60
62
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
61
63
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
62
64
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/sequenceGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sequenceGrant.js","sourceRoot":"","sources":["../sequenceGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"sequenceGrant.js","sourceRoot":"","sources":["../sequenceGrant.ts"],"names":[],"mappings":"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"}
|
package/stageGrant.d.ts
CHANGED
|
@@ -52,6 +52,11 @@ export declare class StageGrant extends pulumi.CustomResource {
|
|
|
52
52
|
* The name of the database containing the current stage on which to grant privileges.
|
|
53
53
|
*/
|
|
54
54
|
readonly databaseName: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
57
|
+
* grants applied to roles and objects outside Terraform.
|
|
58
|
+
*/
|
|
59
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
55
60
|
/**
|
|
56
61
|
* When this is set to true and a schema*name is provided, apply this grant on all future stages in the given schema. When this is true and no schema*name is provided apply this grant on all future stages in the given database. The stage*name field must be unset in order to use on*future.
|
|
57
62
|
*/
|
|
@@ -93,6 +98,11 @@ export interface StageGrantState {
|
|
|
93
98
|
* The name of the database containing the current stage on which to grant privileges.
|
|
94
99
|
*/
|
|
95
100
|
databaseName?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
103
|
+
* grants applied to roles and objects outside Terraform.
|
|
104
|
+
*/
|
|
105
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
96
106
|
/**
|
|
97
107
|
* When this is set to true and a schema*name is provided, apply this grant on all future stages in the given schema. When this is true and no schema*name is provided apply this grant on all future stages in the given database. The stage*name field must be unset in order to use on*future.
|
|
98
108
|
*/
|
|
@@ -126,6 +136,11 @@ export interface StageGrantArgs {
|
|
|
126
136
|
* The name of the database containing the current stage on which to grant privileges.
|
|
127
137
|
*/
|
|
128
138
|
databaseName: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
141
|
+
* grants applied to roles and objects outside Terraform.
|
|
142
|
+
*/
|
|
143
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
129
144
|
/**
|
|
130
145
|
* When this is set to true and a schema*name is provided, apply this grant on all future stages in the given schema. When this is true and no schema*name is provided apply this grant on all future stages in the given database. The stage*name field must be unset in order to use on*future.
|
|
131
146
|
*/
|
package/stageGrant.js
CHANGED
|
@@ -45,6 +45,7 @@ class StageGrant extends pulumi.CustomResource {
|
|
|
45
45
|
if (opts.id) {
|
|
46
46
|
const state = argsOrState;
|
|
47
47
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
48
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
48
49
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
49
50
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
50
51
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -61,6 +62,7 @@ class StageGrant extends pulumi.CustomResource {
|
|
|
61
62
|
throw new Error("Missing required property 'schemaName'");
|
|
62
63
|
}
|
|
63
64
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
65
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
64
66
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
65
67
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
66
68
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/stageGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stageGrant.js","sourceRoot":"","sources":["../stageGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"stageGrant.js","sourceRoot":"","sources":["../stageGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAsEjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;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,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,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,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IArGD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCAuGC;AAzFG,gBAAgB;AACO,uBAAY,GAAG,uCAAuC,CAAC"}
|
package/streamGrant.d.ts
CHANGED
|
@@ -48,6 +48,11 @@ export declare class StreamGrant extends pulumi.CustomResource {
|
|
|
48
48
|
* The name of the database containing the current or future streams on which to grant privileges.
|
|
49
49
|
*/
|
|
50
50
|
readonly databaseName: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
53
|
+
* grants applied to roles and objects outside Terraform.
|
|
54
|
+
*/
|
|
55
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
51
56
|
/**
|
|
52
57
|
* When this is set to true and a schema*name is provided, apply this grant on all future streams in the given schema. When this is true and no schema*name is provided apply this grant on all future streams in the given database. The stream*name field must be unset in order to use on*future.
|
|
53
58
|
*/
|
|
@@ -89,6 +94,11 @@ export interface StreamGrantState {
|
|
|
89
94
|
* The name of the database containing the current or future streams on which to grant privileges.
|
|
90
95
|
*/
|
|
91
96
|
databaseName?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
99
|
+
* grants applied to roles and objects outside Terraform.
|
|
100
|
+
*/
|
|
101
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
92
102
|
/**
|
|
93
103
|
* When this is set to true and a schema*name is provided, apply this grant on all future streams in the given schema. When this is true and no schema*name is provided apply this grant on all future streams in the given database. The stream*name field must be unset in order to use on*future.
|
|
94
104
|
*/
|
|
@@ -122,6 +132,11 @@ export interface StreamGrantArgs {
|
|
|
122
132
|
* The name of the database containing the current or future streams on which to grant privileges.
|
|
123
133
|
*/
|
|
124
134
|
databaseName: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
137
|
+
* grants applied to roles and objects outside Terraform.
|
|
138
|
+
*/
|
|
139
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
125
140
|
/**
|
|
126
141
|
* When this is set to true and a schema*name is provided, apply this grant on all future streams in the given schema. When this is true and no schema*name is provided apply this grant on all future streams in the given database. The stream*name field must be unset in order to use on*future.
|
|
127
142
|
*/
|
package/streamGrant.js
CHANGED
|
@@ -41,6 +41,7 @@ class StreamGrant extends pulumi.CustomResource {
|
|
|
41
41
|
if (opts.id) {
|
|
42
42
|
const state = argsOrState;
|
|
43
43
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
44
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
44
45
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
45
46
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
46
47
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -57,6 +58,7 @@ class StreamGrant extends pulumi.CustomResource {
|
|
|
57
58
|
throw new Error("Missing required property 'schemaName'");
|
|
58
59
|
}
|
|
59
60
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
61
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
60
62
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
61
63
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
62
64
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/streamGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"streamGrant.js","sourceRoot":"","sources":["../streamGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"streamGrant.js","sourceRoot":"","sources":["../streamGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAsElD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;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,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IArGD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCAuGC;AAzFG,gBAAgB;AACO,wBAAY,GAAG,yCAAyC,CAAC"}
|
package/tableGrant.d.ts
CHANGED
|
@@ -46,6 +46,11 @@ export declare class TableGrant extends pulumi.CustomResource {
|
|
|
46
46
|
* The name of the database containing the current or future tables on which to grant privileges.
|
|
47
47
|
*/
|
|
48
48
|
readonly databaseName: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
51
|
+
* grants applied to roles and objects outside Terraform.
|
|
52
|
+
*/
|
|
53
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
49
54
|
/**
|
|
50
55
|
* When this is set to true and a schema*name is provided, apply this grant on all future tables in the given schema. When this is true and no schema*name is provided apply this grant on all future tables in the given database. The table*name and shares fields must be unset in order to use on*future.
|
|
51
56
|
*/
|
|
@@ -91,6 +96,11 @@ export interface TableGrantState {
|
|
|
91
96
|
* The name of the database containing the current or future tables on which to grant privileges.
|
|
92
97
|
*/
|
|
93
98
|
databaseName?: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
101
|
+
* grants applied to roles and objects outside Terraform.
|
|
102
|
+
*/
|
|
103
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
94
104
|
/**
|
|
95
105
|
* When this is set to true and a schema*name is provided, apply this grant on all future tables in the given schema. When this is true and no schema*name is provided apply this grant on all future tables in the given database. The table*name and shares fields must be unset in order to use on*future.
|
|
96
106
|
*/
|
|
@@ -128,6 +138,11 @@ export interface TableGrantArgs {
|
|
|
128
138
|
* The name of the database containing the current or future tables on which to grant privileges.
|
|
129
139
|
*/
|
|
130
140
|
databaseName: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
143
|
+
* grants applied to roles and objects outside Terraform.
|
|
144
|
+
*/
|
|
145
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
131
146
|
/**
|
|
132
147
|
* When this is set to true and a schema*name is provided, apply this grant on all future tables in the given schema. When this is true and no schema*name is provided apply this grant on all future tables in the given database. The table*name and shares fields must be unset in order to use on*future.
|
|
133
148
|
*/
|
package/tableGrant.js
CHANGED
|
@@ -39,6 +39,7 @@ class TableGrant extends pulumi.CustomResource {
|
|
|
39
39
|
if (opts.id) {
|
|
40
40
|
const state = argsOrState;
|
|
41
41
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
42
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
42
43
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
43
44
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
44
45
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -53,6 +54,7 @@ class TableGrant extends pulumi.CustomResource {
|
|
|
53
54
|
throw new Error("Missing required property 'databaseName'");
|
|
54
55
|
}
|
|
55
56
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
57
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
56
58
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
57
59
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
58
60
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/tableGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tableGrant.js","sourceRoot":"","sources":["../tableGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"tableGrant.js","sourceRoot":"","sources":["../tableGrant.ts"],"names":[],"mappings":"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"}
|
package/taskGrant.d.ts
CHANGED
|
@@ -48,6 +48,11 @@ export declare class TaskGrant extends pulumi.CustomResource {
|
|
|
48
48
|
* The name of the database containing the current or future tasks on which to grant privileges.
|
|
49
49
|
*/
|
|
50
50
|
readonly databaseName: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
53
|
+
* grants applied to roles and objects outside Terraform.
|
|
54
|
+
*/
|
|
55
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
51
56
|
/**
|
|
52
57
|
* When this is set to true and a schema*name is provided, apply this grant on all future tasks in the given schema. When this is true and no schema*name is provided apply this grant on all future tasks in the given database. The task*name field must be unset in order to use on*future.
|
|
53
58
|
*/
|
|
@@ -89,6 +94,11 @@ export interface TaskGrantState {
|
|
|
89
94
|
* The name of the database containing the current or future tasks on which to grant privileges.
|
|
90
95
|
*/
|
|
91
96
|
databaseName?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
99
|
+
* grants applied to roles and objects outside Terraform.
|
|
100
|
+
*/
|
|
101
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
92
102
|
/**
|
|
93
103
|
* When this is set to true and a schema*name is provided, apply this grant on all future tasks in the given schema. When this is true and no schema*name is provided apply this grant on all future tasks in the given database. The task*name field must be unset in order to use on*future.
|
|
94
104
|
*/
|
|
@@ -122,6 +132,11 @@ export interface TaskGrantArgs {
|
|
|
122
132
|
* The name of the database containing the current or future tasks on which to grant privileges.
|
|
123
133
|
*/
|
|
124
134
|
databaseName: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
137
|
+
* grants applied to roles and objects outside Terraform.
|
|
138
|
+
*/
|
|
139
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
125
140
|
/**
|
|
126
141
|
* When this is set to true and a schema*name is provided, apply this grant on all future tasks in the given schema. When this is true and no schema*name is provided apply this grant on all future tasks in the given database. The task*name field must be unset in order to use on*future.
|
|
127
142
|
*/
|
package/taskGrant.js
CHANGED
|
@@ -41,6 +41,7 @@ class TaskGrant extends pulumi.CustomResource {
|
|
|
41
41
|
if (opts.id) {
|
|
42
42
|
const state = argsOrState;
|
|
43
43
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
44
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
44
45
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
45
46
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
46
47
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -57,6 +58,7 @@ class TaskGrant extends pulumi.CustomResource {
|
|
|
57
58
|
throw new Error("Missing required property 'schemaName'");
|
|
58
59
|
}
|
|
59
60
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
61
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
60
62
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
61
63
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
62
64
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/taskGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taskGrant.js","sourceRoot":"","sources":["../taskGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"taskGrant.js","sourceRoot":"","sources":["../taskGrant.ts"],"names":[],"mappings":"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"}
|
package/viewGrant.d.ts
CHANGED
|
@@ -52,6 +52,11 @@ export declare class ViewGrant extends pulumi.CustomResource {
|
|
|
52
52
|
* The name of the database containing the current or future views on which to grant privileges.
|
|
53
53
|
*/
|
|
54
54
|
readonly databaseName: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
57
|
+
* grants applied to roles and objects outside Terraform.
|
|
58
|
+
*/
|
|
59
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
55
60
|
/**
|
|
56
61
|
* When this is set to true and a schema*name is provided, apply this grant on all future views in the given schema. When this is true and no schema*name is provided apply this grant on all future views in the given database. The view*name and shares fields must be unset in order to use on*future.
|
|
57
62
|
*/
|
|
@@ -97,6 +102,11 @@ export interface ViewGrantState {
|
|
|
97
102
|
* The name of the database containing the current or future views on which to grant privileges.
|
|
98
103
|
*/
|
|
99
104
|
databaseName?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
107
|
+
* grants applied to roles and objects outside Terraform.
|
|
108
|
+
*/
|
|
109
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
100
110
|
/**
|
|
101
111
|
* When this is set to true and a schema*name is provided, apply this grant on all future views in the given schema. When this is true and no schema*name is provided apply this grant on all future views in the given database. The view*name and shares fields must be unset in order to use on*future.
|
|
102
112
|
*/
|
|
@@ -134,6 +144,11 @@ export interface ViewGrantArgs {
|
|
|
134
144
|
* The name of the database containing the current or future views on which to grant privileges.
|
|
135
145
|
*/
|
|
136
146
|
databaseName: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
149
|
+
* grants applied to roles and objects outside Terraform.
|
|
150
|
+
*/
|
|
151
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
137
152
|
/**
|
|
138
153
|
* When this is set to true and a schema*name is provided, apply this grant on all future views in the given schema. When this is true and no schema*name is provided apply this grant on all future views in the given database. The view*name and shares fields must be unset in order to use on*future.
|
|
139
154
|
*/
|
package/viewGrant.js
CHANGED
|
@@ -45,6 +45,7 @@ class ViewGrant extends pulumi.CustomResource {
|
|
|
45
45
|
if (opts.id) {
|
|
46
46
|
const state = argsOrState;
|
|
47
47
|
resourceInputs["databaseName"] = state ? state.databaseName : undefined;
|
|
48
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
48
49
|
resourceInputs["onFuture"] = state ? state.onFuture : undefined;
|
|
49
50
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
50
51
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
@@ -59,6 +60,7 @@ class ViewGrant extends pulumi.CustomResource {
|
|
|
59
60
|
throw new Error("Missing required property 'databaseName'");
|
|
60
61
|
}
|
|
61
62
|
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
63
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
62
64
|
resourceInputs["onFuture"] = args ? args.onFuture : undefined;
|
|
63
65
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
64
66
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
package/viewGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"viewGrant.js","sourceRoot":"","sources":["../viewGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"viewGrant.js","sourceRoot":"","sources":["../viewGrant.ts"],"names":[],"mappings":"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"}
|
package/warehouseGrant.d.ts
CHANGED
|
@@ -38,6 +38,11 @@ export declare class WarehouseGrant extends pulumi.CustomResource {
|
|
|
38
38
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
39
39
|
*/
|
|
40
40
|
static isInstance(obj: any): obj is WarehouseGrant;
|
|
41
|
+
/**
|
|
42
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
43
|
+
* grants applied to roles and objects outside Terraform.
|
|
44
|
+
*/
|
|
45
|
+
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
41
46
|
/**
|
|
42
47
|
* The privilege to grant on the warehouse.
|
|
43
48
|
*/
|
|
@@ -67,6 +72,11 @@ export declare class WarehouseGrant extends pulumi.CustomResource {
|
|
|
67
72
|
* Input properties used for looking up and filtering WarehouseGrant resources.
|
|
68
73
|
*/
|
|
69
74
|
export interface WarehouseGrantState {
|
|
75
|
+
/**
|
|
76
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
77
|
+
* grants applied to roles and objects outside Terraform.
|
|
78
|
+
*/
|
|
79
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
70
80
|
/**
|
|
71
81
|
* The privilege to grant on the warehouse.
|
|
72
82
|
*/
|
|
@@ -88,6 +98,11 @@ export interface WarehouseGrantState {
|
|
|
88
98
|
* The set of arguments for constructing a WarehouseGrant resource.
|
|
89
99
|
*/
|
|
90
100
|
export interface WarehouseGrantArgs {
|
|
101
|
+
/**
|
|
102
|
+
* When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
|
|
103
|
+
* grants applied to roles and objects outside Terraform.
|
|
104
|
+
*/
|
|
105
|
+
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
91
106
|
/**
|
|
92
107
|
* The privilege to grant on the warehouse.
|
|
93
108
|
*/
|
package/warehouseGrant.js
CHANGED
|
@@ -34,6 +34,7 @@ class WarehouseGrant extends pulumi.CustomResource {
|
|
|
34
34
|
opts = opts || {};
|
|
35
35
|
if (opts.id) {
|
|
36
36
|
const state = argsOrState;
|
|
37
|
+
resourceInputs["enableMultipleGrants"] = state ? state.enableMultipleGrants : undefined;
|
|
37
38
|
resourceInputs["privilege"] = state ? state.privilege : undefined;
|
|
38
39
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
39
40
|
resourceInputs["warehouseName"] = state ? state.warehouseName : undefined;
|
|
@@ -44,6 +45,7 @@ class WarehouseGrant extends pulumi.CustomResource {
|
|
|
44
45
|
if ((!args || args.warehouseName === undefined) && !opts.urn) {
|
|
45
46
|
throw new Error("Missing required property 'warehouseName'");
|
|
46
47
|
}
|
|
48
|
+
resourceInputs["enableMultipleGrants"] = args ? args.enableMultipleGrants : undefined;
|
|
47
49
|
resourceInputs["privilege"] = args ? args.privilege : undefined;
|
|
48
50
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
|
49
51
|
resourceInputs["warehouseName"] = args ? args.warehouseName : undefined;
|
package/warehouseGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"warehouseGrant.js","sourceRoot":"","sources":["../warehouseGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"warehouseGrant.js","sourceRoot":"","sources":["../warehouseGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IA0DrD,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,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,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,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,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;IAhFD;;;;;;;;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,wCAkFC;AApEG,gBAAgB;AACO,2BAAY,GAAG,+CAA+C,CAAC"}
|