@pulumi/snowflake 2.1.0-alpha.1750230214 → 2.1.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/account.d.ts +12 -0
- package/account.js +2 -0
- package/account.js.map +1 -1
- package/computePool.d.ts +177 -0
- package/computePool.js +87 -0
- package/computePool.js.map +1 -0
- package/config/vars.d.ts +4 -2
- package/config/vars.js.map +1 -1
- package/cortexSearchService.d.ts +22 -0
- package/cortexSearchService.js +4 -0
- package/cortexSearchService.js.map +1 -1
- package/currentAccount.d.ts +1512 -0
- package/currentAccount.js +302 -0
- package/currentAccount.js.map +1 -0
- package/database.d.ts +3 -3
- package/getComputePools.d.ts +86 -0
- package/getComputePools.js +40 -0
- package/getComputePools.js.map +1 -0
- package/getCortexSearchServices.d.ts +3 -3
- package/getDatabaseRoles.d.ts +3 -3
- package/getDatabases.d.ts +3 -3
- package/getGitRepositories.d.ts +86 -0
- package/getGitRepositories.js +40 -0
- package/getGitRepositories.js.map +1 -0
- package/getImageRepositories.d.ts +62 -0
- package/getImageRepositories.js +36 -0
- package/getImageRepositories.js.map +1 -0
- package/getMaskingPolicies.d.ts +3 -3
- package/getRowAccessPolicies.d.ts +3 -3
- package/getSchemas.d.ts +3 -3
- package/getServices.d.ts +110 -0
- package/getServices.js +44 -0
- package/getServices.js.map +1 -0
- package/getStreamlits.d.ts +3 -3
- package/getStreams.d.ts +3 -3
- package/getTables.d.ts +56 -43
- package/getTables.js +14 -30
- package/getTables.js.map +1 -1
- package/getTasks.d.ts +3 -3
- package/getUsers.d.ts +3 -3
- package/getViews.d.ts +3 -3
- package/gitRepository.d.ts +153 -0
- package/gitRepository.js +86 -0
- package/gitRepository.js.map +1 -0
- package/imageRepository.d.ts +109 -0
- package/imageRepository.js +72 -0
- package/imageRepository.js.map +1 -0
- package/index.d.ts +30 -0
- package/index.js +46 -4
- package/index.js.map +1 -1
- package/jobService.d.ts +185 -0
- package/jobService.js +89 -0
- package/jobService.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +8 -4
- package/provider.js.map +1 -1
- package/schema.d.ts +3 -3
- package/secondaryDatabase.d.ts +3 -3
- package/service.d.ts +245 -0
- package/service.js +99 -0
- package/service.js.map +1 -0
- package/sharedDatabase.d.ts +3 -3
- package/tagAssociation.d.ts +3 -3
- package/types/input.d.ts +540 -2
- package/types/output.d.ts +655 -4
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Import
|
|
6
|
+
*
|
|
7
|
+
* ```sh
|
|
8
|
+
* $ pulumi import snowflake:index/imageRepository:ImageRepository example '"<database_name>"."<schema_name>"."<image_repository_name>"'
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export declare class ImageRepository extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing ImageRepository resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param state Any extra arguments used during the lookup.
|
|
19
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
+
*/
|
|
21
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ImageRepositoryState, opts?: pulumi.CustomResourceOptions): ImageRepository;
|
|
22
|
+
/**
|
|
23
|
+
* Returns true if the given object is an instance of ImageRepository. This is designed to work even
|
|
24
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
25
|
+
*/
|
|
26
|
+
static isInstance(obj: any): obj is ImageRepository;
|
|
27
|
+
/**
|
|
28
|
+
* Specifies a comment for the object.
|
|
29
|
+
*/
|
|
30
|
+
readonly comment: pulumi.Output<string | undefined>;
|
|
31
|
+
/**
|
|
32
|
+
* The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
33
|
+
*/
|
|
34
|
+
readonly database: pulumi.Output<string>;
|
|
35
|
+
/**
|
|
36
|
+
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
37
|
+
*/
|
|
38
|
+
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
41
|
+
*/
|
|
42
|
+
readonly name: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
45
|
+
*/
|
|
46
|
+
readonly schema: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Outputs the result of `SHOW IMAGE REPOSITORIES` for the given image repository.
|
|
49
|
+
*/
|
|
50
|
+
readonly showOutputs: pulumi.Output<outputs.ImageRepositoryShowOutput[]>;
|
|
51
|
+
/**
|
|
52
|
+
* Create a ImageRepository resource with the given unique name, arguments, and options.
|
|
53
|
+
*
|
|
54
|
+
* @param name The _unique_ name of the resource.
|
|
55
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
56
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
57
|
+
*/
|
|
58
|
+
constructor(name: string, args: ImageRepositoryArgs, opts?: pulumi.CustomResourceOptions);
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Input properties used for looking up and filtering ImageRepository resources.
|
|
62
|
+
*/
|
|
63
|
+
export interface ImageRepositoryState {
|
|
64
|
+
/**
|
|
65
|
+
* Specifies a comment for the object.
|
|
66
|
+
*/
|
|
67
|
+
comment?: pulumi.Input<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
70
|
+
*/
|
|
71
|
+
database?: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
74
|
+
*/
|
|
75
|
+
fullyQualifiedName?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
78
|
+
*/
|
|
79
|
+
name?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
82
|
+
*/
|
|
83
|
+
schema?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* Outputs the result of `SHOW IMAGE REPOSITORIES` for the given image repository.
|
|
86
|
+
*/
|
|
87
|
+
showOutputs?: pulumi.Input<pulumi.Input<inputs.ImageRepositoryShowOutput>[]>;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* The set of arguments for constructing a ImageRepository resource.
|
|
91
|
+
*/
|
|
92
|
+
export interface ImageRepositoryArgs {
|
|
93
|
+
/**
|
|
94
|
+
* Specifies a comment for the object.
|
|
95
|
+
*/
|
|
96
|
+
comment?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* The database in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
99
|
+
*/
|
|
100
|
+
database: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Specifies the identifier for the image repository; must be unique for the schema in which the image repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
103
|
+
*/
|
|
104
|
+
name?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The schema in which to create the image repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
107
|
+
*/
|
|
108
|
+
schema: pulumi.Input<string>;
|
|
109
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ImageRepository = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import snowflake:index/imageRepository:ImageRepository example '"<database_name>"."<schema_name>"."<image_repository_name>"'
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
class ImageRepository extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing ImageRepository resource's state with the given name, ID, and optional extra
|
|
18
|
+
* properties used to qualify the lookup.
|
|
19
|
+
*
|
|
20
|
+
* @param name The _unique_ name of the resulting resource.
|
|
21
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
22
|
+
* @param state Any extra arguments used during the lookup.
|
|
23
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
|
+
*/
|
|
25
|
+
static get(name, id, state, opts) {
|
|
26
|
+
return new ImageRepository(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Returns true if the given object is an instance of ImageRepository. This is designed to work even
|
|
30
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
31
|
+
*/
|
|
32
|
+
static isInstance(obj) {
|
|
33
|
+
if (obj === undefined || obj === null) {
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
return obj['__pulumiType'] === ImageRepository.__pulumiType;
|
|
37
|
+
}
|
|
38
|
+
constructor(name, argsOrState, opts) {
|
|
39
|
+
let resourceInputs = {};
|
|
40
|
+
opts = opts || {};
|
|
41
|
+
if (opts.id) {
|
|
42
|
+
const state = argsOrState;
|
|
43
|
+
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
44
|
+
resourceInputs["database"] = state ? state.database : undefined;
|
|
45
|
+
resourceInputs["fullyQualifiedName"] = state ? state.fullyQualifiedName : undefined;
|
|
46
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
47
|
+
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
48
|
+
resourceInputs["showOutputs"] = state ? state.showOutputs : undefined;
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
const args = argsOrState;
|
|
52
|
+
if ((!args || args.database === undefined) && !opts.urn) {
|
|
53
|
+
throw new Error("Missing required property 'database'");
|
|
54
|
+
}
|
|
55
|
+
if ((!args || args.schema === undefined) && !opts.urn) {
|
|
56
|
+
throw new Error("Missing required property 'schema'");
|
|
57
|
+
}
|
|
58
|
+
resourceInputs["comment"] = args ? args.comment : undefined;
|
|
59
|
+
resourceInputs["database"] = args ? args.database : undefined;
|
|
60
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
61
|
+
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
62
|
+
resourceInputs["fullyQualifiedName"] = undefined /*out*/;
|
|
63
|
+
resourceInputs["showOutputs"] = undefined /*out*/;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
super(ImageRepository.__pulumiType, name, resourceInputs, opts);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.ImageRepository = ImageRepository;
|
|
70
|
+
/** @internal */
|
|
71
|
+
ImageRepository.__pulumiType = 'snowflake:index/imageRepository:ImageRepository';
|
|
72
|
+
//# sourceMappingURL=imageRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"imageRepository.js","sourceRoot":"","sources":["../imageRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAzFL,0CA0FC;AA5EG,gBAAgB;AACO,4BAAY,GAAG,iDAAiD,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -31,9 +31,15 @@ export declare const ApiIntegration: typeof import("./apiIntegration").ApiIntegr
|
|
|
31
31
|
export { AuthenticationPolicyArgs, AuthenticationPolicyState } from "./authenticationPolicy";
|
|
32
32
|
export type AuthenticationPolicy = import("./authenticationPolicy").AuthenticationPolicy;
|
|
33
33
|
export declare const AuthenticationPolicy: typeof import("./authenticationPolicy").AuthenticationPolicy;
|
|
34
|
+
export { ComputePoolArgs, ComputePoolState } from "./computePool";
|
|
35
|
+
export type ComputePool = import("./computePool").ComputePool;
|
|
36
|
+
export declare const ComputePool: typeof import("./computePool").ComputePool;
|
|
34
37
|
export { CortexSearchServiceArgs, CortexSearchServiceState } from "./cortexSearchService";
|
|
35
38
|
export type CortexSearchService = import("./cortexSearchService").CortexSearchService;
|
|
36
39
|
export declare const CortexSearchService: typeof import("./cortexSearchService").CortexSearchService;
|
|
40
|
+
export { CurrentAccountArgs, CurrentAccountState } from "./currentAccount";
|
|
41
|
+
export type CurrentAccount = import("./currentAccount").CurrentAccount;
|
|
42
|
+
export declare const CurrentAccount: typeof import("./currentAccount").CurrentAccount;
|
|
37
43
|
export { DatabaseArgs, DatabaseState } from "./database";
|
|
38
44
|
export type Database = import("./database").Database;
|
|
39
45
|
export declare const Database: typeof import("./database").Database;
|
|
@@ -91,6 +97,9 @@ export declare const getAccountsOutput: typeof import("./getAccounts").getAccoun
|
|
|
91
97
|
export { GetAlertsArgs, GetAlertsResult, GetAlertsOutputArgs } from "./getAlerts";
|
|
92
98
|
export declare const getAlerts: typeof import("./getAlerts").getAlerts;
|
|
93
99
|
export declare const getAlertsOutput: typeof import("./getAlerts").getAlertsOutput;
|
|
100
|
+
export { GetComputePoolsArgs, GetComputePoolsResult, GetComputePoolsOutputArgs } from "./getComputePools";
|
|
101
|
+
export declare const getComputePools: typeof import("./getComputePools").getComputePools;
|
|
102
|
+
export declare const getComputePoolsOutput: typeof import("./getComputePools").getComputePoolsOutput;
|
|
94
103
|
export { GetConnectionsArgs, GetConnectionsResult, GetConnectionsOutputArgs } from "./getConnections";
|
|
95
104
|
export declare const getConnections: typeof import("./getConnections").getConnections;
|
|
96
105
|
export declare const getConnectionsOutput: typeof import("./getConnections").getConnectionsOutput;
|
|
@@ -133,9 +142,15 @@ export declare const getFileFormatsOutput: typeof import("./getFileFormats").get
|
|
|
133
142
|
export { GetFunctionsArgs, GetFunctionsResult, GetFunctionsOutputArgs } from "./getFunctions";
|
|
134
143
|
export declare const getFunctions: typeof import("./getFunctions").getFunctions;
|
|
135
144
|
export declare const getFunctionsOutput: typeof import("./getFunctions").getFunctionsOutput;
|
|
145
|
+
export { GetGitRepositoriesArgs, GetGitRepositoriesResult, GetGitRepositoriesOutputArgs } from "./getGitRepositories";
|
|
146
|
+
export declare const getGitRepositories: typeof import("./getGitRepositories").getGitRepositories;
|
|
147
|
+
export declare const getGitRepositoriesOutput: typeof import("./getGitRepositories").getGitRepositoriesOutput;
|
|
136
148
|
export { GetGrantsArgs, GetGrantsResult, GetGrantsOutputArgs } from "./getGrants";
|
|
137
149
|
export declare const getGrants: typeof import("./getGrants").getGrants;
|
|
138
150
|
export declare const getGrantsOutput: typeof import("./getGrants").getGrantsOutput;
|
|
151
|
+
export { GetImageRepositoriesArgs, GetImageRepositoriesResult, GetImageRepositoriesOutputArgs } from "./getImageRepositories";
|
|
152
|
+
export declare const getImageRepositories: typeof import("./getImageRepositories").getImageRepositories;
|
|
153
|
+
export declare const getImageRepositoriesOutput: typeof import("./getImageRepositories").getImageRepositoriesOutput;
|
|
139
154
|
export { GetMaskingPoliciesArgs, GetMaskingPoliciesResult, GetMaskingPoliciesOutputArgs } from "./getMaskingPolicies";
|
|
140
155
|
export declare const getMaskingPolicies: typeof import("./getMaskingPolicies").getMaskingPolicies;
|
|
141
156
|
export declare const getMaskingPoliciesOutput: typeof import("./getMaskingPolicies").getMaskingPoliciesOutput;
|
|
@@ -172,6 +187,9 @@ export declare const getSecurityIntegrationsOutput: typeof import("./getSecurity
|
|
|
172
187
|
export { GetSequencesArgs, GetSequencesResult, GetSequencesOutputArgs } from "./getSequences";
|
|
173
188
|
export declare const getSequences: typeof import("./getSequences").getSequences;
|
|
174
189
|
export declare const getSequencesOutput: typeof import("./getSequences").getSequencesOutput;
|
|
190
|
+
export { GetServicesArgs, GetServicesResult, GetServicesOutputArgs } from "./getServices";
|
|
191
|
+
export declare const getServices: typeof import("./getServices").getServices;
|
|
192
|
+
export declare const getServicesOutput: typeof import("./getServices").getServicesOutput;
|
|
175
193
|
export { GetSharesArgs, GetSharesResult, GetSharesOutputArgs } from "./getShares";
|
|
176
194
|
export declare const getShares: typeof import("./getShares").getShares;
|
|
177
195
|
export declare const getSharesOutput: typeof import("./getShares").getSharesOutput;
|
|
@@ -217,6 +235,9 @@ export declare const getViewsOutput: typeof import("./getViews").getViewsOutput;
|
|
|
217
235
|
export { GetWarehousesArgs, GetWarehousesResult, GetWarehousesOutputArgs } from "./getWarehouses";
|
|
218
236
|
export declare const getWarehouses: typeof import("./getWarehouses").getWarehouses;
|
|
219
237
|
export declare const getWarehousesOutput: typeof import("./getWarehouses").getWarehousesOutput;
|
|
238
|
+
export { GitRepositoryArgs, GitRepositoryState } from "./gitRepository";
|
|
239
|
+
export type GitRepository = import("./gitRepository").GitRepository;
|
|
240
|
+
export declare const GitRepository: typeof import("./gitRepository").GitRepository;
|
|
220
241
|
export { GrantAccountRoleArgs, GrantAccountRoleState } from "./grantAccountRole";
|
|
221
242
|
export type GrantAccountRole = import("./grantAccountRole").GrantAccountRole;
|
|
222
243
|
export declare const GrantAccountRole: typeof import("./grantAccountRole").GrantAccountRole;
|
|
@@ -238,6 +259,12 @@ export declare const GrantPrivilegesToDatabaseRole: typeof import("./grantPrivil
|
|
|
238
259
|
export { GrantPrivilegesToShareArgs, GrantPrivilegesToShareState } from "./grantPrivilegesToShare";
|
|
239
260
|
export type GrantPrivilegesToShare = import("./grantPrivilegesToShare").GrantPrivilegesToShare;
|
|
240
261
|
export declare const GrantPrivilegesToShare: typeof import("./grantPrivilegesToShare").GrantPrivilegesToShare;
|
|
262
|
+
export { ImageRepositoryArgs, ImageRepositoryState } from "./imageRepository";
|
|
263
|
+
export type ImageRepository = import("./imageRepository").ImageRepository;
|
|
264
|
+
export declare const ImageRepository: typeof import("./imageRepository").ImageRepository;
|
|
265
|
+
export { JobServiceArgs, JobServiceState } from "./jobService";
|
|
266
|
+
export type JobService = import("./jobService").JobService;
|
|
267
|
+
export declare const JobService: typeof import("./jobService").JobService;
|
|
241
268
|
export { LegacyServiceUserArgs, LegacyServiceUserState } from "./legacyServiceUser";
|
|
242
269
|
export type LegacyServiceUser = import("./legacyServiceUser").LegacyServiceUser;
|
|
243
270
|
export declare const LegacyServiceUser: typeof import("./legacyServiceUser").LegacyServiceUser;
|
|
@@ -332,6 +359,9 @@ export declare const SecretWithGenericString: typeof import("./secretWithGeneric
|
|
|
332
359
|
export { SequenceArgs, SequenceState } from "./sequence";
|
|
333
360
|
export type Sequence = import("./sequence").Sequence;
|
|
334
361
|
export declare const Sequence: typeof import("./sequence").Sequence;
|
|
362
|
+
export { ServiceArgs, ServiceState } from "./service";
|
|
363
|
+
export type Service = import("./service").Service;
|
|
364
|
+
export declare const Service: typeof import("./service").Service;
|
|
335
365
|
export { ServiceUserArgs, ServiceUserState } from "./serviceUser";
|
|
336
366
|
export type ServiceUser = import("./serviceUser").ServiceUser;
|
|
337
367
|
export declare const ServiceUser: typeof import("./serviceUser").ServiceUser;
|
package/index.js
CHANGED
|
@@ -16,10 +16,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.types = exports.config = exports.Warehouse = exports.View = exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.UserAuthenticationPolicyAttachment = exports.User = exports.Task = exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = exports.Table = exports.Streamlit = exports.StreamOnView = exports.StreamOnTable = exports.StreamOnExternalTable = exports.StreamOnDirectoryTable = exports.StorageIntegration = exports.Stage = exports.SharedDatabase = exports.Share = exports.ServiceUser = exports.Sequence = exports.SecretWithGenericString = exports.SecretWithClientCredentials = exports.SecretWithBasicAuthentication = exports.SecretWithAuthorizationCodeGrant = exports.SecondaryDatabase = void 0;
|
|
19
|
+
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.getComputePoolsOutput = exports.getComputePools = exports.getAlertsOutput = exports.getAlerts = exports.getAccountsOutput = exports.getAccounts = exports.getAccountRolesOutput = exports.getAccountRoles = exports.FunctionSql = exports.FunctionScala = exports.FunctionPython = exports.FunctionJavascript = exports.FunctionJava = exports.FileFormat = exports.FailoverGroup = exports.ExternalVolume = exports.ExternalTable = exports.ExternalOauthIntegration = exports.ExternalFunction = exports.Execute = exports.EmailNotificationIntegration = exports.DynamicTable = exports.DatabaseRole = exports.Database = exports.CurrentAccount = exports.CortexSearchService = exports.ComputePool = exports.AuthenticationPolicy = exports.ApiIntegration = exports.ApiAuthenticationIntegrationWithJwtBearer = exports.ApiAuthenticationIntegrationWithClientCredentials = exports.ApiAuthenticationIntegrationWithAuthorizationCodeGrant = exports.Alert = exports.AccountRole = exports.AccountPasswordPolicyAttachment = exports.AccountParameter = exports.AccountAuthenticationPolicyAttachment = exports.Account = void 0;
|
|
20
|
+
exports.getSharesOutput = exports.getShares = exports.getServicesOutput = exports.getServices = exports.getSequencesOutput = exports.getSequences = exports.getSecurityIntegrationsOutput = exports.getSecurityIntegrations = exports.getSecretsOutput = exports.getSecrets = exports.getSchemasOutput = exports.getSchemas = exports.getRowAccessPoliciesOutput = exports.getRowAccessPolicies = 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.getImageRepositoriesOutput = exports.getImageRepositories = exports.getGrantsOutput = exports.getGrants = exports.getGitRepositoriesOutput = exports.getGitRepositories = exports.getFunctionsOutput = exports.getFunctions = exports.getFileFormatsOutput = exports.getFileFormats = exports.getFailoverGroupsOutput = exports.getFailoverGroups = exports.getExternalTablesOutput = exports.getExternalTables = exports.getExternalFunctionsOutput = exports.getExternalFunctions = exports.getDynamicTablesOutput = exports.getDynamicTables = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseRolesOutput = exports.getDatabaseRoles = void 0;
|
|
21
|
+
exports.PasswordPolicy = exports.ObjectParameter = exports.OauthIntegrationForPartnerApplications = exports.OauthIntegrationForCustomClients = exports.NotificationIntegration = exports.NetworkRule = exports.NetworkPolicyAttachment = exports.NetworkPolicy = exports.MaterializedView = exports.MaskingPolicy = exports.ManagedAccount = exports.LegacyServiceUser = exports.JobService = exports.ImageRepository = exports.GrantPrivilegesToShare = exports.GrantPrivilegesToDatabaseRole = exports.GrantPrivilegesToAccountRole = exports.GrantOwnership = exports.GrantDatabaseRole = exports.GrantApplicationRole = exports.GrantAccountRole = exports.GitRepository = exports.getWarehousesOutput = exports.getWarehouses = exports.getViewsOutput = exports.getViews = exports.getUsersOutput = exports.getUsers = exports.getTasksOutput = exports.getTasks = exports.getTagsOutput = exports.getTags = exports.getTablesOutput = exports.getTables = exports.getSystemGetSnowflakePlatformInfoOutput = exports.getSystemGetSnowflakePlatformInfo = exports.getSystemGetPrivateLinkConfigOutput = exports.getSystemGetPrivateLinkConfig = exports.getSystemGetAwsSnsIamPolicyOutput = exports.getSystemGetAwsSnsIamPolicy = exports.getSystemGenerateScimAccessTokenOutput = exports.getSystemGenerateScimAccessToken = exports.getStreamsOutput = exports.getStreams = exports.getStreamlitsOutput = exports.getStreamlits = exports.getStorageIntegrationsOutput = exports.getStorageIntegrations = exports.getStagesOutput = exports.getStages = void 0;
|
|
22
|
+
exports.types = exports.config = exports.Warehouse = exports.View = exports.UserPublicKeys = exports.UserPasswordPolicyAttachment = exports.UserAuthenticationPolicyAttachment = exports.User = exports.Task = exports.TagAssociation = exports.Tag = exports.TableConstraint = exports.TableColumnMaskingPolicyApplication = exports.Table = exports.Streamlit = exports.StreamOnView = exports.StreamOnTable = exports.StreamOnExternalTable = exports.StreamOnDirectoryTable = exports.StorageIntegration = exports.Stage = exports.SharedDatabase = exports.Share = exports.ServiceUser = exports.Service = exports.Sequence = exports.SecretWithGenericString = exports.SecretWithClientCredentials = exports.SecretWithBasicAuthentication = exports.SecretWithAuthorizationCodeGrant = exports.SecondaryDatabase = exports.SecondaryConnection = exports.ScimIntegration = exports.Schema = exports.Saml2Integration = exports.RowAccessPolicy = exports.ResourceMonitor = exports.ProcedureSql = exports.ProcedureScala = exports.ProcedurePython = exports.ProcedureJavascript = exports.ProcedureJava = exports.PrimaryConnection = exports.Pipe = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
exports.Account = null;
|
|
@@ -44,8 +44,12 @@ exports.ApiIntegration = null;
|
|
|
44
44
|
utilities.lazyLoad(exports, ["ApiIntegration"], () => require("./apiIntegration"));
|
|
45
45
|
exports.AuthenticationPolicy = null;
|
|
46
46
|
utilities.lazyLoad(exports, ["AuthenticationPolicy"], () => require("./authenticationPolicy"));
|
|
47
|
+
exports.ComputePool = null;
|
|
48
|
+
utilities.lazyLoad(exports, ["ComputePool"], () => require("./computePool"));
|
|
47
49
|
exports.CortexSearchService = null;
|
|
48
50
|
utilities.lazyLoad(exports, ["CortexSearchService"], () => require("./cortexSearchService"));
|
|
51
|
+
exports.CurrentAccount = null;
|
|
52
|
+
utilities.lazyLoad(exports, ["CurrentAccount"], () => require("./currentAccount"));
|
|
49
53
|
exports.Database = null;
|
|
50
54
|
utilities.lazyLoad(exports, ["Database"], () => require("./database"));
|
|
51
55
|
exports.DatabaseRole = null;
|
|
@@ -87,6 +91,9 @@ utilities.lazyLoad(exports, ["getAccounts", "getAccountsOutput"], () => require(
|
|
|
87
91
|
exports.getAlerts = null;
|
|
88
92
|
exports.getAlertsOutput = null;
|
|
89
93
|
utilities.lazyLoad(exports, ["getAlerts", "getAlertsOutput"], () => require("./getAlerts"));
|
|
94
|
+
exports.getComputePools = null;
|
|
95
|
+
exports.getComputePoolsOutput = null;
|
|
96
|
+
utilities.lazyLoad(exports, ["getComputePools", "getComputePoolsOutput"], () => require("./getComputePools"));
|
|
90
97
|
exports.getConnections = null;
|
|
91
98
|
exports.getConnectionsOutput = null;
|
|
92
99
|
utilities.lazyLoad(exports, ["getConnections", "getConnectionsOutput"], () => require("./getConnections"));
|
|
@@ -129,9 +136,15 @@ utilities.lazyLoad(exports, ["getFileFormats", "getFileFormatsOutput"], () => re
|
|
|
129
136
|
exports.getFunctions = null;
|
|
130
137
|
exports.getFunctionsOutput = null;
|
|
131
138
|
utilities.lazyLoad(exports, ["getFunctions", "getFunctionsOutput"], () => require("./getFunctions"));
|
|
139
|
+
exports.getGitRepositories = null;
|
|
140
|
+
exports.getGitRepositoriesOutput = null;
|
|
141
|
+
utilities.lazyLoad(exports, ["getGitRepositories", "getGitRepositoriesOutput"], () => require("./getGitRepositories"));
|
|
132
142
|
exports.getGrants = null;
|
|
133
143
|
exports.getGrantsOutput = null;
|
|
134
144
|
utilities.lazyLoad(exports, ["getGrants", "getGrantsOutput"], () => require("./getGrants"));
|
|
145
|
+
exports.getImageRepositories = null;
|
|
146
|
+
exports.getImageRepositoriesOutput = null;
|
|
147
|
+
utilities.lazyLoad(exports, ["getImageRepositories", "getImageRepositoriesOutput"], () => require("./getImageRepositories"));
|
|
135
148
|
exports.getMaskingPolicies = null;
|
|
136
149
|
exports.getMaskingPoliciesOutput = null;
|
|
137
150
|
utilities.lazyLoad(exports, ["getMaskingPolicies", "getMaskingPoliciesOutput"], () => require("./getMaskingPolicies"));
|
|
@@ -168,6 +181,9 @@ utilities.lazyLoad(exports, ["getSecurityIntegrations", "getSecurityIntegrations
|
|
|
168
181
|
exports.getSequences = null;
|
|
169
182
|
exports.getSequencesOutput = null;
|
|
170
183
|
utilities.lazyLoad(exports, ["getSequences", "getSequencesOutput"], () => require("./getSequences"));
|
|
184
|
+
exports.getServices = null;
|
|
185
|
+
exports.getServicesOutput = null;
|
|
186
|
+
utilities.lazyLoad(exports, ["getServices", "getServicesOutput"], () => require("./getServices"));
|
|
171
187
|
exports.getShares = null;
|
|
172
188
|
exports.getSharesOutput = null;
|
|
173
189
|
utilities.lazyLoad(exports, ["getShares", "getSharesOutput"], () => require("./getShares"));
|
|
@@ -213,6 +229,8 @@ utilities.lazyLoad(exports, ["getViews", "getViewsOutput"], () => require("./get
|
|
|
213
229
|
exports.getWarehouses = null;
|
|
214
230
|
exports.getWarehousesOutput = null;
|
|
215
231
|
utilities.lazyLoad(exports, ["getWarehouses", "getWarehousesOutput"], () => require("./getWarehouses"));
|
|
232
|
+
exports.GitRepository = null;
|
|
233
|
+
utilities.lazyLoad(exports, ["GitRepository"], () => require("./gitRepository"));
|
|
216
234
|
exports.GrantAccountRole = null;
|
|
217
235
|
utilities.lazyLoad(exports, ["GrantAccountRole"], () => require("./grantAccountRole"));
|
|
218
236
|
exports.GrantApplicationRole = null;
|
|
@@ -227,6 +245,10 @@ exports.GrantPrivilegesToDatabaseRole = null;
|
|
|
227
245
|
utilities.lazyLoad(exports, ["GrantPrivilegesToDatabaseRole"], () => require("./grantPrivilegesToDatabaseRole"));
|
|
228
246
|
exports.GrantPrivilegesToShare = null;
|
|
229
247
|
utilities.lazyLoad(exports, ["GrantPrivilegesToShare"], () => require("./grantPrivilegesToShare"));
|
|
248
|
+
exports.ImageRepository = null;
|
|
249
|
+
utilities.lazyLoad(exports, ["ImageRepository"], () => require("./imageRepository"));
|
|
250
|
+
exports.JobService = null;
|
|
251
|
+
utilities.lazyLoad(exports, ["JobService"], () => require("./jobService"));
|
|
230
252
|
exports.LegacyServiceUser = null;
|
|
231
253
|
utilities.lazyLoad(exports, ["LegacyServiceUser"], () => require("./legacyServiceUser"));
|
|
232
254
|
exports.ManagedAccount = null;
|
|
@@ -291,6 +313,8 @@ exports.SecretWithGenericString = null;
|
|
|
291
313
|
utilities.lazyLoad(exports, ["SecretWithGenericString"], () => require("./secretWithGenericString"));
|
|
292
314
|
exports.Sequence = null;
|
|
293
315
|
utilities.lazyLoad(exports, ["Sequence"], () => require("./sequence"));
|
|
316
|
+
exports.Service = null;
|
|
317
|
+
utilities.lazyLoad(exports, ["Service"], () => require("./service"));
|
|
294
318
|
exports.ServiceUser = null;
|
|
295
319
|
utilities.lazyLoad(exports, ["ServiceUser"], () => require("./serviceUser"));
|
|
296
320
|
exports.Share = null;
|
|
@@ -366,8 +390,12 @@ const _module = {
|
|
|
366
390
|
return new exports.ApiIntegration(name, undefined, { urn });
|
|
367
391
|
case "snowflake:index/authenticationPolicy:AuthenticationPolicy":
|
|
368
392
|
return new exports.AuthenticationPolicy(name, undefined, { urn });
|
|
393
|
+
case "snowflake:index/computePool:ComputePool":
|
|
394
|
+
return new exports.ComputePool(name, undefined, { urn });
|
|
369
395
|
case "snowflake:index/cortexSearchService:CortexSearchService":
|
|
370
396
|
return new exports.CortexSearchService(name, undefined, { urn });
|
|
397
|
+
case "snowflake:index/currentAccount:CurrentAccount":
|
|
398
|
+
return new exports.CurrentAccount(name, undefined, { urn });
|
|
371
399
|
case "snowflake:index/database:Database":
|
|
372
400
|
return new exports.Database(name, undefined, { urn });
|
|
373
401
|
case "snowflake:index/databaseRole:DatabaseRole":
|
|
@@ -400,6 +428,8 @@ const _module = {
|
|
|
400
428
|
return new exports.FunctionScala(name, undefined, { urn });
|
|
401
429
|
case "snowflake:index/functionSql:FunctionSql":
|
|
402
430
|
return new exports.FunctionSql(name, undefined, { urn });
|
|
431
|
+
case "snowflake:index/gitRepository:GitRepository":
|
|
432
|
+
return new exports.GitRepository(name, undefined, { urn });
|
|
403
433
|
case "snowflake:index/grantAccountRole:GrantAccountRole":
|
|
404
434
|
return new exports.GrantAccountRole(name, undefined, { urn });
|
|
405
435
|
case "snowflake:index/grantApplicationRole:GrantApplicationRole":
|
|
@@ -414,6 +444,10 @@ const _module = {
|
|
|
414
444
|
return new exports.GrantPrivilegesToDatabaseRole(name, undefined, { urn });
|
|
415
445
|
case "snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare":
|
|
416
446
|
return new exports.GrantPrivilegesToShare(name, undefined, { urn });
|
|
447
|
+
case "snowflake:index/imageRepository:ImageRepository":
|
|
448
|
+
return new exports.ImageRepository(name, undefined, { urn });
|
|
449
|
+
case "snowflake:index/jobService:JobService":
|
|
450
|
+
return new exports.JobService(name, undefined, { urn });
|
|
417
451
|
case "snowflake:index/legacyServiceUser:LegacyServiceUser":
|
|
418
452
|
return new exports.LegacyServiceUser(name, undefined, { urn });
|
|
419
453
|
case "snowflake:index/managedAccount:ManagedAccount":
|
|
@@ -476,6 +510,8 @@ const _module = {
|
|
|
476
510
|
return new exports.SecretWithGenericString(name, undefined, { urn });
|
|
477
511
|
case "snowflake:index/sequence:Sequence":
|
|
478
512
|
return new exports.Sequence(name, undefined, { urn });
|
|
513
|
+
case "snowflake:index/service:Service":
|
|
514
|
+
return new exports.Service(name, undefined, { urn });
|
|
479
515
|
case "snowflake:index/serviceUser:ServiceUser":
|
|
480
516
|
return new exports.ServiceUser(name, undefined, { urn });
|
|
481
517
|
case "snowflake:index/share:Share":
|
|
@@ -536,7 +572,9 @@ pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationInteg
|
|
|
536
572
|
pulumi.runtime.registerResourceModule("snowflake", "index/apiAuthenticationIntegrationWithJwtBearer", _module);
|
|
537
573
|
pulumi.runtime.registerResourceModule("snowflake", "index/apiIntegration", _module);
|
|
538
574
|
pulumi.runtime.registerResourceModule("snowflake", "index/authenticationPolicy", _module);
|
|
575
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/computePool", _module);
|
|
539
576
|
pulumi.runtime.registerResourceModule("snowflake", "index/cortexSearchService", _module);
|
|
577
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/currentAccount", _module);
|
|
540
578
|
pulumi.runtime.registerResourceModule("snowflake", "index/database", _module);
|
|
541
579
|
pulumi.runtime.registerResourceModule("snowflake", "index/databaseRole", _module);
|
|
542
580
|
pulumi.runtime.registerResourceModule("snowflake", "index/dynamicTable", _module);
|
|
@@ -553,6 +591,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/functionJavascript", _
|
|
|
553
591
|
pulumi.runtime.registerResourceModule("snowflake", "index/functionPython", _module);
|
|
554
592
|
pulumi.runtime.registerResourceModule("snowflake", "index/functionScala", _module);
|
|
555
593
|
pulumi.runtime.registerResourceModule("snowflake", "index/functionSql", _module);
|
|
594
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/gitRepository", _module);
|
|
556
595
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantAccountRole", _module);
|
|
557
596
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantApplicationRole", _module);
|
|
558
597
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantDatabaseRole", _module);
|
|
@@ -560,6 +599,8 @@ pulumi.runtime.registerResourceModule("snowflake", "index/grantOwnership", _modu
|
|
|
560
599
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantPrivilegesToAccountRole", _module);
|
|
561
600
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantPrivilegesToDatabaseRole", _module);
|
|
562
601
|
pulumi.runtime.registerResourceModule("snowflake", "index/grantPrivilegesToShare", _module);
|
|
602
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/imageRepository", _module);
|
|
603
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/jobService", _module);
|
|
563
604
|
pulumi.runtime.registerResourceModule("snowflake", "index/legacyServiceUser", _module);
|
|
564
605
|
pulumi.runtime.registerResourceModule("snowflake", "index/managedAccount", _module);
|
|
565
606
|
pulumi.runtime.registerResourceModule("snowflake", "index/maskingPolicy", _module);
|
|
@@ -591,6 +632,7 @@ pulumi.runtime.registerResourceModule("snowflake", "index/secretWithBasicAuthent
|
|
|
591
632
|
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithClientCredentials", _module);
|
|
592
633
|
pulumi.runtime.registerResourceModule("snowflake", "index/secretWithGenericString", _module);
|
|
593
634
|
pulumi.runtime.registerResourceModule("snowflake", "index/sequence", _module);
|
|
635
|
+
pulumi.runtime.registerResourceModule("snowflake", "index/service", _module);
|
|
594
636
|
pulumi.runtime.registerResourceModule("snowflake", "index/serviceUser", _module);
|
|
595
637
|
pulumi.runtime.registerResourceModule("snowflake", "index/share", _module);
|
|
596
638
|
pulumi.runtime.registerResourceModule("snowflake", "index/sharedDatabase", _module);
|