@pulumi/snowflake 0.61.0-alpha.1731393894 → 0.61.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/accountAuthenticationPolicyAttachment.d.ts +48 -0
- package/accountAuthenticationPolicyAttachment.js +52 -0
- package/accountAuthenticationPolicyAttachment.js.map +1 -0
- package/authenticationPolicy.d.ts +177 -0
- package/authenticationPolicy.js +84 -0
- package/authenticationPolicy.js.map +1 -0
- package/config/vars.d.ts +79 -36
- package/config/vars.js +46 -4
- package/config/vars.js.map +1 -1
- package/externalVolume.d.ts +113 -0
- package/externalVolume.js +67 -0
- package/externalVolume.js.map +1 -0
- package/getConnections.d.ts +91 -0
- package/getConnections.js +76 -0
- package/getConnections.js.map +1 -0
- package/getGrants.d.ts +4 -0
- package/getGrants.js +4 -0
- package/getGrants.js.map +1 -1
- package/getSecrets.d.ts +140 -0
- package/getSecrets.js +104 -0
- package/getSecrets.js.map +1 -0
- package/getStreams.d.ts +58 -37
- package/getStreams.js +16 -24
- package/getStreams.js.map +1 -1
- package/grantAccountRole.d.ts +1 -1
- package/grantAccountRole.js +1 -1
- package/grantApplicationRole.d.ts +1 -1
- package/grantApplicationRole.js +1 -1
- package/grantDatabaseRole.d.ts +1 -1
- package/grantDatabaseRole.js +1 -1
- package/grantOwnership.d.ts +7 -7
- package/grantOwnership.js +7 -7
- package/grantPrivilegesToAccountRole.d.ts +4 -4
- package/grantPrivilegesToAccountRole.js +4 -4
- package/grantPrivilegesToDatabaseRole.d.ts +4 -4
- package/grantPrivilegesToDatabaseRole.js +4 -4
- package/grantPrivilegesToShare.d.ts +1 -1
- package/grantPrivilegesToShare.js +1 -1
- package/index.d.ts +42 -0
- package/index.js +70 -4
- package/index.js.map +1 -1
- package/legacyServiceUser.d.ts +2 -0
- package/legacyServiceUser.js +2 -0
- package/legacyServiceUser.js.map +1 -1
- package/package.json +2 -2
- package/primaryConnection.d.ts +99 -0
- package/primaryConnection.js +66 -0
- package/primaryConnection.js.map +1 -0
- package/provider.d.ts +158 -54
- package/provider.js +11 -4
- package/provider.js.map +1 -1
- package/secondaryConnection.d.ts +105 -0
- package/secondaryConnection.js +69 -0
- package/secondaryConnection.js.map +1 -0
- package/secretWithAuthorizationCodeGrant.d.ts +152 -0
- package/secretWithAuthorizationCodeGrant.js +93 -0
- package/secretWithAuthorizationCodeGrant.js.map +1 -0
- package/secretWithBasicAuthentication.d.ts +140 -0
- package/secretWithBasicAuthentication.js +88 -0
- package/secretWithBasicAuthentication.js.map +1 -0
- package/secretWithClientCredentials.d.ts +149 -0
- package/secretWithClientCredentials.js +86 -0
- package/secretWithClientCredentials.js.map +1 -0
- package/secretWithGenericString.d.ts +128 -0
- package/secretWithGenericString.js +83 -0
- package/secretWithGenericString.js.map +1 -0
- package/streamOnDirectoryTable.d.ts +151 -0
- package/streamOnDirectoryTable.js +85 -0
- package/streamOnDirectoryTable.js.map +1 -0
- package/streamOnExternalTable.d.ts +10 -0
- package/streamOnExternalTable.js +4 -0
- package/streamOnExternalTable.js.map +1 -1
- package/streamOnTable.d.ts +10 -0
- package/streamOnTable.js +4 -0
- package/streamOnTable.js.map +1 -1
- package/streamOnView.d.ts +172 -0
- package/streamOnView.js +93 -0
- package/streamOnView.js.map +1 -0
- package/tagAssociation.d.ts +3 -3
- package/types/input.d.ts +407 -4
- package/types/output.d.ts +448 -7
- package/user.d.ts +2 -0
- package/user.js +2 -0
- package/user.js.map +1 -1
- package/userAuthenticationPolicyAttachment.d.ts +60 -0
- package/userAuthenticationPolicyAttachment.js +57 -0
- package/userAuthenticationPolicyAttachment.js.map +1 -0
|
@@ -9,25 +9,25 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
* #### Grant all privileges OnAccountObject (Database)
|
|
10
10
|
*
|
|
11
11
|
* ```sh
|
|
12
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
12
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|ALL|OnAccountObject|DATABASE|"test_db"'`
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
15
15
|
* #### Grant list of privileges OnAllSchemasInDatabase
|
|
16
16
|
*
|
|
17
17
|
* ```sh
|
|
18
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
18
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|CREATE TAG,CREATE TABLE|OnSchema|OnAllSchemasInDatabase|"test_db"'`
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
21
|
* #### Grant list of privileges on table
|
|
22
22
|
*
|
|
23
23
|
* ```sh
|
|
24
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
24
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnObject|TABLE|"test_db"."test_schema"."test_table"'`
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* #### Grant list of privileges OnAll tables in schema
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
30
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnAll|TABLES|InSchema|"test_db"."test_schema"'`
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export declare class GrantPrivilegesToAccountRole extends pulumi.CustomResource {
|
|
@@ -13,25 +13,25 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* #### Grant all privileges OnAccountObject (Database)
|
|
14
14
|
*
|
|
15
15
|
* ```sh
|
|
16
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
16
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|ALL|OnAccountObject|DATABASE|"test_db"'`
|
|
17
17
|
* ```
|
|
18
18
|
*
|
|
19
19
|
* #### Grant list of privileges OnAllSchemasInDatabase
|
|
20
20
|
*
|
|
21
21
|
* ```sh
|
|
22
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
22
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|CREATE TAG,CREATE TABLE|OnSchema|OnAllSchemasInDatabase|"test_db"'`
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
25
|
* #### Grant list of privileges on table
|
|
26
26
|
*
|
|
27
27
|
* ```sh
|
|
28
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
28
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnObject|TABLE|"test_db"."test_schema"."test_table"'`
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
31
|
* #### Grant list of privileges OnAll tables in schema
|
|
32
32
|
*
|
|
33
33
|
* ```sh
|
|
34
|
-
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole
|
|
34
|
+
* $ pulumi import snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole example '"test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnAll|TABLES|InSchema|"test_db"."test_schema"'`
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
37
|
class GrantPrivilegesToAccountRole extends pulumi.CustomResource {
|
|
@@ -9,25 +9,25 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
* #### Grant all privileges OnDatabase
|
|
10
10
|
*
|
|
11
11
|
* ```sh
|
|
12
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
12
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|ALL|OnDatabase|"test_db"'`
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
15
15
|
* #### Grant list of privileges OnAllSchemasInDatabase
|
|
16
16
|
*
|
|
17
17
|
* ```sh
|
|
18
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
18
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|CREATE TAG,CREATE TABLE|OnSchema|OnAllSchemasInDatabase|"test_db"'`
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
21
|
* #### Grant list of privileges on table
|
|
22
22
|
*
|
|
23
23
|
* ```sh
|
|
24
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
24
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnObject|TABLE|"test_db"."test_schema"."test_table"'`
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* #### Grant list of privileges OnAll tables in schema
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
30
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnAll|TABLES|InSchema|"test_db"."test_schema"'`
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export declare class GrantPrivilegesToDatabaseRole extends pulumi.CustomResource {
|
|
@@ -13,25 +13,25 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* #### Grant all privileges OnDatabase
|
|
14
14
|
*
|
|
15
15
|
* ```sh
|
|
16
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
16
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|ALL|OnDatabase|"test_db"'`
|
|
17
17
|
* ```
|
|
18
18
|
*
|
|
19
19
|
* #### Grant list of privileges OnAllSchemasInDatabase
|
|
20
20
|
*
|
|
21
21
|
* ```sh
|
|
22
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
22
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|CREATE TAG,CREATE TABLE|OnSchema|OnAllSchemasInDatabase|"test_db"'`
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
25
|
* #### Grant list of privileges on table
|
|
26
26
|
*
|
|
27
27
|
* ```sh
|
|
28
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
28
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnObject|TABLE|"test_db"."test_schema"."test_table"'`
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
31
|
* #### Grant list of privileges OnAll tables in schema
|
|
32
32
|
*
|
|
33
33
|
* ```sh
|
|
34
|
-
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole
|
|
34
|
+
* $ pulumi import snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole example '"test_db"."test_db_role"|false|false|SELECT,DELETE,INSERT|OnSchemaObject|OnAll|TABLES|InSchema|"test_db"."test_schema"'`
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
37
|
class GrantPrivilegesToDatabaseRole extends pulumi.CustomResource {
|
|
@@ -5,7 +5,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
5
5
|
* ### OnView
|
|
6
6
|
*
|
|
7
7
|
* ```sh
|
|
8
|
-
* $ pulumi import snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare <view_name>
|
|
8
|
+
* $ pulumi import snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare example '<share_name>|<privileges>|OnView|<database_name>.<schema_name>.<view_name>'`
|
|
9
9
|
* ```
|
|
10
10
|
*/
|
|
11
11
|
export declare class GrantPrivilegesToShare extends pulumi.CustomResource {
|
|
@@ -11,7 +11,7 @@ const utilities = require("./utilities");
|
|
|
11
11
|
* ### OnView
|
|
12
12
|
*
|
|
13
13
|
* ```sh
|
|
14
|
-
* $ pulumi import snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare <view_name>
|
|
14
|
+
* $ pulumi import snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare example '<share_name>|<privileges>|OnView|<database_name>.<schema_name>.<view_name>'`
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
17
17
|
class GrantPrivilegesToShare extends pulumi.CustomResource {
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export { AccountArgs, AccountState } from "./account";
|
|
2
2
|
export type Account = import("./account").Account;
|
|
3
3
|
export declare const Account: typeof import("./account").Account;
|
|
4
|
+
export { AccountAuthenticationPolicyAttachmentArgs, AccountAuthenticationPolicyAttachmentState } from "./accountAuthenticationPolicyAttachment";
|
|
5
|
+
export type AccountAuthenticationPolicyAttachment = import("./accountAuthenticationPolicyAttachment").AccountAuthenticationPolicyAttachment;
|
|
6
|
+
export declare const AccountAuthenticationPolicyAttachment: typeof import("./accountAuthenticationPolicyAttachment").AccountAuthenticationPolicyAttachment;
|
|
4
7
|
export { AccountParameterArgs, AccountParameterState } from "./accountParameter";
|
|
5
8
|
export type AccountParameter = import("./accountParameter").AccountParameter;
|
|
6
9
|
export declare const AccountParameter: typeof import("./accountParameter").AccountParameter;
|
|
@@ -25,6 +28,9 @@ export declare const ApiAuthenticationIntegrationWithJwtBearer: typeof import(".
|
|
|
25
28
|
export { ApiIntegrationArgs, ApiIntegrationState } from "./apiIntegration";
|
|
26
29
|
export type ApiIntegration = import("./apiIntegration").ApiIntegration;
|
|
27
30
|
export declare const ApiIntegration: typeof import("./apiIntegration").ApiIntegration;
|
|
31
|
+
export { AuthenticationPolicyArgs, AuthenticationPolicyState } from "./authenticationPolicy";
|
|
32
|
+
export type AuthenticationPolicy = import("./authenticationPolicy").AuthenticationPolicy;
|
|
33
|
+
export declare const AuthenticationPolicy: typeof import("./authenticationPolicy").AuthenticationPolicy;
|
|
28
34
|
export { CortexSearchServiceArgs, CortexSearchServiceState } from "./cortexSearchService";
|
|
29
35
|
export type CortexSearchService = import("./cortexSearchService").CortexSearchService;
|
|
30
36
|
export declare const CortexSearchService: typeof import("./cortexSearchService").CortexSearchService;
|
|
@@ -52,6 +58,9 @@ export declare const ExternalOauthIntegration: typeof import("./externalOauthInt
|
|
|
52
58
|
export { ExternalTableArgs, ExternalTableState } from "./externalTable";
|
|
53
59
|
export type ExternalTable = import("./externalTable").ExternalTable;
|
|
54
60
|
export declare const ExternalTable: typeof import("./externalTable").ExternalTable;
|
|
61
|
+
export { ExternalVolumeArgs, ExternalVolumeState } from "./externalVolume";
|
|
62
|
+
export type ExternalVolume = import("./externalVolume").ExternalVolume;
|
|
63
|
+
export declare const ExternalVolume: typeof import("./externalVolume").ExternalVolume;
|
|
55
64
|
export { FailoverGroupArgs, FailoverGroupState } from "./failoverGroup";
|
|
56
65
|
export type FailoverGroup = import("./failoverGroup").FailoverGroup;
|
|
57
66
|
export declare const FailoverGroup: typeof import("./failoverGroup").FailoverGroup;
|
|
@@ -67,6 +76,9 @@ export declare const getAccountsOutput: typeof import("./getAccounts").getAccoun
|
|
|
67
76
|
export { GetAlertsArgs, GetAlertsResult, GetAlertsOutputArgs } from "./getAlerts";
|
|
68
77
|
export declare const getAlerts: typeof import("./getAlerts").getAlerts;
|
|
69
78
|
export declare const getAlertsOutput: typeof import("./getAlerts").getAlertsOutput;
|
|
79
|
+
export { GetConnectionsArgs, GetConnectionsResult, GetConnectionsOutputArgs } from "./getConnections";
|
|
80
|
+
export declare const getConnections: typeof import("./getConnections").getConnections;
|
|
81
|
+
export declare const getConnectionsOutput: typeof import("./getConnections").getConnectionsOutput;
|
|
70
82
|
export { GetCortexSearchServicesArgs, GetCortexSearchServicesResult, GetCortexSearchServicesOutputArgs } from "./getCortexSearchServices";
|
|
71
83
|
export declare const getCortexSearchServices: typeof import("./getCortexSearchServices").getCortexSearchServices;
|
|
72
84
|
export declare const getCortexSearchServicesOutput: typeof import("./getCortexSearchServices").getCortexSearchServicesOutput;
|
|
@@ -142,6 +154,9 @@ export declare const getRowAccessPoliciesOutput: typeof import("./getRowAccessPo
|
|
|
142
154
|
export { GetSchemasArgs, GetSchemasResult, GetSchemasOutputArgs } from "./getSchemas";
|
|
143
155
|
export declare const getSchemas: typeof import("./getSchemas").getSchemas;
|
|
144
156
|
export declare const getSchemasOutput: typeof import("./getSchemas").getSchemasOutput;
|
|
157
|
+
export { GetSecretsArgs, GetSecretsResult, GetSecretsOutputArgs } from "./getSecrets";
|
|
158
|
+
export declare const getSecrets: typeof import("./getSecrets").getSecrets;
|
|
159
|
+
export declare const getSecretsOutput: typeof import("./getSecrets").getSecretsOutput;
|
|
145
160
|
export { GetSecurityIntegrationsArgs, GetSecurityIntegrationsResult, GetSecurityIntegrationsOutputArgs } from "./getSecurityIntegrations";
|
|
146
161
|
export declare const getSecurityIntegrations: typeof import("./getSecurityIntegrations").getSecurityIntegrations;
|
|
147
162
|
export declare const getSecurityIntegrationsOutput: typeof import("./getSecurityIntegrations").getSecurityIntegrationsOutput;
|
|
@@ -253,6 +268,9 @@ export declare const PasswordPolicy: typeof import("./passwordPolicy").PasswordP
|
|
|
253
268
|
export { PipeArgs, PipeState } from "./pipe";
|
|
254
269
|
export type Pipe = import("./pipe").Pipe;
|
|
255
270
|
export declare const Pipe: typeof import("./pipe").Pipe;
|
|
271
|
+
export { PrimaryConnectionArgs, PrimaryConnectionState } from "./primaryConnection";
|
|
272
|
+
export type PrimaryConnection = import("./primaryConnection").PrimaryConnection;
|
|
273
|
+
export declare const PrimaryConnection: typeof import("./primaryConnection").PrimaryConnection;
|
|
256
274
|
export { ProcedureArgs, ProcedureState } from "./procedure";
|
|
257
275
|
export type Procedure = import("./procedure").Procedure;
|
|
258
276
|
export declare const Procedure: typeof import("./procedure").Procedure;
|
|
@@ -280,9 +298,24 @@ export declare const Schema: typeof import("./schema").Schema;
|
|
|
280
298
|
export { ScimIntegrationArgs, ScimIntegrationState } from "./scimIntegration";
|
|
281
299
|
export type ScimIntegration = import("./scimIntegration").ScimIntegration;
|
|
282
300
|
export declare const ScimIntegration: typeof import("./scimIntegration").ScimIntegration;
|
|
301
|
+
export { SecondaryConnectionArgs, SecondaryConnectionState } from "./secondaryConnection";
|
|
302
|
+
export type SecondaryConnection = import("./secondaryConnection").SecondaryConnection;
|
|
303
|
+
export declare const SecondaryConnection: typeof import("./secondaryConnection").SecondaryConnection;
|
|
283
304
|
export { SecondaryDatabaseArgs, SecondaryDatabaseState } from "./secondaryDatabase";
|
|
284
305
|
export type SecondaryDatabase = import("./secondaryDatabase").SecondaryDatabase;
|
|
285
306
|
export declare const SecondaryDatabase: typeof import("./secondaryDatabase").SecondaryDatabase;
|
|
307
|
+
export { SecretWithAuthorizationCodeGrantArgs, SecretWithAuthorizationCodeGrantState } from "./secretWithAuthorizationCodeGrant";
|
|
308
|
+
export type SecretWithAuthorizationCodeGrant = import("./secretWithAuthorizationCodeGrant").SecretWithAuthorizationCodeGrant;
|
|
309
|
+
export declare const SecretWithAuthorizationCodeGrant: typeof import("./secretWithAuthorizationCodeGrant").SecretWithAuthorizationCodeGrant;
|
|
310
|
+
export { SecretWithBasicAuthenticationArgs, SecretWithBasicAuthenticationState } from "./secretWithBasicAuthentication";
|
|
311
|
+
export type SecretWithBasicAuthentication = import("./secretWithBasicAuthentication").SecretWithBasicAuthentication;
|
|
312
|
+
export declare const SecretWithBasicAuthentication: typeof import("./secretWithBasicAuthentication").SecretWithBasicAuthentication;
|
|
313
|
+
export { SecretWithClientCredentialsArgs, SecretWithClientCredentialsState } from "./secretWithClientCredentials";
|
|
314
|
+
export type SecretWithClientCredentials = import("./secretWithClientCredentials").SecretWithClientCredentials;
|
|
315
|
+
export declare const SecretWithClientCredentials: typeof import("./secretWithClientCredentials").SecretWithClientCredentials;
|
|
316
|
+
export { SecretWithGenericStringArgs, SecretWithGenericStringState } from "./secretWithGenericString";
|
|
317
|
+
export type SecretWithGenericString = import("./secretWithGenericString").SecretWithGenericString;
|
|
318
|
+
export declare const SecretWithGenericString: typeof import("./secretWithGenericString").SecretWithGenericString;
|
|
286
319
|
export { SequenceArgs, SequenceState } from "./sequence";
|
|
287
320
|
export type Sequence = import("./sequence").Sequence;
|
|
288
321
|
export declare const Sequence: typeof import("./sequence").Sequence;
|
|
@@ -307,12 +340,18 @@ export declare const StorageIntegration: typeof import("./storageIntegration").S
|
|
|
307
340
|
export { StreamArgs, StreamState } from "./stream";
|
|
308
341
|
export type Stream = import("./stream").Stream;
|
|
309
342
|
export declare const Stream: typeof import("./stream").Stream;
|
|
343
|
+
export { StreamOnDirectoryTableArgs, StreamOnDirectoryTableState } from "./streamOnDirectoryTable";
|
|
344
|
+
export type StreamOnDirectoryTable = import("./streamOnDirectoryTable").StreamOnDirectoryTable;
|
|
345
|
+
export declare const StreamOnDirectoryTable: typeof import("./streamOnDirectoryTable").StreamOnDirectoryTable;
|
|
310
346
|
export { StreamOnExternalTableArgs, StreamOnExternalTableState } from "./streamOnExternalTable";
|
|
311
347
|
export type StreamOnExternalTable = import("./streamOnExternalTable").StreamOnExternalTable;
|
|
312
348
|
export declare const StreamOnExternalTable: typeof import("./streamOnExternalTable").StreamOnExternalTable;
|
|
313
349
|
export { StreamOnTableArgs, StreamOnTableState } from "./streamOnTable";
|
|
314
350
|
export type StreamOnTable = import("./streamOnTable").StreamOnTable;
|
|
315
351
|
export declare const StreamOnTable: typeof import("./streamOnTable").StreamOnTable;
|
|
352
|
+
export { StreamOnViewArgs, StreamOnViewState } from "./streamOnView";
|
|
353
|
+
export type StreamOnView = import("./streamOnView").StreamOnView;
|
|
354
|
+
export declare const StreamOnView: typeof import("./streamOnView").StreamOnView;
|
|
316
355
|
export { StreamlitArgs, StreamlitState } from "./streamlit";
|
|
317
356
|
export type Streamlit = import("./streamlit").Streamlit;
|
|
318
357
|
export declare const Streamlit: typeof import("./streamlit").Streamlit;
|
|
@@ -343,6 +382,9 @@ export declare const UnsafeExecute: typeof import("./unsafeExecute").UnsafeExecu
|
|
|
343
382
|
export { UserArgs, UserState } from "./user";
|
|
344
383
|
export type User = import("./user").User;
|
|
345
384
|
export declare const User: typeof import("./user").User;
|
|
385
|
+
export { UserAuthenticationPolicyAttachmentArgs, UserAuthenticationPolicyAttachmentState } from "./userAuthenticationPolicyAttachment";
|
|
386
|
+
export type UserAuthenticationPolicyAttachment = import("./userAuthenticationPolicyAttachment").UserAuthenticationPolicyAttachment;
|
|
387
|
+
export declare const UserAuthenticationPolicyAttachment: typeof import("./userAuthenticationPolicyAttachment").UserAuthenticationPolicyAttachment;
|
|
346
388
|
export { UserPasswordPolicyAttachmentArgs, UserPasswordPolicyAttachmentState } from "./userPasswordPolicyAttachment";
|
|
347
389
|
export type UserPasswordPolicyAttachment = import("./userPasswordPolicyAttachment").UserPasswordPolicyAttachment;
|
|
348
390
|
export declare const UserPasswordPolicyAttachment: typeof import("./userPasswordPolicyAttachment").UserPasswordPolicyAttachment;
|
package/index.js
CHANGED
|
@@ -2,14 +2,16 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.types = exports.config = exports.Warehouse = exports.View = exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.User = exports.UnsafeExecute = exports.Task = exports.TagMaskingPolicyAssociation = exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = void 0;
|
|
5
|
+
exports.getExternalTablesOutput = exports.getExternalTables = exports.getExternalFunctionsOutput = exports.getExternalFunctions = exports.getDynamicTablesOutput = exports.getDynamicTables = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseRolesOutput = exports.getDatabaseRoles = exports.getDatabaseRoleOutput = exports.getDatabaseRole = exports.getDatabaseOutput = exports.getDatabase = exports.getCurrentRoleOutput = exports.getCurrentRole = exports.getCurrentAccountOutput = exports.getCurrentAccount = exports.getCortexSearchServicesOutput = exports.getCortexSearchServices = exports.getConnectionsOutput = exports.getConnections = exports.getAlertsOutput = exports.getAlerts = exports.getAccountsOutput = exports.getAccounts = exports.Function = exports.FileFormat = exports.FailoverGroup = exports.ExternalVolume = exports.ExternalTable = exports.ExternalOauthIntegration = exports.ExternalFunction = exports.EmailNotificationIntegration = exports.DynamicTable = exports.DatabaseRole = exports.DatabaseOld = exports.Database = exports.CortexSearchService = exports.AuthenticationPolicy = exports.ApiIntegration = exports.ApiAuthenticationIntegrationWithJwtBearer = exports.ApiAuthenticationIntegrationWithClientCredentials = exports.ApiAuthenticationIntegrationWithAuthorizationCodeGrant = exports.Alert = exports.AccountRole = exports.AccountPasswordPolicyAttachment = exports.AccountParameter = exports.AccountAuthenticationPolicyAttachment = exports.Account = void 0;
|
|
6
|
+
exports.getSystemGetAwsSnsIamPolicyOutput = exports.getSystemGetAwsSnsIamPolicy = exports.getSystemGenerateScimAccessTokenOutput = exports.getSystemGenerateScimAccessToken = exports.getStreamsOutput = exports.getStreams = exports.getStreamlitsOutput = exports.getStreamlits = exports.getStorageIntegrationsOutput = exports.getStorageIntegrations = exports.getStagesOutput = exports.getStages = exports.getSharesOutput = exports.getShares = exports.getSequencesOutput = exports.getSequences = exports.getSecurityIntegrationsOutput = exports.getSecurityIntegrations = exports.getSecretsOutput = exports.getSecrets = exports.getSchemasOutput = exports.getSchemas = exports.getRowAccessPoliciesOutput = exports.getRowAccessPolicies = exports.getRolesOutput = exports.getRoles = exports.getRoleOutput = exports.getRole = exports.getResourceMonitorsOutput = exports.getResourceMonitors = exports.getProceduresOutput = exports.getProcedures = exports.getPipesOutput = exports.getPipes = exports.getParametersOutput = exports.getParameters = exports.getNetworkPoliciesOutput = exports.getNetworkPolicies = exports.getMaterializedViewsOutput = exports.getMaterializedViews = exports.getMaskingPoliciesOutput = exports.getMaskingPolicies = exports.getGrantsOutput = exports.getGrants = exports.getFunctionsOutput = exports.getFunctions = exports.getFileFormatsOutput = exports.getFileFormats = exports.getFailoverGroupsOutput = exports.getFailoverGroups = void 0;
|
|
7
|
+
exports.SecretWithClientCredentials = exports.SecretWithBasicAuthentication = exports.SecretWithAuthorizationCodeGrant = exports.SecondaryDatabase = exports.SecondaryConnection = exports.ScimIntegration = exports.Schema = exports.SamlIntegration = exports.Saml2Integration = exports.RowAccessPolicy = exports.Role = exports.ResourceMonitor = exports.Provider = exports.Procedure = exports.PrimaryConnection = exports.Pipe = exports.PasswordPolicy = exports.ObjectParameter = exports.OauthIntegrationForPartnerApplications = exports.OauthIntegrationForCustomClients = exports.OauthIntegration = exports.NotificationIntegration = exports.NetworkRule = exports.NetworkPolicyAttachment = exports.NetworkPolicy = exports.MaterializedView = exports.MaskingPolicy = exports.ManagedAccount = exports.LegacyServiceUser = exports.GrantPrivilegesToShare = exports.GrantPrivilegesToDatabaseRole = exports.GrantPrivilegesToAccountRole = exports.GrantOwnership = exports.GrantDatabaseRole = exports.GrantApplicationRole = exports.GrantAccountRole = exports.getWarehousesOutput = exports.getWarehouses = exports.getViewsOutput = exports.getViews = exports.getUsersOutput = exports.getUsers = exports.getTasksOutput = exports.getTasks = exports.getTablesOutput = exports.getTables = exports.getSystemGetSnowflakePlatformInfoOutput = exports.getSystemGetSnowflakePlatformInfo = exports.getSystemGetPrivateLinkConfigOutput = exports.getSystemGetPrivateLinkConfig = void 0;
|
|
8
|
+
exports.types = exports.config = exports.Warehouse = exports.View = exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.UserAuthenticationPolicyAttachment = exports.User = exports.UnsafeExecute = exports.Task = exports.TagMaskingPolicyAssociation = exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = exports.Table = exports.Streamlit = exports.StreamOnView = exports.StreamOnTable = exports.StreamOnExternalTable = exports.StreamOnDirectoryTable = exports.Stream = exports.StorageIntegration = exports.Stage = exports.SharedDatabase = exports.Share = exports.SessionParameter = exports.ServiceUser = exports.Sequence = exports.SecretWithGenericString = void 0;
|
|
9
9
|
const pulumi = require("@pulumi/pulumi");
|
|
10
10
|
const utilities = require("./utilities");
|
|
11
11
|
exports.Account = null;
|
|
12
12
|
utilities.lazyLoad(exports, ["Account"], () => require("./account"));
|
|
13
|
+
exports.AccountAuthenticationPolicyAttachment = null;
|
|
14
|
+
utilities.lazyLoad(exports, ["AccountAuthenticationPolicyAttachment"], () => require("./accountAuthenticationPolicyAttachment"));
|
|
13
15
|
exports.AccountParameter = null;
|
|
14
16
|
utilities.lazyLoad(exports, ["AccountParameter"], () => require("./accountParameter"));
|
|
15
17
|
exports.AccountPasswordPolicyAttachment = null;
|
|
@@ -26,6 +28,8 @@ exports.ApiAuthenticationIntegrationWithJwtBearer = null;
|
|
|
26
28
|
utilities.lazyLoad(exports, ["ApiAuthenticationIntegrationWithJwtBearer"], () => require("./apiAuthenticationIntegrationWithJwtBearer"));
|
|
27
29
|
exports.ApiIntegration = null;
|
|
28
30
|
utilities.lazyLoad(exports, ["ApiIntegration"], () => require("./apiIntegration"));
|
|
31
|
+
exports.AuthenticationPolicy = null;
|
|
32
|
+
utilities.lazyLoad(exports, ["AuthenticationPolicy"], () => require("./authenticationPolicy"));
|
|
29
33
|
exports.CortexSearchService = null;
|
|
30
34
|
utilities.lazyLoad(exports, ["CortexSearchService"], () => require("./cortexSearchService"));
|
|
31
35
|
exports.Database = null;
|
|
@@ -44,6 +48,8 @@ exports.ExternalOauthIntegration = null;
|
|
|
44
48
|
utilities.lazyLoad(exports, ["ExternalOauthIntegration"], () => require("./externalOauthIntegration"));
|
|
45
49
|
exports.ExternalTable = null;
|
|
46
50
|
utilities.lazyLoad(exports, ["ExternalTable"], () => require("./externalTable"));
|
|
51
|
+
exports.ExternalVolume = null;
|
|
52
|
+
utilities.lazyLoad(exports, ["ExternalVolume"], () => require("./externalVolume"));
|
|
47
53
|
exports.FailoverGroup = null;
|
|
48
54
|
utilities.lazyLoad(exports, ["FailoverGroup"], () => require("./failoverGroup"));
|
|
49
55
|
exports.FileFormat = null;
|
|
@@ -56,6 +62,9 @@ utilities.lazyLoad(exports, ["getAccounts", "getAccountsOutput"], () => require(
|
|
|
56
62
|
exports.getAlerts = null;
|
|
57
63
|
exports.getAlertsOutput = null;
|
|
58
64
|
utilities.lazyLoad(exports, ["getAlerts", "getAlertsOutput"], () => require("./getAlerts"));
|
|
65
|
+
exports.getConnections = null;
|
|
66
|
+
exports.getConnectionsOutput = null;
|
|
67
|
+
utilities.lazyLoad(exports, ["getConnections", "getConnectionsOutput"], () => require("./getConnections"));
|
|
59
68
|
exports.getCortexSearchServices = null;
|
|
60
69
|
exports.getCortexSearchServicesOutput = null;
|
|
61
70
|
utilities.lazyLoad(exports, ["getCortexSearchServices", "getCortexSearchServicesOutput"], () => require("./getCortexSearchServices"));
|
|
@@ -131,6 +140,9 @@ utilities.lazyLoad(exports, ["getRowAccessPolicies", "getRowAccessPoliciesOutput
|
|
|
131
140
|
exports.getSchemas = null;
|
|
132
141
|
exports.getSchemasOutput = null;
|
|
133
142
|
utilities.lazyLoad(exports, ["getSchemas", "getSchemasOutput"], () => require("./getSchemas"));
|
|
143
|
+
exports.getSecrets = null;
|
|
144
|
+
exports.getSecretsOutput = null;
|
|
145
|
+
utilities.lazyLoad(exports, ["getSecrets", "getSecretsOutput"], () => require("./getSecrets"));
|
|
134
146
|
exports.getSecurityIntegrations = null;
|
|
135
147
|
exports.getSecurityIntegrationsOutput = null;
|
|
136
148
|
utilities.lazyLoad(exports, ["getSecurityIntegrations", "getSecurityIntegrationsOutput"], () => require("./getSecurityIntegrations"));
|
|
@@ -221,6 +233,8 @@ exports.PasswordPolicy = null;
|
|
|
221
233
|
utilities.lazyLoad(exports, ["PasswordPolicy"], () => require("./passwordPolicy"));
|
|
222
234
|
exports.Pipe = null;
|
|
223
235
|
utilities.lazyLoad(exports, ["Pipe"], () => require("./pipe"));
|
|
236
|
+
exports.PrimaryConnection = null;
|
|
237
|
+
utilities.lazyLoad(exports, ["PrimaryConnection"], () => require("./primaryConnection"));
|
|
224
238
|
exports.Procedure = null;
|
|
225
239
|
utilities.lazyLoad(exports, ["Procedure"], () => require("./procedure"));
|
|
226
240
|
exports.Provider = null;
|
|
@@ -239,8 +253,18 @@ exports.Schema = null;
|
|
|
239
253
|
utilities.lazyLoad(exports, ["Schema"], () => require("./schema"));
|
|
240
254
|
exports.ScimIntegration = null;
|
|
241
255
|
utilities.lazyLoad(exports, ["ScimIntegration"], () => require("./scimIntegration"));
|
|
256
|
+
exports.SecondaryConnection = null;
|
|
257
|
+
utilities.lazyLoad(exports, ["SecondaryConnection"], () => require("./secondaryConnection"));
|
|
242
258
|
exports.SecondaryDatabase = null;
|
|
243
259
|
utilities.lazyLoad(exports, ["SecondaryDatabase"], () => require("./secondaryDatabase"));
|
|
260
|
+
exports.SecretWithAuthorizationCodeGrant = null;
|
|
261
|
+
utilities.lazyLoad(exports, ["SecretWithAuthorizationCodeGrant"], () => require("./secretWithAuthorizationCodeGrant"));
|
|
262
|
+
exports.SecretWithBasicAuthentication = null;
|
|
263
|
+
utilities.lazyLoad(exports, ["SecretWithBasicAuthentication"], () => require("./secretWithBasicAuthentication"));
|
|
264
|
+
exports.SecretWithClientCredentials = null;
|
|
265
|
+
utilities.lazyLoad(exports, ["SecretWithClientCredentials"], () => require("./secretWithClientCredentials"));
|
|
266
|
+
exports.SecretWithGenericString = null;
|
|
267
|
+
utilities.lazyLoad(exports, ["SecretWithGenericString"], () => require("./secretWithGenericString"));
|
|
244
268
|
exports.Sequence = null;
|
|
245
269
|
utilities.lazyLoad(exports, ["Sequence"], () => require("./sequence"));
|
|
246
270
|
exports.ServiceUser = null;
|
|
@@ -257,10 +281,14 @@ exports.StorageIntegration = null;
|
|
|
257
281
|
utilities.lazyLoad(exports, ["StorageIntegration"], () => require("./storageIntegration"));
|
|
258
282
|
exports.Stream = null;
|
|
259
283
|
utilities.lazyLoad(exports, ["Stream"], () => require("./stream"));
|
|
284
|
+
exports.StreamOnDirectoryTable = null;
|
|
285
|
+
utilities.lazyLoad(exports, ["StreamOnDirectoryTable"], () => require("./streamOnDirectoryTable"));
|
|
260
286
|
exports.StreamOnExternalTable = null;
|
|
261
287
|
utilities.lazyLoad(exports, ["StreamOnExternalTable"], () => require("./streamOnExternalTable"));
|
|
262
288
|
exports.StreamOnTable = null;
|
|
263
289
|
utilities.lazyLoad(exports, ["StreamOnTable"], () => require("./streamOnTable"));
|
|
290
|
+
exports.StreamOnView = null;
|
|
291
|
+
utilities.lazyLoad(exports, ["StreamOnView"], () => require("./streamOnView"));
|
|
264
292
|
exports.Streamlit = null;
|
|
265
293
|
utilities.lazyLoad(exports, ["Streamlit"], () => require("./streamlit"));
|
|
266
294
|
exports.Table = null;
|
|
@@ -281,6 +309,8 @@ exports.UnsafeExecute = null;
|
|
|
281
309
|
utilities.lazyLoad(exports, ["UnsafeExecute"], () => require("./unsafeExecute"));
|
|
282
310
|
exports.User = null;
|
|
283
311
|
utilities.lazyLoad(exports, ["User"], () => require("./user"));
|
|
312
|
+
exports.UserAuthenticationPolicyAttachment = null;
|
|
313
|
+
utilities.lazyLoad(exports, ["UserAuthenticationPolicyAttachment"], () => require("./userAuthenticationPolicyAttachment"));
|
|
284
314
|
exports.UserPasswordPolicyAttachment = null;
|
|
285
315
|
utilities.lazyLoad(exports, ["UserPasswordPolicyAttachment"], () => require("./userPasswordPolicyAttachment"));
|
|
286
316
|
exports.UserPublicKeys = null;
|
|
@@ -300,6 +330,8 @@ const _module = {
|
|
|
300
330
|
switch (type) {
|
|
301
331
|
case "snowflake:index/account:Account":
|
|
302
332
|
return new exports.Account(name, undefined, { urn });
|
|
333
|
+
case "snowflake:index/accountAuthenticationPolicyAttachment:AccountAuthenticationPolicyAttachment":
|
|
334
|
+
return new exports.AccountAuthenticationPolicyAttachment(name, undefined, { urn });
|
|
303
335
|
case "snowflake:index/accountParameter:AccountParameter":
|
|
304
336
|
return new exports.AccountParameter(name, undefined, { urn });
|
|
305
337
|
case "snowflake:index/accountPasswordPolicyAttachment:AccountPasswordPolicyAttachment":
|
|
@@ -316,6 +348,8 @@ const _module = {
|
|
|
316
348
|
return new exports.ApiAuthenticationIntegrationWithJwtBearer(name, undefined, { urn });
|
|
317
349
|
case "snowflake:index/apiIntegration:ApiIntegration":
|
|
318
350
|
return new exports.ApiIntegration(name, undefined, { urn });
|
|
351
|
+
case "snowflake:index/authenticationPolicy:AuthenticationPolicy":
|
|
352
|
+
return new exports.AuthenticationPolicy(name, undefined, { urn });
|
|
319
353
|
case "snowflake:index/cortexSearchService:CortexSearchService":
|
|
320
354
|
return new exports.CortexSearchService(name, undefined, { urn });
|
|
321
355
|
case "snowflake:index/database:Database":
|
|
@@ -334,6 +368,8 @@ const _module = {
|
|
|
334
368
|
return new exports.ExternalOauthIntegration(name, undefined, { urn });
|
|
335
369
|
case "snowflake:index/externalTable:ExternalTable":
|
|
336
370
|
return new exports.ExternalTable(name, undefined, { urn });
|
|
371
|
+
case "snowflake:index/externalVolume:ExternalVolume":
|
|
372
|
+
return new exports.ExternalVolume(name, undefined, { urn });
|
|
337
373
|
case "snowflake:index/failoverGroup:FailoverGroup":
|
|
338
374
|
return new exports.FailoverGroup(name, undefined, { urn });
|
|
339
375
|
case "snowflake:index/fileFormat:FileFormat":
|
|
@@ -382,6 +418,8 @@ const _module = {
|
|
|
382
418
|
return new exports.PasswordPolicy(name, undefined, { urn });
|
|
383
419
|
case "snowflake:index/pipe:Pipe":
|
|
384
420
|
return new exports.Pipe(name, undefined, { urn });
|
|
421
|
+
case "snowflake:index/primaryConnection:PrimaryConnection":
|
|
422
|
+
return new exports.PrimaryConnection(name, undefined, { urn });
|
|
385
423
|
case "snowflake:index/procedure:Procedure":
|
|
386
424
|
return new exports.Procedure(name, undefined, { urn });
|
|
387
425
|
case "snowflake:index/resourceMonitor:ResourceMonitor":
|
|
@@ -398,8 +436,18 @@ const _module = {
|
|
|
398
436
|
return new exports.Schema(name, undefined, { urn });
|
|
399
437
|
case "snowflake:index/scimIntegration:ScimIntegration":
|
|
400
438
|
return new exports.ScimIntegration(name, undefined, { urn });
|
|
439
|
+
case "snowflake:index/secondaryConnection:SecondaryConnection":
|
|
440
|
+
return new exports.SecondaryConnection(name, undefined, { urn });
|
|
401
441
|
case "snowflake:index/secondaryDatabase:SecondaryDatabase":
|
|
402
442
|
return new exports.SecondaryDatabase(name, undefined, { urn });
|
|
443
|
+
case "snowflake:index/secretWithAuthorizationCodeGrant:SecretWithAuthorizationCodeGrant":
|
|
444
|
+
return new exports.SecretWithAuthorizationCodeGrant(name, undefined, { urn });
|
|
445
|
+
case "snowflake:index/secretWithBasicAuthentication:SecretWithBasicAuthentication":
|
|
446
|
+
return new exports.SecretWithBasicAuthentication(name, undefined, { urn });
|
|
447
|
+
case "snowflake:index/secretWithClientCredentials:SecretWithClientCredentials":
|
|
448
|
+
return new exports.SecretWithClientCredentials(name, undefined, { urn });
|
|
449
|
+
case "snowflake:index/secretWithGenericString:SecretWithGenericString":
|
|
450
|
+
return new exports.SecretWithGenericString(name, undefined, { urn });
|
|
403
451
|
case "snowflake:index/sequence:Sequence":
|
|
404
452
|
return new exports.Sequence(name, undefined, { urn });
|
|
405
453
|
case "snowflake:index/serviceUser:ServiceUser":
|
|
@@ -416,10 +464,14 @@ const _module = {
|
|
|
416
464
|
return new exports.StorageIntegration(name, undefined, { urn });
|
|
417
465
|
case "snowflake:index/stream:Stream":
|
|
418
466
|
return new exports.Stream(name, undefined, { urn });
|
|
467
|
+
case "snowflake:index/streamOnDirectoryTable:StreamOnDirectoryTable":
|
|
468
|
+
return new exports.StreamOnDirectoryTable(name, undefined, { urn });
|
|
419
469
|
case "snowflake:index/streamOnExternalTable:StreamOnExternalTable":
|
|
420
470
|
return new exports.StreamOnExternalTable(name, undefined, { urn });
|
|
421
471
|
case "snowflake:index/streamOnTable:StreamOnTable":
|
|
422
472
|
return new exports.StreamOnTable(name, undefined, { urn });
|
|
473
|
+
case "snowflake:index/streamOnView:StreamOnView":
|
|
474
|
+
return new exports.StreamOnView(name, undefined, { urn });
|
|
423
475
|
case "snowflake:index/streamlit:Streamlit":
|
|
424
476
|
return new exports.Streamlit(name, undefined, { urn });
|
|
425
477
|
case "snowflake:index/table:Table":
|
|
@@ -440,6 +492,8 @@ const _module = {
|
|
|
440
492
|
return new exports.UnsafeExecute(name, undefined, { urn });
|
|
441
493
|
case "snowflake:index/user:User":
|
|
442
494
|
return new exports.User(name, undefined, { urn });
|
|
495
|
+
case "snowflake:index/userAuthenticationPolicyAttachment:UserAuthenticationPolicyAttachment":
|
|
496
|
+
return new exports.UserAuthenticationPolicyAttachment(name, undefined, { urn });
|
|
443
497
|
case "snowflake:index/userPasswordPolicyAttachment:UserPasswordPolicyAttachment":
|
|
444
498
|
return new exports.UserPasswordPolicyAttachment(name, undefined, { urn });
|
|
445
499
|
case "snowflake:index/userPublicKeys:UserPublicKeys":
|
|
@@ -454,6 +508,7 @@ const _module = {
|
|
|
454
508
|
},
|
|
455
509
|
};
|
|
456
510
|
pulumi.runtime.registerResourceModule("snowflake", "index/account", _module);
|
|
511
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/accountAuthenticationPolicyAttachment", _module);
|
|
457
512
|
pulumi.runtime.registerResourceModule("snowflake", "index/accountParameter", _module);
|
|
458
513
|
pulumi.runtime.registerResourceModule("snowflake", "index/accountPasswordPolicyAttachment", _module);
|
|
459
514
|
pulumi.runtime.registerResourceModule("snowflake", "index/accountRole", _module);
|
|
@@ -462,6 +517,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationInteg
|
|
|
462
517
|
pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationIntegrationWithClientCredentials", _module);
|
|
463
518
|
pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationIntegrationWithJwtBearer", _module);
|
|
464
519
|
pulumi.runtime.registerResourceModule("snowflake", "index/apiIntegration", _module);
|
|
520
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/authenticationPolicy", _module);
|
|
465
521
|
pulumi.runtime.registerResourceModule("snowflake", "index/cortexSearchService", _module);
|
|
466
522
|
pulumi.runtime.registerResourceModule("snowflake", "index/database", _module);
|
|
467
523
|
pulumi.runtime.registerResourceModule("snowflake", "index/databaseOld", _module);
|
|
@@ -471,6 +527,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/emailNotificationInteg
|
|
|
471
527
|
pulumi.runtime.registerResourceModule("snowflake", "index/externalFunction", _module);
|
|
472
528
|
pulumi.runtime.registerResourceModule("snowflake", "index/externalOauthIntegration", _module);
|
|
473
529
|
pulumi.runtime.registerResourceModule("snowflake", "index/externalTable", _module);
|
|
530
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/externalVolume", _module);
|
|
474
531
|
pulumi.runtime.registerResourceModule("snowflake", "index/failoverGroup", _module);
|
|
475
532
|
pulumi.runtime.registerResourceModule("snowflake", "index/fileFormat", _module);
|
|
476
533
|
pulumi.runtime.registerResourceModule("snowflake", "index/function", _module);
|
|
@@ -495,6 +552,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/oauthIntegrationForPar
|
|
|
495
552
|
pulumi.runtime.registerResourceModule("snowflake", "index/objectParameter", _module);
|
|
496
553
|
pulumi.runtime.registerResourceModule("snowflake", "index/passwordPolicy", _module);
|
|
497
554
|
pulumi.runtime.registerResourceModule("snowflake", "index/pipe", _module);
|
|
555
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/primaryConnection", _module);
|
|
498
556
|
pulumi.runtime.registerResourceModule("snowflake", "index/procedure", _module);
|
|
499
557
|
pulumi.runtime.registerResourceModule("snowflake", "index/resourceMonitor", _module);
|
|
500
558
|
pulumi.runtime.registerResourceModule("snowflake", "index/role", _module);
|
|
@@ -503,7 +561,12 @@ pulumi.runtime.registerResourceModule("snowflake", "index/saml2Integration", _mo
|
|
|
503
561
|
pulumi.runtime.registerResourceModule("snowflake", "index/samlIntegration", _module);
|
|
504
562
|
pulumi.runtime.registerResourceModule("snowflake", "index/schema", _module);
|
|
505
563
|
pulumi.runtime.registerResourceModule("snowflake", "index/scimIntegration", _module);
|
|
564
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/secondaryConnection", _module);
|
|
506
565
|
pulumi.runtime.registerResourceModule("snowflake", "index/secondaryDatabase", _module);
|
|
566
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithAuthorizationCodeGrant", _module);
|
|
567
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithBasicAuthentication", _module);
|
|
568
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithClientCredentials", _module);
|
|
569
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithGenericString", _module);
|
|
507
570
|
pulumi.runtime.registerResourceModule("snowflake", "index/sequence", _module);
|
|
508
571
|
pulumi.runtime.registerResourceModule("snowflake", "index/serviceUser", _module);
|
|
509
572
|
pulumi.runtime.registerResourceModule("snowflake", "index/sessionParameter", _module);
|
|
@@ -512,8 +575,10 @@ pulumi.runtime.registerResourceModule("snowflake", "index/sharedDatabase", _modu
|
|
|
512
575
|
pulumi.runtime.registerResourceModule("snowflake", "index/stage", _module);
|
|
513
576
|
pulumi.runtime.registerResourceModule("snowflake", "index/storageIntegration", _module);
|
|
514
577
|
pulumi.runtime.registerResourceModule("snowflake", "index/stream", _module);
|
|
578
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/streamOnDirectoryTable", _module);
|
|
515
579
|
pulumi.runtime.registerResourceModule("snowflake", "index/streamOnExternalTable", _module);
|
|
516
580
|
pulumi.runtime.registerResourceModule("snowflake", "index/streamOnTable", _module);
|
|
581
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/streamOnView", _module);
|
|
517
582
|
pulumi.runtime.registerResourceModule("snowflake", "index/streamlit", _module);
|
|
518
583
|
pulumi.runtime.registerResourceModule("snowflake", "index/table", _module);
|
|
519
584
|
pulumi.runtime.registerResourceModule("snowflake", "index/tableColumnMaskingPolicyApplication", _module);
|
|
@@ -524,6 +589,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/tagMaskingPolicyAssoci
|
|
|
524
589
|
pulumi.runtime.registerResourceModule("snowflake", "index/task", _module);
|
|
525
590
|
pulumi.runtime.registerResourceModule("snowflake", "index/unsafeExecute", _module);
|
|
526
591
|
pulumi.runtime.registerResourceModule("snowflake", "index/user", _module);
|
|
592
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/userAuthenticationPolicyAttachment", _module);
|
|
527
593
|
pulumi.runtime.registerResourceModule("snowflake", "index/userPasswordPolicyAttachment", _module);
|
|
528
594
|
pulumi.runtime.registerResourceModule("snowflake", "index/userPublicKeys", _module);
|
|
529
595
|
pulumi.runtime.registerResourceModule("snowflake", "index/view", _module);
|