@pulumi/snowflake 0.57.0-alpha.1722063098 → 0.57.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 (66) hide show
  1. package/accountRole.d.ts +70 -0
  2. package/accountRole.js +71 -0
  3. package/accountRole.js.map +1 -0
  4. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +2 -0
  5. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js +2 -0
  6. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js.map +1 -1
  7. package/apiAuthenticationIntegrationWithClientCredentials.d.ts +2 -0
  8. package/apiAuthenticationIntegrationWithClientCredentials.js +2 -0
  9. package/apiAuthenticationIntegrationWithClientCredentials.js.map +1 -1
  10. package/apiAuthenticationIntegrationWithJwtBearer.d.ts +2 -0
  11. package/apiAuthenticationIntegrationWithJwtBearer.js +2 -0
  12. package/apiAuthenticationIntegrationWithJwtBearer.js.map +1 -1
  13. package/database.d.ts +27 -27
  14. package/externalOauthIntegration.d.ts +1 -1
  15. package/externalOauthIntegration.js +1 -1
  16. package/getNetworkPolicies.d.ts +61 -0
  17. package/getNetworkPolicies.js +31 -0
  18. package/getNetworkPolicies.js.map +1 -0
  19. package/getRoles.d.ts +23 -27
  20. package/getRoles.js +6 -21
  21. package/getRoles.js.map +1 -1
  22. package/getSchemas.d.ts +74 -31
  23. package/getSchemas.js +9 -21
  24. package/getSchemas.js.map +1 -1
  25. package/getStreamlits.d.ts +86 -0
  26. package/getStreamlits.js +33 -0
  27. package/getStreamlits.js.map +1 -0
  28. package/index.d.ts +12 -0
  29. package/index.js +20 -4
  30. package/index.js.map +1 -1
  31. package/networkPolicy.d.ts +39 -8
  32. package/networkPolicy.js +22 -5
  33. package/networkPolicy.js.map +1 -1
  34. package/oauthIntegrationForCustomClients.d.ts +8 -6
  35. package/oauthIntegrationForCustomClients.js +2 -0
  36. package/oauthIntegrationForCustomClients.js.map +1 -1
  37. package/oauthIntegrationForPartnerApplications.d.ts +8 -6
  38. package/oauthIntegrationForPartnerApplications.js +2 -0
  39. package/oauthIntegrationForPartnerApplications.js.map +1 -1
  40. package/package.json +2 -2
  41. package/role.d.ts +16 -27
  42. package/role.js +14 -15
  43. package/role.js.map +1 -1
  44. package/saml2Integration.d.ts +14 -12
  45. package/saml2Integration.js +2 -0
  46. package/saml2Integration.js.map +1 -1
  47. package/schema.d.ts +229 -45
  48. package/schema.js +43 -21
  49. package/schema.js.map +1 -1
  50. package/scimIntegration.d.ts +11 -9
  51. package/scimIntegration.js +2 -0
  52. package/scimIntegration.js.map +1 -1
  53. package/secondaryDatabase.d.ts +27 -27
  54. package/sharedDatabase.d.ts +27 -27
  55. package/streamlit.d.ts +187 -0
  56. package/streamlit.js +96 -0
  57. package/streamlit.js.map +1 -0
  58. package/table.d.ts +0 -63
  59. package/table.js +0 -63
  60. package/table.js.map +1 -1
  61. package/tableConstraint.d.ts +1 -1
  62. package/tableConstraint.js +1 -1
  63. package/types/input.d.ts +329 -41
  64. package/types/output.d.ts +511 -46
  65. package/unsafeExecute.d.ts +4 -4
  66. package/unsafeExecute.js +4 -4
