@pulumi/snowflake 2.3.0-alpha.1753398370 → 2.3.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/currentAccount.d.ts +7 -7
- package/currentAccount.js +1 -1
- package/currentOrganizationAccount.d.ts +1508 -0
- package/currentOrganizationAccount.js +300 -0
- package/currentOrganizationAccount.js.map +1 -0
- package/getUserProgrammaticAccessTokens.d.ts +49 -0
- package/getUserProgrammaticAccessTokens.js +32 -0
- package/getUserProgrammaticAccessTokens.js.map +1 -0
- package/index.d.ts +9 -0
- package/index.js +17 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +36 -0
- package/types/output.d.ts +54 -0
- package/userProgrammaticAccessToken.d.ts +159 -0
- package/userProgrammaticAccessToken.js +83 -0
- package/userProgrammaticAccessToken.js.map +1 -0
package/currentAccount.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* ## Import
|
|
4
4
|
*
|
|
5
|
-
* This resource may contain a
|
|
5
|
+
* This resource may contain a any identifier, but the following format is recommended.
|
|
6
6
|
*
|
|
7
7
|
* ```sh
|
|
8
8
|
* $ pulumi import snowflake:index/currentAccount:CurrentAccount example 'current_account'
|
|
@@ -41,7 +41,7 @@ export declare class CurrentAccount extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly allowIdToken: pulumi.Output<boolean>;
|
|
43
43
|
/**
|
|
44
|
-
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account.
|
|
44
|
+
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account. For more information about this resource, see docs.
|
|
45
45
|
*/
|
|
46
46
|
readonly authenticationPolicy: pulumi.Output<string | undefined>;
|
|
47
47
|
/**
|
|
@@ -321,7 +321,7 @@ export declare class CurrentAccount extends pulumi.CustomResource {
|
|
|
321
321
|
*/
|
|
322
322
|
readonly packagesPolicy: pulumi.Output<string | undefined>;
|
|
323
323
|
/**
|
|
324
|
-
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account.
|
|
324
|
+
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account. For more information about this resource, see docs.
|
|
325
325
|
*/
|
|
326
326
|
readonly passwordPolicy: pulumi.Output<string | undefined>;
|
|
327
327
|
/**
|
|
@@ -543,7 +543,7 @@ export interface CurrentAccountState {
|
|
|
543
543
|
*/
|
|
544
544
|
allowIdToken?: pulumi.Input<boolean>;
|
|
545
545
|
/**
|
|
546
|
-
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account.
|
|
546
|
+
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account. For more information about this resource, see docs.
|
|
547
547
|
*/
|
|
548
548
|
authenticationPolicy?: pulumi.Input<string>;
|
|
549
549
|
/**
|
|
@@ -823,7 +823,7 @@ export interface CurrentAccountState {
|
|
|
823
823
|
*/
|
|
824
824
|
packagesPolicy?: pulumi.Input<string>;
|
|
825
825
|
/**
|
|
826
|
-
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account.
|
|
826
|
+
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account. For more information about this resource, see docs.
|
|
827
827
|
*/
|
|
828
828
|
passwordPolicy?: pulumi.Input<string>;
|
|
829
829
|
/**
|
|
@@ -1037,7 +1037,7 @@ export interface CurrentAccountArgs {
|
|
|
1037
1037
|
*/
|
|
1038
1038
|
allowIdToken?: pulumi.Input<boolean>;
|
|
1039
1039
|
/**
|
|
1040
|
-
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account.
|
|
1040
|
+
* Specifies [authentication policy](https://docs.snowflake.com/en/user-guide/authentication-policies) for the current account. For more information about this resource, see docs.
|
|
1041
1041
|
*/
|
|
1042
1042
|
authenticationPolicy?: pulumi.Input<string>;
|
|
1043
1043
|
/**
|
|
@@ -1317,7 +1317,7 @@ export interface CurrentAccountArgs {
|
|
|
1317
1317
|
*/
|
|
1318
1318
|
packagesPolicy?: pulumi.Input<string>;
|
|
1319
1319
|
/**
|
|
1320
|
-
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account.
|
|
1320
|
+
* Specifies [password policy](https://docs.snowflake.com/en/user-guide/password-authentication#label-using-password-policies) for the current account. For more information about this resource, see docs.
|
|
1321
1321
|
*/
|
|
1322
1322
|
passwordPolicy?: pulumi.Input<string>;
|
|
1323
1323
|
/**
|
package/currentAccount.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Import
|
|
10
10
|
*
|
|
11
|
-
* This resource may contain a
|
|
11
|
+
* This resource may contain a any identifier, but the following format is recommended.
|
|
12
12
|
*
|
|
13
13
|
* ```sh
|
|
14
14
|
* $ pulumi import snowflake:index/currentAccount:CurrentAccount example 'current_account'
|