@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
package/getTables.d.ts
CHANGED
|
@@ -1,85 +1,98 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
2
3
|
import * as outputs from "./types/output";
|
|
3
4
|
/**
|
|
4
5
|
* !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `previewFeaturesEnabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
5
6
|
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
11
|
-
*
|
|
12
|
-
* const current = snowflake.getTables({
|
|
13
|
-
* database: "MYDB",
|
|
14
|
-
* schema: "MYSCHEMA",
|
|
15
|
-
* });
|
|
16
|
-
* ```
|
|
17
|
-
*
|
|
18
|
-
* > **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
7
|
+
* Datasource used to get details of filtered tables. Filtering is aligned with the current possibilities for [SHOW TABLES](https://docs.snowflake.com/en/sql-reference/sql/show-tables) query. The results of SHOW and DESCRIBE (COLUMNS) are encapsulated in one output collection `tables`.
|
|
19
8
|
*/
|
|
20
|
-
export declare function getTables(args
|
|
9
|
+
export declare function getTables(args?: GetTablesArgs, opts?: pulumi.InvokeOptions): Promise<GetTablesResult>;
|
|
21
10
|
/**
|
|
22
11
|
* A collection of arguments for invoking getTables.
|
|
23
12
|
*/
|
|
24
13
|
export interface GetTablesArgs {
|
|
25
14
|
/**
|
|
26
|
-
*
|
|
15
|
+
* IN clause to filter the list of objects
|
|
16
|
+
*/
|
|
17
|
+
in?: inputs.GetTablesIn;
|
|
18
|
+
/**
|
|
19
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
20
|
+
*/
|
|
21
|
+
like?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
27
24
|
*/
|
|
28
|
-
|
|
25
|
+
limit?: inputs.GetTablesLimit;
|
|
29
26
|
/**
|
|
30
|
-
*
|
|
27
|
+
* Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
31
28
|
*/
|
|
32
|
-
|
|
29
|
+
startsWith?: string;
|
|
30
|
+
/**
|
|
31
|
+
* (Default: `true`) Runs DESC TABLE for each table returned by SHOW TABLES. The output of describe is saved to the description field. By default this value is set to true.
|
|
32
|
+
*/
|
|
33
|
+
withDescribe?: boolean;
|
|
33
34
|
}
|
|
34
35
|
/**
|
|
35
36
|
* A collection of values returned by getTables.
|
|
36
37
|
*/
|
|
37
38
|
export interface GetTablesResult {
|
|
38
|
-
/**
|
|
39
|
-
* The database from which to return the schemas from.
|
|
40
|
-
*/
|
|
41
|
-
readonly database: string;
|
|
42
39
|
/**
|
|
43
40
|
* The provider-assigned unique ID for this managed resource.
|
|
44
41
|
*/
|
|
45
42
|
readonly id: string;
|
|
46
43
|
/**
|
|
47
|
-
*
|
|
44
|
+
* IN clause to filter the list of objects
|
|
45
|
+
*/
|
|
46
|
+
readonly in?: outputs.GetTablesIn;
|
|
47
|
+
/**
|
|
48
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
49
|
+
*/
|
|
50
|
+
readonly like?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
53
|
+
*/
|
|
54
|
+
readonly limit?: outputs.GetTablesLimit;
|
|
55
|
+
/**
|
|
56
|
+
* Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
48
57
|
*/
|
|
49
|
-
readonly
|
|
58
|
+
readonly startsWith?: string;
|
|
50
59
|
/**
|
|
51
|
-
*
|
|
60
|
+
* Holds the aggregated output of all tables details queries.
|
|
52
61
|
*/
|
|
53
62
|
readonly tables: outputs.GetTablesTable[];
|
|
63
|
+
/**
|
|
64
|
+
* (Default: `true`) Runs DESC TABLE for each table returned by SHOW TABLES. The output of describe is saved to the description field. By default this value is set to true.
|
|
65
|
+
*/
|
|
66
|
+
readonly withDescribe?: boolean;
|
|
54
67
|
}
|
|
55
68
|
/**
|
|
56
69
|
* !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `previewFeaturesEnabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
57
70
|
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
* ```typescript
|
|
61
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
62
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
63
|
-
*
|
|
64
|
-
* const current = snowflake.getTables({
|
|
65
|
-
* database: "MYDB",
|
|
66
|
-
* schema: "MYSCHEMA",
|
|
67
|
-
* });
|
|
68
|
-
* ```
|
|
69
|
-
*
|
|
70
|
-
* > **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
71
|
+
* Datasource used to get details of filtered tables. Filtering is aligned with the current possibilities for [SHOW TABLES](https://docs.snowflake.com/en/sql-reference/sql/show-tables) query. The results of SHOW and DESCRIBE (COLUMNS) are encapsulated in one output collection `tables`.
|
|
71
72
|
*/
|
|
72
|
-
export declare function getTablesOutput(args
|
|
73
|
+
export declare function getTablesOutput(args?: GetTablesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTablesResult>;
|
|
73
74
|
/**
|
|
74
75
|
* A collection of arguments for invoking getTables.
|
|
75
76
|
*/
|
|
76
77
|
export interface GetTablesOutputArgs {
|
|
77
78
|
/**
|
|
78
|
-
*
|
|
79
|
+
* IN clause to filter the list of objects
|
|
80
|
+
*/
|
|
81
|
+
in?: pulumi.Input<inputs.GetTablesInArgs>;
|
|
82
|
+
/**
|
|
83
|
+
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
84
|
+
*/
|
|
85
|
+
like?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
88
|
+
*/
|
|
89
|
+
limit?: pulumi.Input<inputs.GetTablesLimitArgs>;
|
|
90
|
+
/**
|
|
91
|
+
* Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
79
92
|
*/
|
|
80
|
-
|
|
93
|
+
startsWith?: pulumi.Input<string>;
|
|
81
94
|
/**
|
|
82
|
-
* The
|
|
95
|
+
* (Default: `true`) Runs DESC TABLE for each table returned by SHOW TABLES. The output of describe is saved to the description field. By default this value is set to true.
|
|
83
96
|
*/
|
|
84
|
-
|
|
97
|
+
withDescribe?: pulumi.Input<boolean>;
|
|
85
98
|
}
|
package/getTables.js
CHANGED
|
@@ -8,50 +8,34 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `previewFeaturesEnabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
16
|
-
*
|
|
17
|
-
* const current = snowflake.getTables({
|
|
18
|
-
* database: "MYDB",
|
|
19
|
-
* schema: "MYSCHEMA",
|
|
20
|
-
* });
|
|
21
|
-
* ```
|
|
22
|
-
*
|
|
23
|
-
* > **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
11
|
+
* Datasource used to get details of filtered tables. Filtering is aligned with the current possibilities for [SHOW TABLES](https://docs.snowflake.com/en/sql-reference/sql/show-tables) query. The results of SHOW and DESCRIBE (COLUMNS) are encapsulated in one output collection `tables`.
|
|
24
12
|
*/
|
|
25
13
|
function getTables(args, opts) {
|
|
14
|
+
args = args || {};
|
|
26
15
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
16
|
return pulumi.runtime.invoke("snowflake:index/getTables:getTables", {
|
|
28
|
-
"
|
|
29
|
-
"
|
|
17
|
+
"in": args.in,
|
|
18
|
+
"like": args.like,
|
|
19
|
+
"limit": args.limit,
|
|
20
|
+
"startsWith": args.startsWith,
|
|
21
|
+
"withDescribe": args.withDescribe,
|
|
30
22
|
}, opts);
|
|
31
23
|
}
|
|
32
24
|
exports.getTables = getTables;
|
|
33
25
|
/**
|
|
34
26
|
* !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `previewFeaturesEnabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
35
27
|
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
* ```typescript
|
|
39
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
-
* import * as snowflake from "@pulumi/snowflake";
|
|
41
|
-
*
|
|
42
|
-
* const current = snowflake.getTables({
|
|
43
|
-
* database: "MYDB",
|
|
44
|
-
* schema: "MYSCHEMA",
|
|
45
|
-
* });
|
|
46
|
-
* ```
|
|
47
|
-
*
|
|
48
|
-
* > **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
28
|
+
* Datasource used to get details of filtered tables. Filtering is aligned with the current possibilities for [SHOW TABLES](https://docs.snowflake.com/en/sql-reference/sql/show-tables) query. The results of SHOW and DESCRIBE (COLUMNS) are encapsulated in one output collection `tables`.
|
|
49
29
|
*/
|
|
50
30
|
function getTablesOutput(args, opts) {
|
|
31
|
+
args = args || {};
|
|
51
32
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
52
33
|
return pulumi.runtime.invokeOutput("snowflake:index/getTables:getTables", {
|
|
53
|
-
"
|
|
54
|
-
"
|
|
34
|
+
"in": args.in,
|
|
35
|
+
"like": args.like,
|
|
36
|
+
"limit": args.limit,
|
|
37
|
+
"startsWith": args.startsWith,
|
|
38
|
+
"withDescribe": args.withDescribe,
|
|
55
39
|
}, opts);
|
|
56
40
|
}
|
|
57
41
|
exports.getTablesOutput = getTablesOutput;
|
package/getTables.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTables.js","sourceRoot":"","sources":["../getTables.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getTables.js","sourceRoot":"","sources":["../getTables.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AA6DD;;;;GAIG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0CAUC"}
|
package/getTasks.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface GetTasksArgs {
|
|
|
20
20
|
*/
|
|
21
21
|
like?: string;
|
|
22
22
|
/**
|
|
23
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
23
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
24
24
|
*/
|
|
25
25
|
limit?: inputs.GetTasksLimit;
|
|
26
26
|
/**
|
|
@@ -53,7 +53,7 @@ export interface GetTasksResult {
|
|
|
53
53
|
*/
|
|
54
54
|
readonly like?: string;
|
|
55
55
|
/**
|
|
56
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
56
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
57
57
|
*/
|
|
58
58
|
readonly limit?: outputs.GetTasksLimit;
|
|
59
59
|
/**
|
|
@@ -92,7 +92,7 @@ export interface GetTasksOutputArgs {
|
|
|
92
92
|
*/
|
|
93
93
|
like?: pulumi.Input<string>;
|
|
94
94
|
/**
|
|
95
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
95
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
96
96
|
*/
|
|
97
97
|
limit?: pulumi.Input<inputs.GetTasksLimitArgs>;
|
|
98
98
|
/**
|
package/getUsers.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface GetUsersArgs {
|
|
|
14
14
|
*/
|
|
15
15
|
like?: string;
|
|
16
16
|
/**
|
|
17
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
17
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
18
18
|
*/
|
|
19
19
|
limit?: inputs.GetUsersLimit;
|
|
20
20
|
/**
|
|
@@ -43,7 +43,7 @@ export interface GetUsersResult {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly like?: string;
|
|
45
45
|
/**
|
|
46
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
46
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
47
47
|
*/
|
|
48
48
|
readonly limit?: outputs.GetUsersLimit;
|
|
49
49
|
/**
|
|
@@ -76,7 +76,7 @@ export interface GetUsersOutputArgs {
|
|
|
76
76
|
*/
|
|
77
77
|
like?: pulumi.Input<string>;
|
|
78
78
|
/**
|
|
79
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
79
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
80
80
|
*/
|
|
81
81
|
limit?: pulumi.Input<inputs.GetUsersLimitArgs>;
|
|
82
82
|
/**
|
package/getViews.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface GetViewsArgs {
|
|
|
20
20
|
*/
|
|
21
21
|
like?: string;
|
|
22
22
|
/**
|
|
23
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
23
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
24
24
|
*/
|
|
25
25
|
limit?: inputs.GetViewsLimit;
|
|
26
26
|
/**
|
|
@@ -49,7 +49,7 @@ export interface GetViewsResult {
|
|
|
49
49
|
*/
|
|
50
50
|
readonly like?: string;
|
|
51
51
|
/**
|
|
52
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
52
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
53
53
|
*/
|
|
54
54
|
readonly limit?: outputs.GetViewsLimit;
|
|
55
55
|
/**
|
|
@@ -84,7 +84,7 @@ export interface GetViewsOutputArgs {
|
|
|
84
84
|
*/
|
|
85
85
|
like?: pulumi.Input<string>;
|
|
86
86
|
/**
|
|
87
|
-
* Limits the number of rows returned. If the `limit.from` is set, then the limit
|
|
87
|
+
* Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `startsWith` or `like`.
|
|
88
88
|
*/
|
|
89
89
|
limit?: pulumi.Input<inputs.GetViewsLimitArgs>;
|
|
90
90
|
/**
|
|
@@ -0,0 +1,153 @@
|
|
|
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/gitRepository:GitRepository example '"<db_name>"."<schema_name>"."<git_repository_name>"'
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export declare class GitRepository extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing GitRepository 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?: GitRepositoryState, opts?: pulumi.CustomResourceOptions): GitRepository;
|
|
22
|
+
/**
|
|
23
|
+
* Returns true if the given object is an instance of GitRepository. 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 GitRepository;
|
|
27
|
+
/**
|
|
28
|
+
* Identifier of API INTEGRATION containing information about the remote Git repository such as allowed credentials and prefixes for target URLs.
|
|
29
|
+
*/
|
|
30
|
+
readonly apiIntegration: pulumi.Output<string>;
|
|
31
|
+
/**
|
|
32
|
+
* Specifies a comment for the git repository.
|
|
33
|
+
*/
|
|
34
|
+
readonly comment: pulumi.Output<string | undefined>;
|
|
35
|
+
/**
|
|
36
|
+
* The database in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
37
|
+
*/
|
|
38
|
+
readonly database: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Outputs the result of `DESCRIBE GIT REPOSITORY` for the given git repository.
|
|
41
|
+
*/
|
|
42
|
+
readonly describeOutputs: pulumi.Output<outputs.GitRepositoryDescribeOutput[]>;
|
|
43
|
+
/**
|
|
44
|
+
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
45
|
+
*/
|
|
46
|
+
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies the Snowflake secret fully qualified name (e.g `"\"<db_name>\".\"<schema_name>\".\"<secret_name>\""`) containing the credentials to use for authenticating with the remote Git repository. Omit this parameter to use the default secret specified by the API integration or if this integration does not require authentication.
|
|
49
|
+
*/
|
|
50
|
+
readonly gitCredentials: pulumi.Output<string | undefined>;
|
|
51
|
+
/**
|
|
52
|
+
* Specifies the identifier for the git repository; must be unique for the schema in which the git repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
53
|
+
*/
|
|
54
|
+
readonly name: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* Specifies the origin URL of the remote Git repository that this Git repository clone represents. The URL must use HTTPS.
|
|
57
|
+
*/
|
|
58
|
+
readonly origin: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The schema in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
61
|
+
*/
|
|
62
|
+
readonly schema: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* Outputs the result of `SHOW GIT REPOSITORIES` for the given git repository.
|
|
65
|
+
*/
|
|
66
|
+
readonly showOutputs: pulumi.Output<outputs.GitRepositoryShowOutput[]>;
|
|
67
|
+
/**
|
|
68
|
+
* Create a GitRepository resource with the given unique name, arguments, and options.
|
|
69
|
+
*
|
|
70
|
+
* @param name The _unique_ name of the resource.
|
|
71
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
72
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
73
|
+
*/
|
|
74
|
+
constructor(name: string, args: GitRepositoryArgs, opts?: pulumi.CustomResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Input properties used for looking up and filtering GitRepository resources.
|
|
78
|
+
*/
|
|
79
|
+
export interface GitRepositoryState {
|
|
80
|
+
/**
|
|
81
|
+
* Identifier of API INTEGRATION containing information about the remote Git repository such as allowed credentials and prefixes for target URLs.
|
|
82
|
+
*/
|
|
83
|
+
apiIntegration?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* Specifies a comment for the git repository.
|
|
86
|
+
*/
|
|
87
|
+
comment?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* The database in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
90
|
+
*/
|
|
91
|
+
database?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Outputs the result of `DESCRIBE GIT REPOSITORY` for the given git repository.
|
|
94
|
+
*/
|
|
95
|
+
describeOutputs?: pulumi.Input<pulumi.Input<inputs.GitRepositoryDescribeOutput>[]>;
|
|
96
|
+
/**
|
|
97
|
+
* Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
98
|
+
*/
|
|
99
|
+
fullyQualifiedName?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Specifies the Snowflake secret fully qualified name (e.g `"\"<db_name>\".\"<schema_name>\".\"<secret_name>\""`) containing the credentials to use for authenticating with the remote Git repository. Omit this parameter to use the default secret specified by the API integration or if this integration does not require authentication.
|
|
102
|
+
*/
|
|
103
|
+
gitCredentials?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Specifies the identifier for the git repository; must be unique for the schema in which the git repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
106
|
+
*/
|
|
107
|
+
name?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Specifies the origin URL of the remote Git repository that this Git repository clone represents. The URL must use HTTPS.
|
|
110
|
+
*/
|
|
111
|
+
origin?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The schema in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
114
|
+
*/
|
|
115
|
+
schema?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Outputs the result of `SHOW GIT REPOSITORIES` for the given git repository.
|
|
118
|
+
*/
|
|
119
|
+
showOutputs?: pulumi.Input<pulumi.Input<inputs.GitRepositoryShowOutput>[]>;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* The set of arguments for constructing a GitRepository resource.
|
|
123
|
+
*/
|
|
124
|
+
export interface GitRepositoryArgs {
|
|
125
|
+
/**
|
|
126
|
+
* Identifier of API INTEGRATION containing information about the remote Git repository such as allowed credentials and prefixes for target URLs.
|
|
127
|
+
*/
|
|
128
|
+
apiIntegration: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* Specifies a comment for the git repository.
|
|
131
|
+
*/
|
|
132
|
+
comment?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* The database in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
135
|
+
*/
|
|
136
|
+
database: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* Specifies the Snowflake secret fully qualified name (e.g `"\"<db_name>\".\"<schema_name>\".\"<secret_name>\""`) containing the credentials to use for authenticating with the remote Git repository. Omit this parameter to use the default secret specified by the API integration or if this integration does not require authentication.
|
|
139
|
+
*/
|
|
140
|
+
gitCredentials?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* Specifies the identifier for the git repository; must be unique for the schema in which the git repository is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
143
|
+
*/
|
|
144
|
+
name?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Specifies the origin URL of the remote Git repository that this Git repository clone represents. The URL must use HTTPS.
|
|
147
|
+
*/
|
|
148
|
+
origin: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* The schema in which to create the git repository. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
151
|
+
*/
|
|
152
|
+
schema: pulumi.Input<string>;
|
|
153
|
+
}
|
package/gitRepository.js
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
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.GitRepository = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import snowflake:index/gitRepository:GitRepository example '"<db_name>"."<schema_name>"."<git_repository_name>"'
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
class GitRepository extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing GitRepository 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 GitRepository(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Returns true if the given object is an instance of GitRepository. 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'] === GitRepository.__pulumiType;
|
|
37
|
+
}
|
|
38
|
+
constructor(name, argsOrState, opts) {
|
|
39
|
+
let resourceInputs = {};
|
|
40
|
+
opts = opts || {};
|
|
41
|
+
if (opts.id) {
|
|
42
|
+
const state = argsOrState;
|
|
43
|
+
resourceInputs["apiIntegration"] = state ? state.apiIntegration : undefined;
|
|
44
|
+
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
45
|
+
resourceInputs["database"] = state ? state.database : undefined;
|
|
46
|
+
resourceInputs["describeOutputs"] = state ? state.describeOutputs : undefined;
|
|
47
|
+
resourceInputs["fullyQualifiedName"] = state ? state.fullyQualifiedName : undefined;
|
|
48
|
+
resourceInputs["gitCredentials"] = state ? state.gitCredentials : undefined;
|
|
49
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
50
|
+
resourceInputs["origin"] = state ? state.origin : undefined;
|
|
51
|
+
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
52
|
+
resourceInputs["showOutputs"] = state ? state.showOutputs : undefined;
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
const args = argsOrState;
|
|
56
|
+
if ((!args || args.apiIntegration === undefined) && !opts.urn) {
|
|
57
|
+
throw new Error("Missing required property 'apiIntegration'");
|
|
58
|
+
}
|
|
59
|
+
if ((!args || args.database === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'database'");
|
|
61
|
+
}
|
|
62
|
+
if ((!args || args.origin === undefined) && !opts.urn) {
|
|
63
|
+
throw new Error("Missing required property 'origin'");
|
|
64
|
+
}
|
|
65
|
+
if ((!args || args.schema === undefined) && !opts.urn) {
|
|
66
|
+
throw new Error("Missing required property 'schema'");
|
|
67
|
+
}
|
|
68
|
+
resourceInputs["apiIntegration"] = args ? args.apiIntegration : undefined;
|
|
69
|
+
resourceInputs["comment"] = args ? args.comment : undefined;
|
|
70
|
+
resourceInputs["database"] = args ? args.database : undefined;
|
|
71
|
+
resourceInputs["gitCredentials"] = args ? args.gitCredentials : undefined;
|
|
72
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
73
|
+
resourceInputs["origin"] = args ? args.origin : undefined;
|
|
74
|
+
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
75
|
+
resourceInputs["describeOutputs"] = undefined /*out*/;
|
|
76
|
+
resourceInputs["fullyQualifiedName"] = undefined /*out*/;
|
|
77
|
+
resourceInputs["showOutputs"] = undefined /*out*/;
|
|
78
|
+
}
|
|
79
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
80
|
+
super(GitRepository.__pulumiType, name, resourceInputs, opts);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.GitRepository = GitRepository;
|
|
84
|
+
/** @internal */
|
|
85
|
+
GitRepository.__pulumiType = 'snowflake:index/gitRepository:GitRepository';
|
|
86
|
+
//# sourceMappingURL=gitRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gitRepository.js","sourceRoot":"","sources":["../gitRepository.ts"],"names":[],"mappings":"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"}
|