@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.
Files changed (61) hide show
  1. package/config/vars.d.ts +8 -2
  2. package/config/vars.js +6 -0
  3. package/config/vars.js.map +1 -1
  4. package/database.d.ts +1 -1
  5. package/database.js +1 -1
  6. package/emailNotificationIntegration.d.ts +86 -0
  7. package/emailNotificationIntegration.js +81 -0
  8. package/emailNotificationIntegration.js.map +1 -0
  9. package/externalFunction.d.ts +24 -0
  10. package/externalFunction.js +4 -0
  11. package/externalFunction.js.map +1 -1
  12. package/externalTableGrant.d.ts +15 -3
  13. package/externalTableGrant.js +2 -0
  14. package/externalTableGrant.js.map +1 -1
  15. package/fileFormatGrant.d.ts +15 -3
  16. package/fileFormatGrant.js +2 -0
  17. package/fileFormatGrant.js.map +1 -1
  18. package/functionGrant.d.ts +15 -3
  19. package/functionGrant.js +2 -0
  20. package/functionGrant.js.map +1 -1
  21. package/getDatabaseRoles.d.ts +39 -0
  22. package/getDatabaseRoles.js +20 -0
  23. package/getDatabaseRoles.js.map +1 -0
  24. package/index.d.ts +6 -0
  25. package/index.js +11 -3
  26. package/index.js.map +1 -1
  27. package/maskingPolicy.d.ts +62 -10
  28. package/maskingPolicy.js +28 -8
  29. package/maskingPolicy.js.map +1 -1
  30. package/materializedViewGrant.d.ts +3 -3
  31. package/networkPolicyAttachment.d.ts +3 -18
  32. package/networkPolicyAttachment.js.map +1 -1
  33. package/package.json +2 -2
  34. package/package.json.dev +2 -2
  35. package/procedureGrant.d.ts +15 -3
  36. package/procedureGrant.js +2 -0
  37. package/procedureGrant.js.map +1 -1
  38. package/provider.d.ts +16 -4
  39. package/provider.js +1 -0
  40. package/provider.js.map +1 -1
  41. package/schemaGrant.d.ts +3 -3
  42. package/sequenceGrant.d.ts +15 -3
  43. package/sequenceGrant.js +2 -0
  44. package/sequenceGrant.js.map +1 -1
  45. package/stageGrant.d.ts +3 -3
  46. package/streamGrant.d.ts +15 -3
  47. package/streamGrant.js +2 -0
  48. package/streamGrant.js.map +1 -1
  49. package/tableColumnMaskingPolicyApplication.d.ts +8 -0
  50. package/tableColumnMaskingPolicyApplication.js +8 -0
  51. package/tableColumnMaskingPolicyApplication.js.map +1 -1
  52. package/tableGrant.d.ts +3 -3
  53. package/tagMaskingPolicyAssociation.d.ts +2 -0
  54. package/tagMaskingPolicyAssociation.js +2 -0
  55. package/tagMaskingPolicyAssociation.js.map +1 -1
  56. package/taskGrant.d.ts +15 -3
  57. package/taskGrant.js +2 -0
  58. package/taskGrant.js.map +1 -1
  59. package/types/input.d.ts +10 -0
  60. package/types/output.d.ts +15 -0
  61. 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 on*future. Importing the resource with the on*all=true option is not supported.
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 on*future. Importing the resource with the on*all=true option is not supported.
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 on*future. Importing the resource with the on*all=true option is not supported.
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
  /**