package/schema.js CHANGED
@@ -6,21 +6,7 @@ exports.Schema = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * ## Example Usage
10
- *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as snowflake from "@pulumi/snowflake";
14
- *
15
- * const schema = new snowflake.Schema("schema", {
16
- * database: "database",
17
- * name: "schema",
18
- * comment: "A schema.",
19
- * isTransient: false,
20
- * isManaged: false,
21
- * dataRetentionDays: 1,
22
- * });
23
- * ```
9
+ * Resource used to manage schema objects. For more information, check [schema documentation](https://docs.snowflake.com/en/sql-reference/sql/create-schema).
24
10
  *
25
11
  * ## Import
26
12
  *
@@ -58,26 +44,62 @@ class Schema extends pulumi.CustomResource {
58
44
  opts = opts || {};
59
45
  if (opts.id) {
60
46
  const state = argsOrState;
47
+ resourceInputs["catalog"] = state ? state.catalog : undefined;
61
48
  resourceInputs["comment"] = state ? state.comment : undefined;
62
- resourceInputs["dataRetentionDays"] = state ? state.dataRetentionDays : undefined;
49
+ resourceInputs["dataRetentionTimeInDays"] = state ? state.dataRetentionTimeInDays : undefined;
63
50
  resourceInputs["database"] = state ? state.database : undefined;
64
- resourceInputs["isManaged"] = state ? state.isManaged : undefined;
51
+ resourceInputs["defaultDdlCollation"] = state ? state.defaultDdlCollation : undefined;
52
+ resourceInputs["describeOutputs"] = state ? state.describeOutputs : undefined;
53
+ resourceInputs["enableConsoleOutput"] = state ? state.enableConsoleOutput : undefined;
54
+ resourceInputs["externalVolume"] = state ? state.externalVolume : undefined;
65
55
  resourceInputs["isTransient"] = state ? state.isTransient : undefined;
56
+ resourceInputs["logLevel"] = state ? state.logLevel : undefined;
57
+ resourceInputs["maxDataExtensionTimeInDays"] = state ? state.maxDataExtensionTimeInDays : undefined;
66
58
  resourceInputs["name"] = state ? state.name : undefined;
67
- resourceInputs["tags"] = state ? state.tags : undefined;
59
+ resourceInputs["parameters"] = state ? state.parameters : undefined;
60
+ resourceInputs["pipeExecutionPaused"] = state ? state.pipeExecutionPaused : undefined;
61
+ resourceInputs["quotedIdentifiersIgnoreCase"] = state ? state.quotedIdentifiersIgnoreCase : undefined;
62
+ resourceInputs["replaceInvalidCharacters"] = state ? state.replaceInvalidCharacters : undefined;
63
+ resourceInputs["showOutputs"] = state ? state.showOutputs : undefined;
64
+ resourceInputs["storageSerializationPolicy"] = state ? state.storageSerializationPolicy : undefined;
65
+ resourceInputs["suspendTaskAfterNumFailures"] = state ? state.suspendTaskAfterNumFailures : undefined;
66
+ resourceInputs["taskAutoRetryAttempts"] = state ? state.taskAutoRetryAttempts : undefined;
67
+ resourceInputs["traceLevel"] = state ? state.traceLevel : undefined;
68
+ resourceInputs["userTaskManagedInitialWarehouseSize"] = state ? state.userTaskManagedInitialWarehouseSize : undefined;
69
+ resourceInputs["userTaskMinimumTriggerIntervalInSeconds"] = state ? state.userTaskMinimumTriggerIntervalInSeconds : undefined;
70
+ resourceInputs["userTaskTimeoutMs"] = state ? state.userTaskTimeoutMs : undefined;
71
+ resourceInputs["withManagedAccess"] = state ? state.withManagedAccess : undefined;
68
72
  }
69
73
  else {
70
74
  const args = argsOrState;
71
75
  if ((!args || args.database === undefined) && !opts.urn) {
72
76
  throw new Error("Missing required property 'database'");
73
77
  }
78
+ resourceInputs["catalog"] = args ? args.catalog : undefined;
74
79
  resourceInputs["comment"] = args ? args.comment : undefined;
75
- resourceInputs["dataRetentionDays"] = args ? args.dataRetentionDays : undefined;
80
+ resourceInputs["dataRetentionTimeInDays"] = args ? args.dataRetentionTimeInDays : undefined;
76
81
  resourceInputs["database"] = args ? args.database : undefined;
77
- resourceInputs["isManaged"] = args ? args.isManaged : undefined;
82
+ resourceInputs["defaultDdlCollation"] = args ? args.defaultDdlCollation : undefined;
83
+ resourceInputs["enableConsoleOutput"] = args ? args.enableConsoleOutput : undefined;
84
+ resourceInputs["externalVolume"] = args ? args.externalVolume : undefined;
78
85
  resourceInputs["isTransient"] = args ? args.isTransient : undefined;
86
+ resourceInputs["logLevel"] = args ? args.logLevel : undefined;
87
+ resourceInputs["maxDataExtensionTimeInDays"] = args ? args.maxDataExtensionTimeInDays : undefined;
79
88
  resourceInputs["name"] = args ? args.name : undefined;
80
- resourceInputs["tags"] = args ? args.tags : undefined;
89
+ resourceInputs["pipeExecutionPaused"] = args ? args.pipeExecutionPaused : undefined;
90
+ resourceInputs["quotedIdentifiersIgnoreCase"] = args ? args.quotedIdentifiersIgnoreCase : undefined;
91
+ resourceInputs["replaceInvalidCharacters"] = args ? args.replaceInvalidCharacters : undefined;
92
+ resourceInputs["storageSerializationPolicy"] = args ? args.storageSerializationPolicy : undefined;
93
+ resourceInputs["suspendTaskAfterNumFailures"] = args ? args.suspendTaskAfterNumFailures : undefined;
94
+ resourceInputs["taskAutoRetryAttempts"] = args ? args.taskAutoRetryAttempts : undefined;
95
+ resourceInputs["traceLevel"] = args ? args.traceLevel : undefined;
96
+ resourceInputs["userTaskManagedInitialWarehouseSize"] = args ? args.userTaskManagedInitialWarehouseSize : undefined;
97
+ resourceInputs["userTaskMinimumTriggerIntervalInSeconds"] = args ? args.userTaskMinimumTriggerIntervalInSeconds : undefined;
98
+ resourceInputs["userTaskTimeoutMs"] = args ? args.userTaskTimeoutMs : undefined;
99
+ resourceInputs["withManagedAccess"] = args ? args.withManagedAccess : undefined;
100
+ resourceInputs["describeOutputs"] = undefined /*out*/;
101
+ resourceInputs["parameters"] = undefined /*out*/;
102
+ resourceInputs["showOutputs"] = undefined /*out*/;
81
103
  }
82
104
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
83
105
  super(Schema.__pulumiType, name, resourceInputs, opts);
package/schema.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../schema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA+GD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,qCAAqC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtH,cAAc,CAAC,yCAAyC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uCAAuC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9H,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,qCAAqC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpH,cAAc,CAAC,yCAAyC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5H,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AAxML,wBAyMC;AA3LG,gBAAgB;AACO,mBAAY,GAAG,+BAA+B,CAAC"}
@@ -4,6 +4,8 @@ import * as outputs from "./types/output";
4
4
  /**
5
5
  * !> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
6
6
  *
7
+ * Resource used to manage scim security integration objects. For more information, check [security integrations documentation](https://docs.snowflake.com/en/sql-reference/sql/create-security-integration-scim).
8
+ *
7
9
  * ## Import
8
10
  *
9
11
  * ```sh
