@pulumi/snowflake 0.50.3-alpha.1711608072 → 0.50.3-alpha.1712402884
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/account.d.ts +6 -6
- package/package.json +1 -1
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +1 -1
package/account.d.ts
CHANGED
|
@@ -57,11 +57,11 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
57
57
|
*/
|
|
58
58
|
readonly adminName: pulumi.Output<string>;
|
|
59
59
|
/**
|
|
60
|
-
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake
|
|
60
|
+
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake%2Dprovided%20Password%20Policy).
|
|
61
61
|
*/
|
|
62
62
|
readonly adminPassword: pulumi.Output<string | undefined>;
|
|
63
63
|
/**
|
|
64
|
-
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key
|
|
64
|
+
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key%20pair%20authentication) for the user. Optional if the `ADMIN_PASSWORD` parameter is specified.
|
|
65
65
|
*/
|
|
66
66
|
readonly adminRsaPublicKey: pulumi.Output<string | undefined>;
|
|
67
67
|
/**
|
|
@@ -126,11 +126,11 @@ export interface AccountState {
|
|
|
126
126
|
*/
|
|
127
127
|
adminName?: pulumi.Input<string>;
|
|
128
128
|
/**
|
|
129
|
-
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake
|
|
129
|
+
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake%2Dprovided%20Password%20Policy).
|
|
130
130
|
*/
|
|
131
131
|
adminPassword?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key
|
|
133
|
+
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key%20pair%20authentication) for the user. Optional if the `ADMIN_PASSWORD` parameter is specified.
|
|
134
134
|
*/
|
|
135
135
|
adminRsaPublicKey?: pulumi.Input<string>;
|
|
136
136
|
/**
|
|
@@ -187,11 +187,11 @@ export interface AccountArgs {
|
|
|
187
187
|
*/
|
|
188
188
|
adminName: pulumi.Input<string>;
|
|
189
189
|
/**
|
|
190
|
-
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake
|
|
190
|
+
* Password for the initial administrative user of the account. Optional if the `ADMIN_RSA_PUBLIC_KEY` parameter is specified. For more information about passwords in Snowflake, see [Snowflake-provided Password Policy](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=Snowflake%2Dprovided%20Password%20Policy).
|
|
191
191
|
*/
|
|
192
192
|
adminPassword?: pulumi.Input<string>;
|
|
193
193
|
/**
|
|
194
|
-
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key
|
|
194
|
+
* Assigns a public key to the initial administrative user of the account in order to implement [key pair authentication](https://docs.snowflake.com/en/sql-reference/sql/create-account.html#:~:text=key%20pair%20authentication) for the user. Optional if the `ADMIN_PASSWORD` parameter is specified.
|
|
195
195
|
*/
|
|
196
196
|
adminRsaPublicKey?: pulumi.Input<string>;
|
|
197
197
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -160,13 +160,13 @@ export interface GetDynamicTablesInArgs {
|
|
|
160
160
|
}
|
|
161
161
|
export interface GetDynamicTablesLike {
|
|
162
162
|
/**
|
|
163
|
-
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (
|
|
163
|
+
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (% and _).
|
|
164
164
|
*/
|
|
165
165
|
pattern: string;
|
|
166
166
|
}
|
|
167
167
|
export interface GetDynamicTablesLikeArgs {
|
|
168
168
|
/**
|
|
169
|
-
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (
|
|
169
|
+
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (% and _).
|
|
170
170
|
*/
|
|
171
171
|
pattern: pulumi.Input<string>;
|
|
172
172
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -271,7 +271,7 @@ export interface GetDynamicTablesIn {
|
|
|
271
271
|
}
|
|
272
272
|
export interface GetDynamicTablesLike {
|
|
273
273
|
/**
|
|
274
|
-
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (
|
|
274
|
+
* Filters the command output by object name. The filter uses case-insensitive pattern matching with support for SQL wildcard characters (% and _).
|
|
275
275
|
*/
|
|
276
276
|
pattern: string;
|
|
277
277
|
}
|