@pulumi/snowflake 0.62.0-alpha.1732688512 → 0.62.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/accountRole.d.ts +3 -3
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +3 -3
- package/apiAuthenticationIntegrationWithClientCredentials.d.ts +3 -3
- package/apiAuthenticationIntegrationWithJwtBearer.d.ts +3 -3
- package/authenticationPolicy.d.ts +9 -9
- package/database.d.ts +3 -3
- package/databaseRole.d.ts +6 -6
- package/externalOauthIntegration.d.ts +3 -3
- package/externalVolume.d.ts +3 -3
- package/getTags.d.ts +62 -0
- package/getTags.js +36 -0
- package/getTags.js.map +1 -0
- package/getTasks.d.ts +70 -37
- package/getTasks.js +18 -24
- package/getTasks.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +5 -2
- package/index.js.map +1 -1
- package/legacyServiceUser.d.ts +3 -3
- package/maskingPolicy.d.ts +9 -9
- package/networkPolicy.d.ts +3 -3
- package/oauthIntegrationForCustomClients.d.ts +3 -3
- package/oauthIntegrationForPartnerApplications.d.ts +3 -3
- package/package.json +2 -2
- package/passwordPolicy.d.ts +0 -3
- package/passwordPolicy.js +0 -3
- package/passwordPolicy.js.map +1 -1
- package/primaryConnection.d.ts +3 -3
- package/resourceMonitor.d.ts +3 -3
- package/role.d.ts +3 -3
- package/rowAccessPolicy.d.ts +9 -9
- package/saml2Integration.d.ts +3 -3
- package/scimIntegration.d.ts +3 -3
- package/secondaryConnection.d.ts +3 -3
- package/secondaryDatabase.d.ts +3 -3
- package/secretWithAuthorizationCodeGrant.d.ts +9 -9
- package/secretWithBasicAuthentication.d.ts +9 -9
- package/secretWithClientCredentials.d.ts +9 -9
- package/secretWithGenericString.d.ts +9 -9
- package/serviceUser.d.ts +3 -3
- package/sharedDatabase.d.ts +3 -3
- package/storageIntegration.d.ts +9 -0
- package/storageIntegration.js.map +1 -1
- package/streamOnDirectoryTable.d.ts +12 -12
- package/streamOnExternalTable.d.ts +12 -12
- package/streamOnTable.d.ts +12 -12
- package/streamOnView.d.ts +12 -12
- package/tag.d.ts +35 -15
- package/tag.js +5 -3
- package/tag.js.map +1 -1
- package/task.d.ts +747 -63
- package/task.js +123 -4
- package/task.js.map +1 -1
- package/types/input.d.ts +623 -0
- package/types/output.d.ts +2935 -1852
- package/user.d.ts +3 -3
- package/view.d.ts +9 -9
- package/warehouse.d.ts +3 -3
|
@@ -33,7 +33,7 @@ export declare class StreamOnDirectoryTable extends pulumi.CustomResource {
|
|
|
33
33
|
*/
|
|
34
34
|
readonly copyGrants: pulumi.Output<boolean | undefined>;
|
|
35
35
|
/**
|
|
36
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
36
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
37
37
|
*/
|
|
38
38
|
readonly database: pulumi.Output<string>;
|
|
39
39
|
/**
|
|
@@ -45,11 +45,11 @@ export declare class StreamOnDirectoryTable extends pulumi.CustomResource {
|
|
|
45
45
|
*/
|
|
46
46
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
47
47
|
/**
|
|
48
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
48
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
49
49
|
*/
|
|
50
50
|
readonly name: pulumi.Output<string>;
|
|
51
51
|
/**
|
|
52
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
52
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
53
53
|
*/
|
|
54
54
|
readonly schema: pulumi.Output<string>;
|
|
55
55
|
/**
|
|
@@ -57,7 +57,7 @@ export declare class StreamOnDirectoryTable extends pulumi.CustomResource {
|
|
|
57
57
|
*/
|
|
58
58
|
readonly showOutputs: pulumi.Output<outputs.StreamOnDirectoryTableShowOutput[]>;
|
|
59
59
|
/**
|
|
60
|
-
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
60
|
+
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
61
61
|
*/
|
|
62
62
|
readonly stage: pulumi.Output<string>;
|
|
63
63
|
readonly stale: pulumi.Output<boolean>;
|
|
@@ -87,7 +87,7 @@ export interface StreamOnDirectoryTableState {
|
|
|
87
87
|
*/
|
|
88
88
|
copyGrants?: pulumi.Input<boolean>;
|
|
89
89
|
/**
|
|
90
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
90
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
91
91
|
*/
|
|
92
92
|
database?: pulumi.Input<string>;
|
|
93
93
|
/**
|
|
@@ -99,11 +99,11 @@ export interface StreamOnDirectoryTableState {
|
|
|
99
99
|
*/
|
|
100
100
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
102
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
102
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
103
103
|
*/
|
|
104
104
|
name?: pulumi.Input<string>;
|
|
105
105
|
/**
|
|
106
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
106
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
107
107
|
*/
|
|
108
108
|
schema?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
@@ -111,7 +111,7 @@ export interface StreamOnDirectoryTableState {
|
|
|
111
111
|
*/
|
|
112
112
|
showOutputs?: pulumi.Input<pulumi.Input<inputs.StreamOnDirectoryTableShowOutput>[]>;
|
|
113
113
|
/**
|
|
114
|
-
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
114
|
+
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
115
115
|
*/
|
|
116
116
|
stage?: pulumi.Input<string>;
|
|
117
117
|
stale?: pulumi.Input<boolean>;
|
|
@@ -133,19 +133,19 @@ export interface StreamOnDirectoryTableArgs {
|
|
|
133
133
|
*/
|
|
134
134
|
copyGrants?: pulumi.Input<boolean>;
|
|
135
135
|
/**
|
|
136
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
136
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
137
137
|
*/
|
|
138
138
|
database: pulumi.Input<string>;
|
|
139
139
|
/**
|
|
140
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
140
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
141
141
|
*/
|
|
142
142
|
name?: pulumi.Input<string>;
|
|
143
143
|
/**
|
|
144
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
144
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
145
145
|
*/
|
|
146
146
|
schema: pulumi.Input<string>;
|
|
147
147
|
/**
|
|
148
|
-
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
148
|
+
* Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
149
149
|
*/
|
|
150
150
|
stage: pulumi.Input<string>;
|
|
151
151
|
}
|
|
@@ -35,7 +35,7 @@ export declare class StreamOnExternalTable extends pulumi.CustomResource {
|
|
|
35
35
|
*/
|
|
36
36
|
readonly copyGrants: pulumi.Output<boolean | undefined>;
|
|
37
37
|
/**
|
|
38
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
38
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
39
39
|
*/
|
|
40
40
|
readonly database: pulumi.Output<string>;
|
|
41
41
|
/**
|
|
@@ -43,7 +43,7 @@ export declare class StreamOnExternalTable extends pulumi.CustomResource {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly describeOutputs: pulumi.Output<outputs.StreamOnExternalTableDescribeOutput[]>;
|
|
45
45
|
/**
|
|
46
|
-
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
46
|
+
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
47
47
|
*/
|
|
48
48
|
readonly externalTable: pulumi.Output<string>;
|
|
49
49
|
/**
|
|
@@ -55,11 +55,11 @@ export declare class StreamOnExternalTable extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly insertOnly: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
58
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
59
59
|
*/
|
|
60
60
|
readonly name: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
62
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
62
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
63
63
|
*/
|
|
64
64
|
readonly schema: pulumi.Output<string>;
|
|
65
65
|
/**
|
|
@@ -95,7 +95,7 @@ export interface StreamOnExternalTableState {
|
|
|
95
95
|
*/
|
|
96
96
|
copyGrants?: pulumi.Input<boolean>;
|
|
97
97
|
/**
|
|
98
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
98
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
99
99
|
*/
|
|
100
100
|
database?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
@@ -103,7 +103,7 @@ export interface StreamOnExternalTableState {
|
|
|
103
103
|
*/
|
|
104
104
|
describeOutputs?: pulumi.Input<pulumi.Input<inputs.StreamOnExternalTableDescribeOutput>[]>;
|
|
105
105
|
/**
|
|
106
|
-
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
106
|
+
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
107
107
|
*/
|
|
108
108
|
externalTable?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
@@ -115,11 +115,11 @@ export interface StreamOnExternalTableState {
|
|
|
115
115
|
*/
|
|
116
116
|
insertOnly?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
118
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
119
119
|
*/
|
|
120
120
|
name?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
122
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
122
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
123
123
|
*/
|
|
124
124
|
schema?: pulumi.Input<string>;
|
|
125
125
|
/**
|
|
@@ -147,11 +147,11 @@ export interface StreamOnExternalTableArgs {
|
|
|
147
147
|
*/
|
|
148
148
|
copyGrants?: pulumi.Input<boolean>;
|
|
149
149
|
/**
|
|
150
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
150
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
151
151
|
*/
|
|
152
152
|
database: pulumi.Input<string>;
|
|
153
153
|
/**
|
|
154
|
-
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
154
|
+
* Specifies an identifier for the external table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
155
155
|
*/
|
|
156
156
|
externalTable: pulumi.Input<string>;
|
|
157
157
|
/**
|
|
@@ -159,11 +159,11 @@ export interface StreamOnExternalTableArgs {
|
|
|
159
159
|
*/
|
|
160
160
|
insertOnly?: pulumi.Input<string>;
|
|
161
161
|
/**
|
|
162
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
162
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
163
163
|
*/
|
|
164
164
|
name?: pulumi.Input<string>;
|
|
165
165
|
/**
|
|
166
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
166
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
167
167
|
*/
|
|
168
168
|
schema: pulumi.Input<string>;
|
|
169
169
|
}
|
package/streamOnTable.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare class StreamOnTable extends pulumi.CustomResource {
|
|
|
39
39
|
*/
|
|
40
40
|
readonly copyGrants: pulumi.Output<boolean | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
42
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
43
43
|
*/
|
|
44
44
|
readonly database: pulumi.Output<string>;
|
|
45
45
|
/**
|
|
@@ -51,11 +51,11 @@ export declare class StreamOnTable extends pulumi.CustomResource {
|
|
|
51
51
|
*/
|
|
52
52
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
53
53
|
/**
|
|
54
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
54
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
55
55
|
*/
|
|
56
56
|
readonly name: pulumi.Output<string>;
|
|
57
57
|
/**
|
|
58
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
58
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
59
59
|
*/
|
|
60
60
|
readonly schema: pulumi.Output<string>;
|
|
61
61
|
readonly showInitialRows: pulumi.Output<string | undefined>;
|
|
@@ -69,7 +69,7 @@ export declare class StreamOnTable extends pulumi.CustomResource {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly streamType: pulumi.Output<string>;
|
|
71
71
|
/**
|
|
72
|
-
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
72
|
+
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
73
73
|
*/
|
|
74
74
|
readonly table: pulumi.Output<string>;
|
|
75
75
|
/**
|
|
@@ -100,7 +100,7 @@ export interface StreamOnTableState {
|
|
|
100
100
|
*/
|
|
101
101
|
copyGrants?: pulumi.Input<boolean>;
|
|
102
102
|
/**
|
|
103
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
103
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
104
104
|
*/
|
|
105
105
|
database?: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
@@ -112,11 +112,11 @@ export interface StreamOnTableState {
|
|
|
112
112
|
*/
|
|
113
113
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
114
114
|
/**
|
|
115
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
115
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
116
116
|
*/
|
|
117
117
|
name?: pulumi.Input<string>;
|
|
118
118
|
/**
|
|
119
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
119
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
120
120
|
*/
|
|
121
121
|
schema?: pulumi.Input<string>;
|
|
122
122
|
showInitialRows?: pulumi.Input<string>;
|
|
@@ -130,7 +130,7 @@ export interface StreamOnTableState {
|
|
|
130
130
|
*/
|
|
131
131
|
streamType?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
133
|
+
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
134
134
|
*/
|
|
135
135
|
table?: pulumi.Input<string>;
|
|
136
136
|
}
|
|
@@ -153,20 +153,20 @@ export interface StreamOnTableArgs {
|
|
|
153
153
|
*/
|
|
154
154
|
copyGrants?: pulumi.Input<boolean>;
|
|
155
155
|
/**
|
|
156
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
156
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
157
157
|
*/
|
|
158
158
|
database: pulumi.Input<string>;
|
|
159
159
|
/**
|
|
160
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
160
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
161
161
|
*/
|
|
162
162
|
name?: pulumi.Input<string>;
|
|
163
163
|
/**
|
|
164
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
164
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
165
165
|
*/
|
|
166
166
|
schema: pulumi.Input<string>;
|
|
167
167
|
showInitialRows?: pulumi.Input<string>;
|
|
168
168
|
/**
|
|
169
|
-
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
169
|
+
* Specifies an identifier for the table the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
170
170
|
*/
|
|
171
171
|
table: pulumi.Input<string>;
|
|
172
172
|
}
|
package/streamOnView.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare class StreamOnView extends pulumi.CustomResource {
|
|
|
39
39
|
*/
|
|
40
40
|
readonly copyGrants: pulumi.Output<boolean | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
42
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
43
43
|
*/
|
|
44
44
|
readonly database: pulumi.Output<string>;
|
|
45
45
|
/**
|
|
@@ -51,11 +51,11 @@ export declare class StreamOnView extends pulumi.CustomResource {
|
|
|
51
51
|
*/
|
|
52
52
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
53
53
|
/**
|
|
54
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
54
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
55
55
|
*/
|
|
56
56
|
readonly name: pulumi.Output<string>;
|
|
57
57
|
/**
|
|
58
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
58
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
59
59
|
*/
|
|
60
60
|
readonly schema: pulumi.Output<string>;
|
|
61
61
|
readonly showInitialRows: pulumi.Output<string | undefined>;
|
|
@@ -69,7 +69,7 @@ export declare class StreamOnView extends pulumi.CustomResource {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly streamType: pulumi.Output<string>;
|
|
71
71
|
/**
|
|
72
|
-
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
72
|
+
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
73
73
|
*/
|
|
74
74
|
readonly view: pulumi.Output<string>;
|
|
75
75
|
/**
|
|
@@ -100,7 +100,7 @@ export interface StreamOnViewState {
|
|
|
100
100
|
*/
|
|
101
101
|
copyGrants?: pulumi.Input<boolean>;
|
|
102
102
|
/**
|
|
103
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
103
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
104
104
|
*/
|
|
105
105
|
database?: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
@@ -112,11 +112,11 @@ export interface StreamOnViewState {
|
|
|
112
112
|
*/
|
|
113
113
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
114
114
|
/**
|
|
115
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
115
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
116
116
|
*/
|
|
117
117
|
name?: pulumi.Input<string>;
|
|
118
118
|
/**
|
|
119
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
119
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
120
120
|
*/
|
|
121
121
|
schema?: pulumi.Input<string>;
|
|
122
122
|
showInitialRows?: pulumi.Input<string>;
|
|
@@ -130,7 +130,7 @@ export interface StreamOnViewState {
|
|
|
130
130
|
*/
|
|
131
131
|
streamType?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
133
|
+
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
134
134
|
*/
|
|
135
135
|
view?: pulumi.Input<string>;
|
|
136
136
|
}
|
|
@@ -153,20 +153,20 @@ export interface StreamOnViewArgs {
|
|
|
153
153
|
*/
|
|
154
154
|
copyGrants?: pulumi.Input<boolean>;
|
|
155
155
|
/**
|
|
156
|
-
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
156
|
+
* The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
157
157
|
*/
|
|
158
158
|
database: pulumi.Input<string>;
|
|
159
159
|
/**
|
|
160
|
-
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
160
|
+
* Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
161
161
|
*/
|
|
162
162
|
name?: pulumi.Input<string>;
|
|
163
163
|
/**
|
|
164
|
-
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
164
|
+
* The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
165
165
|
*/
|
|
166
166
|
schema: pulumi.Input<string>;
|
|
167
167
|
showInitialRows?: pulumi.Input<string>;
|
|
168
168
|
/**
|
|
169
|
-
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
169
|
+
* Specifies an identifier for the view the stream will monitor. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
170
170
|
*/
|
|
171
171
|
view: pulumi.Input<string>;
|
|
172
172
|
}
|
package/tag.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* ## Import
|
|
4
6
|
*
|
|
5
|
-
* format is database name | schema name | tag name
|
|
6
|
-
*
|
|
7
7
|
* ```sh
|
|
8
|
-
* $ pulumi import snowflake:index/tag:Tag example '
|
|
8
|
+
* $ pulumi import snowflake:index/tag:Tag example '"<database_name>"."<schema_name>"."<tag_name>"'
|
|
9
9
|
* ```
|
|
10
10
|
*/
|
|
11
11
|
export declare class Tag extends pulumi.CustomResource {
|
|
@@ -25,7 +25,7 @@ export declare class Tag extends pulumi.CustomResource {
|
|
|
25
25
|
*/
|
|
26
26
|
static isInstance(obj: any): obj is Tag;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Set of allowed values for the tag.
|
|
29
29
|
*/
|
|
30
30
|
readonly allowedValues: pulumi.Output<string[] | undefined>;
|
|
31
31
|
/**
|
|
@@ -33,7 +33,7 @@ export declare class Tag extends pulumi.CustomResource {
|
|
|
33
33
|
*/
|
|
34
34
|
readonly comment: pulumi.Output<string | undefined>;
|
|
35
35
|
/**
|
|
36
|
-
* The database in which to create the tag.
|
|
36
|
+
* The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
37
37
|
*/
|
|
38
38
|
readonly database: pulumi.Output<string>;
|
|
39
39
|
/**
|
|
@@ -41,13 +41,21 @@ export declare class Tag extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them.
|
|
45
|
+
*/
|
|
46
|
+
readonly maskingPolicies: pulumi.Output<string[] | undefined>;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
45
49
|
*/
|
|
46
50
|
readonly name: pulumi.Output<string>;
|
|
47
51
|
/**
|
|
48
|
-
* The schema in which to create the tag.
|
|
52
|
+
* The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
49
53
|
*/
|
|
50
54
|
readonly schema: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* Outputs the result of `SHOW TAGS` for the given tag.
|
|
57
|
+
*/
|
|
58
|
+
readonly showOutputs: pulumi.Output<outputs.TagShowOutput[]>;
|
|
51
59
|
/**
|
|
52
60
|
* Create a Tag resource with the given unique name, arguments, and options.
|
|
53
61
|
*
|
|
@@ -62,7 +70,7 @@ export declare class Tag extends pulumi.CustomResource {
|
|
|
62
70
|
*/
|
|
63
71
|
export interface TagState {
|
|
64
72
|
/**
|
|
65
|
-
*
|
|
73
|
+
* Set of allowed values for the tag.
|
|
66
74
|
*/
|
|
67
75
|
allowedValues?: pulumi.Input<pulumi.Input<string>[]>;
|
|
68
76
|
/**
|
|
@@ -70,7 +78,7 @@ export interface TagState {
|
|
|
70
78
|
*/
|
|
71
79
|
comment?: pulumi.Input<string>;
|
|
72
80
|
/**
|
|
73
|
-
* The database in which to create the tag.
|
|
81
|
+
* The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
74
82
|
*/
|
|
75
83
|
database?: pulumi.Input<string>;
|
|
76
84
|
/**
|
|
@@ -78,20 +86,28 @@ export interface TagState {
|
|
|
78
86
|
*/
|
|
79
87
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
80
88
|
/**
|
|
81
|
-
*
|
|
89
|
+
* Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them.
|
|
90
|
+
*/
|
|
91
|
+
maskingPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
92
|
+
/**
|
|
93
|
+
* Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
82
94
|
*/
|
|
83
95
|
name?: pulumi.Input<string>;
|
|
84
96
|
/**
|
|
85
|
-
* The schema in which to create the tag.
|
|
97
|
+
* The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
86
98
|
*/
|
|
87
99
|
schema?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Outputs the result of `SHOW TAGS` for the given tag.
|
|
102
|
+
*/
|
|
103
|
+
showOutputs?: pulumi.Input<pulumi.Input<inputs.TagShowOutput>[]>;
|
|
88
104
|
}
|
|
89
105
|
/**
|
|
90
106
|
* The set of arguments for constructing a Tag resource.
|
|
91
107
|
*/
|
|
92
108
|
export interface TagArgs {
|
|
93
109
|
/**
|
|
94
|
-
*
|
|
110
|
+
* Set of allowed values for the tag.
|
|
95
111
|
*/
|
|
96
112
|
allowedValues?: pulumi.Input<pulumi.Input<string>[]>;
|
|
97
113
|
/**
|
|
@@ -99,15 +115,19 @@ export interface TagArgs {
|
|
|
99
115
|
*/
|
|
100
116
|
comment?: pulumi.Input<string>;
|
|
101
117
|
/**
|
|
102
|
-
* The database in which to create the tag.
|
|
118
|
+
* The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
103
119
|
*/
|
|
104
120
|
database: pulumi.Input<string>;
|
|
105
121
|
/**
|
|
106
|
-
*
|
|
122
|
+
* Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them.
|
|
123
|
+
*/
|
|
124
|
+
maskingPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
125
|
+
/**
|
|
126
|
+
* Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
107
127
|
*/
|
|
108
128
|
name?: pulumi.Input<string>;
|
|
109
129
|
/**
|
|
110
|
-
* The schema in which to create the tag.
|
|
130
|
+
* The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
111
131
|
*/
|
|
112
132
|
schema: pulumi.Input<string>;
|
|
113
133
|
}
|
package/tag.js
CHANGED
|
@@ -8,10 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Import
|
|
10
10
|
*
|
|
11
|
-
* format is database name | schema name | tag name
|
|
12
|
-
*
|
|
13
11
|
* ```sh
|
|
14
|
-
* $ pulumi import snowflake:index/tag:Tag example '
|
|
12
|
+
* $ pulumi import snowflake:index/tag:Tag example '"<database_name>"."<schema_name>"."<tag_name>"'
|
|
15
13
|
* ```
|
|
16
14
|
*/
|
|
17
15
|
class Tag extends pulumi.CustomResource {
|
|
@@ -46,8 +44,10 @@ class Tag extends pulumi.CustomResource {
|
|
|
46
44
|
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
47
45
|
resourceInputs["database"] = state ? state.database : undefined;
|
|
48
46
|
resourceInputs["fullyQualifiedName"] = state ? state.fullyQualifiedName : undefined;
|
|
47
|
+
resourceInputs["maskingPolicies"] = state ? state.maskingPolicies : undefined;
|
|
49
48
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
50
49
|
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
50
|
+
resourceInputs["showOutputs"] = state ? state.showOutputs : undefined;
|
|
51
51
|
}
|
|
52
52
|
else {
|
|
53
53
|
const args = argsOrState;
|
|
@@ -60,9 +60,11 @@ class Tag extends pulumi.CustomResource {
|
|
|
60
60
|
resourceInputs["allowedValues"] = args ? args.allowedValues : undefined;
|
|
61
61
|
resourceInputs["comment"] = args ? args.comment : undefined;
|
|
62
62
|
resourceInputs["database"] = args ? args.database : undefined;
|
|
63
|
+
resourceInputs["maskingPolicies"] = args ? args.maskingPolicies : undefined;
|
|
63
64
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
64
65
|
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
65
66
|
resourceInputs["fullyQualifiedName"] = undefined /*out*/;
|
|
67
|
+
resourceInputs["showOutputs"] = undefined /*out*/;
|
|
66
68
|
}
|
|
67
69
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
68
70
|
super(Tag.__pulumiType, name, resourceInputs, opts);
|
package/tag.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tag.js","sourceRoot":"","sources":["../tag.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"tag.js","sourceRoot":"","sources":["../tag.ts"],"names":[],"mappings":"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"}
|