@pulumi/snowflake 0.24.1-alpha.1683787713 → 0.25.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/config/vars.d.ts +8 -2
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/database.d.ts +1 -1
- package/database.js +1 -1
- package/emailNotificationIntegration.d.ts +86 -0
- package/emailNotificationIntegration.js +81 -0
- package/emailNotificationIntegration.js.map +1 -0
- package/externalFunction.d.ts +24 -0
- package/externalFunction.js +4 -0
- package/externalFunction.js.map +1 -1
- package/externalTableGrant.d.ts +15 -3
- package/externalTableGrant.js +2 -0
- package/externalTableGrant.js.map +1 -1
- package/fileFormatGrant.d.ts +15 -3
- package/fileFormatGrant.js +2 -0
- package/fileFormatGrant.js.map +1 -1
- package/functionGrant.d.ts +15 -3
- package/functionGrant.js +2 -0
- package/functionGrant.js.map +1 -1
- package/getDatabaseRoles.d.ts +39 -0
- package/getDatabaseRoles.js +20 -0
- package/getDatabaseRoles.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +11 -3
- package/index.js.map +1 -1
- package/maskingPolicy.d.ts +62 -10
- package/maskingPolicy.js +28 -8
- package/maskingPolicy.js.map +1 -1
- package/materializedViewGrant.d.ts +3 -3
- package/networkPolicyAttachment.d.ts +3 -18
- package/networkPolicyAttachment.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/procedureGrant.d.ts +15 -3
- package/procedureGrant.js +2 -0
- package/procedureGrant.js.map +1 -1
- package/provider.d.ts +16 -4
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/schemaGrant.d.ts +3 -3
- package/sequenceGrant.d.ts +15 -3
- package/sequenceGrant.js +2 -0
- package/sequenceGrant.js.map +1 -1
- package/stageGrant.d.ts +3 -3
- package/streamGrant.d.ts +15 -3
- package/streamGrant.js +2 -0
- package/streamGrant.js.map +1 -1
- package/tableColumnMaskingPolicyApplication.d.ts +8 -0
- package/tableColumnMaskingPolicyApplication.js +8 -0
- package/tableColumnMaskingPolicyApplication.js.map +1 -1
- package/tableGrant.d.ts +3 -3
- package/tagMaskingPolicyAssociation.d.ts +2 -0
- package/tagMaskingPolicyAssociation.js +2 -0
- package/tagMaskingPolicyAssociation.js.map +1 -1
- package/taskGrant.d.ts +15 -3
- package/taskGrant.js +2 -0
- package/taskGrant.js.map +1 -1
- package/types/input.d.ts +10 -0
- package/types/output.d.ts +15 -0
- package/viewGrant.d.ts +3 -3
package/viewGrant.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare class ViewGrant extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly enableMultipleGrants: pulumi.Output<boolean | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with
|
|
70
|
+
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with on_future.
|
|
71
71
|
*/
|
|
72
72
|
readonly onAll: pulumi.Output<boolean | undefined>;
|
|
73
73
|
/**
|
|
@@ -121,7 +121,7 @@ export interface ViewGrantState {
|
|
|
121
121
|
*/
|
|
122
122
|
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
123
123
|
/**
|
|
124
|
-
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with
|
|
124
|
+
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with on_future.
|
|
125
125
|
*/
|
|
126
126
|
onAll?: pulumi.Input<boolean>;
|
|
127
127
|
/**
|
|
@@ -167,7 +167,7 @@ export interface ViewGrantArgs {
|
|
|
167
167
|
*/
|
|
168
168
|
enableMultipleGrants?: pulumi.Input<boolean>;
|
|
169
169
|
/**
|
|
170
|
-
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with
|
|
170
|
+
* When this is set to true and a schema*name is provided, apply this grant on all views in the given schema. When this is true and no schema*name is provided apply this grant on all views in the given database. The view*name and shares fields must be unset in order to use on*all. Cannot be used together with on_future.
|
|
171
171
|
*/
|
|
172
172
|
onAll?: pulumi.Input<boolean>;
|
|
173
173
|
/**
|