@@ -47,11 +49,11 @@ export declare class ScimIntegration extends pulumi.CustomResource {
47
49
  */
48
50
  readonly networkPolicy: pulumi.Output<string | undefined>;
49
51
  /**
50
- * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: [OKTA*PROVISIONER AAD*PROVISIONER GENERIC*SCIM*PROVISIONER].
52
+ * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
51
53
  */
52
54
  readonly runAsRole: pulumi.Output<string>;
53
55
  /**
54
- * Specifies the client type for the scim integration. Valid options are: [OKTA AZURE GENERIC].
56
+ * Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
55
57
  */
56
58
  readonly scimClient: pulumi.Output<string>;
57
59
  /**
@@ -59,7 +61,7 @@ export declare class ScimIntegration extends pulumi.CustomResource {
59
61
  */
60
62
  readonly showOutputs: pulumi.Output<outputs.ScimIntegrationShowOutput[]>;
61
63
  /**
62
- * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
64
+ * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
63
65
  */
64
66
  readonly syncPassword: pulumi.Output<string | undefined>;
65
67
  /**
@@ -96,11 +98,11 @@ export interface ScimIntegrationState {
96
98
  */
97
99
  networkPolicy?: pulumi.Input<string>;
98
100
  /**
99
- * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: [OKTA*PROVISIONER AAD*PROVISIONER GENERIC*SCIM*PROVISIONER].
101
+ * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
100
102
  */
101
103
  runAsRole?: pulumi.Input<string>;
102
104
  /**
103
- * Specifies the client type for the scim integration. Valid options are: [OKTA AZURE GENERIC].
105
+ * Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
104
106
  */
105
107
  scimClient?: pulumi.Input<string>;
106
108
  /**
@@ -108,7 +110,7 @@ export interface ScimIntegrationState {
108
110
  */
109
111
  showOutputs?: pulumi.Input<pulumi.Input<inputs.ScimIntegrationShowOutput>[]>;
110
112
  /**
111
- * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
113
+ * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
112
114
  */
113
115
  syncPassword?: pulumi.Input<string>;
114
116
  }
@@ -133,15 +135,15 @@ export interface ScimIntegrationArgs {
133
135
  */
134
136
  networkPolicy?: pulumi.Input<string>;
135
137
  /**
136
- * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: [OKTA*PROVISIONER AAD*PROVISIONER GENERIC*SCIM*PROVISIONER].
138
+ * Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
137
139
  */
138
140
  runAsRole: pulumi.Input<string>;
139
141
  /**
140
- * Specifies the client type for the scim integration. Valid options are: [OKTA AZURE GENERIC].
142
+ * Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
141
143
  */
142
144
  scimClient: pulumi.Input<string>;
143
145
  /**
144
- * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
146
+ * Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
145
147
  */
146
148
  syncPassword?: pulumi.Input<string>;
147
149
  }
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * !> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
10
10
  *
11
+ * Resource used to manage scim security integration objects. For more information, check [security integrations documentation](https://docs.snowflake.com/en/sql-reference/sql/create-security-integration-scim).
12
+ *
11
13
  * ## Import
12
14
  *
13
15
  * ```sh
@@ -1 +1 @@
1
- {"version":3,"file":"scimIntegration.js","sourceRoot":"","sources":["../scimIntegration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"scimIntegration.js","sourceRoot":"","sources":["../scimIntegration.ts"],"names":[],"mappings":"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"}
@@ -33,7 +33,7 @@ export declare class SecondaryDatabase extends pulumi.CustomResource {
33
33
  */
34
34
  readonly asReplicaOf: pulumi.Output<string>;
35
35
  /**
36
- * The database parameter that specifies the default catalog to use for Iceberg tables.
36
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
37
37
  */
38
38
  readonly catalog: pulumi.Output<string>;
39
39
  /**
@@ -53,7 +53,7 @@ export declare class SecondaryDatabase extends pulumi.CustomResource {
53
53
  */
54
54
  readonly enableConsoleOutput: pulumi.Output<boolean>;
55
55
  /**
56
- * The database parameter that specifies the default external volume to use for Iceberg tables.
56
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
57
57
  */
58
58
  readonly externalVolume: pulumi.Output<string>;
59
59
  /**
@@ -73,23 +73,23 @@ export declare class SecondaryDatabase extends pulumi.CustomResource {
73
73
  */
74
74
  readonly name: pulumi.Output<string>;
75
75
  /**
76
- * If true, the case of quoted identifiers is ignored.
76
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
77
77
  */
78
78
  readonly quotedIdentifiersIgnoreCase: pulumi.Output<boolean>;
79
79
  /**
80
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
80
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
81
81
  */
82
82
  readonly replaceInvalidCharacters: pulumi.Output<boolean>;
83
83
  /**
84
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
84
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
85
85
  */
86
86
  readonly storageSerializationPolicy: pulumi.Output<string>;
87
87
  /**
88
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
88
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
89
89
  */
90
90
  readonly suspendTaskAfterNumFailures: pulumi.Output<number>;
91
91
  /**
92
- * Maximum automatic retries allowed for a user task.
92
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
93
93
  */
94
94
  readonly taskAutoRetryAttempts: pulumi.Output<number>;
95
95
  /**
@@ -97,7 +97,7 @@ export declare class SecondaryDatabase extends pulumi.CustomResource {
97
97
  */
98
98
  readonly traceLevel: pulumi.Output<string>;
99
99
  /**
100
- * The initial size of warehouse to use for managed warehouses in the absence of history.
100
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
101
101
  */
102
102
  readonly userTaskManagedInitialWarehouseSize: pulumi.Output<string>;
103
103
  /**
@@ -105,7 +105,7 @@ export declare class SecondaryDatabase extends pulumi.CustomResource {
105
105
  */
106
106
  readonly userTaskMinimumTriggerIntervalInSeconds: pulumi.Output<number>;
107
107
  /**
108
- * User task execution timeout in milliseconds.
108
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
109
109
  */
110
110
  readonly userTaskTimeoutMs: pulumi.Output<number>;
111
111
  /**
@@ -126,7 +126,7 @@ export interface SecondaryDatabaseState {
126
126
  */
127
127
  asReplicaOf?: pulumi.Input<string>;
128
128
  /**
129
- * The database parameter that specifies the default catalog to use for Iceberg tables.
129
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
130
130
  */
131
131
  catalog?: pulumi.Input<string>;
132
132
  /**
@@ -146,7 +146,7 @@ export interface SecondaryDatabaseState {
146
146
  */
147
147
  enableConsoleOutput?: pulumi.Input<boolean>;
148
148
  /**
149
- * The database parameter that specifies the default external volume to use for Iceberg tables.
149
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
150
150
  */
151
151
  externalVolume?: pulumi.Input<string>;
152
152
  /**
@@ -166,23 +166,23 @@ export interface SecondaryDatabaseState {
166
166
  */
167
167
  name?: pulumi.Input<string>;
168
168
  /**
169
- * If true, the case of quoted identifiers is ignored.
169
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
170
170
  */
171
171
  quotedIdentifiersIgnoreCase?: pulumi.Input<boolean>;
172
172
  /**
173
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
173
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
174
174
  */
175
175
  replaceInvalidCharacters?: pulumi.Input<boolean>;
176
176
  /**
177
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
177
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
178
178
  */
179
179
  storageSerializationPolicy?: pulumi.Input<string>;
180
180
  /**
181
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
181
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
182
182
  */
183
183
  suspendTaskAfterNumFailures?: pulumi.Input<number>;
184
184
  /**
185
- * Maximum automatic retries allowed for a user task.
185
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
186
186
  */
187
187
  taskAutoRetryAttempts?: pulumi.Input<number>;
188
188
  /**
@@ -190,7 +190,7 @@ export interface SecondaryDatabaseState {
190
190
  */
191
191
  traceLevel?: pulumi.Input<string>;
192
192
  /**
193
- * The initial size of warehouse to use for managed warehouses in the absence of history.
193
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
194
194
  */
195
195
  userTaskManagedInitialWarehouseSize?: pulumi.Input<string>;
196
196
  /**
@@ -198,7 +198,7 @@ export interface SecondaryDatabaseState {
198
198
  */
199
199
  userTaskMinimumTriggerIntervalInSeconds?: pulumi.Input<number>;
200
200
  /**
201
- * User task execution timeout in milliseconds.
201
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
202
202
  */
203
203
  userTaskTimeoutMs?: pulumi.Input<number>;
204
204
  }
@@ -211,7 +211,7 @@ export interface SecondaryDatabaseArgs {
211
211
  */
212
212
  asReplicaOf: pulumi.Input<string>;
213
213
  /**
214
- * The database parameter that specifies the default catalog to use for Iceberg tables.
214
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
215
215
  */
216
216
  catalog?: pulumi.Input<string>;
217
217
  /**
@@ -231,7 +231,7 @@ export interface SecondaryDatabaseArgs {
231
231
  */
232
232
  enableConsoleOutput?: pulumi.Input<boolean>;
233
233
  /**
234
- * The database parameter that specifies the default external volume to use for Iceberg tables.
234
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
235
235
  */
236
236
  externalVolume?: pulumi.Input<string>;
237
237
  /**
@@ -251,23 +251,23 @@ export interface SecondaryDatabaseArgs {
251
251
  */
252
252
  name?: pulumi.Input<string>;
253
253
  /**
254
- * If true, the case of quoted identifiers is ignored.
254
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
255
255
  */
256
256
  quotedIdentifiersIgnoreCase?: pulumi.Input<boolean>;
257
257
  /**
258
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
258
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
259
259
  */
260
260
  replaceInvalidCharacters?: pulumi.Input<boolean>;
261
261
  /**
262
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
262
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
263
263
  */
264
264
  storageSerializationPolicy?: pulumi.Input<string>;
265
265
  /**
266
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
266
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
267
267
  */
268
268
  suspendTaskAfterNumFailures?: pulumi.Input<number>;
269
269
  /**
270
- * Maximum automatic retries allowed for a user task.
270
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
271
271
  */
272
272
  taskAutoRetryAttempts?: pulumi.Input<number>;
273
273
  /**
@@ -275,7 +275,7 @@ export interface SecondaryDatabaseArgs {
275
275
  */
276
276
  traceLevel?: pulumi.Input<string>;
277
277
  /**
278
- * The initial size of warehouse to use for managed warehouses in the absence of history.
278
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
279
279
  */
280
280
  userTaskManagedInitialWarehouseSize?: pulumi.Input<string>;
281
281
  /**
@@ -283,7 +283,7 @@ export interface SecondaryDatabaseArgs {
283
283
  */
284
284
  userTaskMinimumTriggerIntervalInSeconds?: pulumi.Input<number>;
285
285
  /**
286
- * User task execution timeout in milliseconds.
286
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
287
287
  */
288
288
  userTaskTimeoutMs?: pulumi.Input<number>;
289
289
  }
@@ -27,7 +27,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
27
27
  */
28
28
  static isInstance(obj: any): obj is SharedDatabase;
29
29
  /**
30
- * The database parameter that specifies the default catalog to use for Iceberg tables.
30
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
31
31
  */
32
32
  readonly catalog: pulumi.Output<string>;
33
33
  /**
@@ -43,7 +43,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
43
43
  */
44
44
  readonly enableConsoleOutput: pulumi.Output<boolean>;
45
45
  /**
46
- * The database parameter that specifies the default external volume to use for Iceberg tables.
46
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
47
47
  */
48
48
  readonly externalVolume: pulumi.Output<string>;
49
49
  /**
@@ -59,23 +59,23 @@ export declare class SharedDatabase extends pulumi.CustomResource {
59
59
  */
60
60
  readonly name: pulumi.Output<string>;
61
61
  /**
62
- * If true, the case of quoted identifiers is ignored.
62
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
63
63
  */
64
64
  readonly quotedIdentifiersIgnoreCase: pulumi.Output<boolean>;
65
65
  /**
66
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
66
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
67
67
  */
68
68
  readonly replaceInvalidCharacters: pulumi.Output<boolean>;
69
69
  /**
70
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
70
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
71
71
  */
72
72
  readonly storageSerializationPolicy: pulumi.Output<string>;
73
73
  /**
74
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
74
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
75
75
  */
76
76
  readonly suspendTaskAfterNumFailures: pulumi.Output<number>;
77
77
  /**
78
- * Maximum automatic retries allowed for a user task.
78
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
79
79
  */
80
80
  readonly taskAutoRetryAttempts: pulumi.Output<number>;
81
81
  /**
@@ -83,7 +83,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
83
83
  */
84
84
  readonly traceLevel: pulumi.Output<string>;
85
85
  /**
86
- * The initial size of warehouse to use for managed warehouses in the absence of history.
86
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
87
87
  */
88
88
  readonly userTaskManagedInitialWarehouseSize: pulumi.Output<string>;
89
89
  /**
@@ -91,7 +91,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
91
91
  */
92
92
  readonly userTaskMinimumTriggerIntervalInSeconds: pulumi.Output<number>;
93
93
  /**
94
- * User task execution timeout in milliseconds.
94
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
95
95
  */
96
96
  readonly userTaskTimeoutMs: pulumi.Output<number>;
97
97
  /**
@@ -108,7 +108,7 @@ export declare class SharedDatabase extends pulumi.CustomResource {
108
108
  */
109
109
  export interface SharedDatabaseState {
110
110
  /**
111
- * The database parameter that specifies the default catalog to use for Iceberg tables.
111
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
112
112
  */
113
113
  catalog?: pulumi.Input<string>;
114
114
  /**
@@ -124,7 +124,7 @@ export interface SharedDatabaseState {
124
124
  */
125
125
  enableConsoleOutput?: pulumi.Input<boolean>;
126
126
  /**
127
- * The database parameter that specifies the default external volume to use for Iceberg tables.
127
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
128
128
  */
129
129
  externalVolume?: pulumi.Input<string>;
130
130
  /**
@@ -140,23 +140,23 @@ export interface SharedDatabaseState {
140
140
  */
141
141
  name?: pulumi.Input<string>;
142
142
  /**
143
- * If true, the case of quoted identifiers is ignored.
143
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
144
144
  */
145
145
  quotedIdentifiersIgnoreCase?: pulumi.Input<boolean>;
146
146
  /**
147
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
147
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
148
148
  */
149
149
  replaceInvalidCharacters?: pulumi.Input<boolean>;
150
150
  /**
151
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
151
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
152
152
  */
153
153
  storageSerializationPolicy?: pulumi.Input<string>;
154
154
  /**
155
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
155
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
156
156
  */
157
157
  suspendTaskAfterNumFailures?: pulumi.Input<number>;
158
158
  /**
159
- * Maximum automatic retries allowed for a user task.
159
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
160
160
  */
161
161
  taskAutoRetryAttempts?: pulumi.Input<number>;
162
162
  /**
@@ -164,7 +164,7 @@ export interface SharedDatabaseState {
164
164
  */
165
165
  traceLevel?: pulumi.Input<string>;
166
166
  /**
167
- * The initial size of warehouse to use for managed warehouses in the absence of history.
167
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
168
168
  */
169
169
  userTaskManagedInitialWarehouseSize?: pulumi.Input<string>;
170
170
  /**
@@ -172,7 +172,7 @@ export interface SharedDatabaseState {
172
172
  */
173
173
  userTaskMinimumTriggerIntervalInSeconds?: pulumi.Input<number>;
174
174
  /**
175
- * User task execution timeout in milliseconds.
175
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
176
176
  */
177
177
  userTaskTimeoutMs?: pulumi.Input<number>;
178
178
  }
@@ -181,7 +181,7 @@ export interface SharedDatabaseState {
181
181
  */
182
182
  export interface SharedDatabaseArgs {
183
183
  /**
184
- * The database parameter that specifies the default catalog to use for Iceberg tables.
184
+ * The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
185
185
  */
186
186
  catalog?: pulumi.Input<string>;
187
187
  /**
@@ -197,7 +197,7 @@ export interface SharedDatabaseArgs {
197
197
  */
198
198
  enableConsoleOutput?: pulumi.Input<boolean>;
199
199
  /**
200
- * The database parameter that specifies the default external volume to use for Iceberg tables.
200
+ * The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
201
201
  */
202
202
  externalVolume?: pulumi.Input<string>;
203
203
  /**
@@ -213,23 +213,23 @@ export interface SharedDatabaseArgs {
213
213
  */
214
214
  name?: pulumi.Input<string>;
215
215
  /**
216
- * If true, the case of quoted identifiers is ignored.
216
+ * If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
217
217
  */
218
218
  quotedIdentifiersIgnoreCase?: pulumi.Input<boolean>;
219
219
  /**
220
- * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog.
220
+ * Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
221
221
  */
222
222
  replaceInvalidCharacters?: pulumi.Input<boolean>;
223
223
  /**
224
- * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake.
224
+ * The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
225
225
  */
226
226
  storageSerializationPolicy?: pulumi.Input<string>;
227
227
  /**
228
- * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
228
+ * How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
229
229
  */
230
230
  suspendTaskAfterNumFailures?: pulumi.Input<number>;
231
231
  /**
232
- * Maximum automatic retries allowed for a user task.
232
+ * Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
233
233
  */
234
234
  taskAutoRetryAttempts?: pulumi.Input<number>;
235
235
  /**
@@ -237,7 +237,7 @@ export interface SharedDatabaseArgs {
237
237
  */
238
238
  traceLevel?: pulumi.Input<string>;
239
239
  /**
240
- * The initial size of warehouse to use for managed warehouses in the absence of history.
240
+ * The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
241
241
  */
242
242
  userTaskManagedInitialWarehouseSize?: pulumi.Input<string>;
243
243
  /**
@@ -245,7 +245,7 @@ export interface SharedDatabaseArgs {
245
245
  */
246
246
  userTaskMinimumTriggerIntervalInSeconds?: pulumi.Input<number>;
247
247
  /**
248
- * User task execution timeout in milliseconds.
248
+ * User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
249
249
  */
250
250
  userTaskTimeoutMs?: pulumi.Input<number>;
251
251
  }