@pulumi/snowflake 0.35.0 → 0.35.1-alpha.1696372187
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/externalFunction.d.ts +3 -3
- package/externalTable.d.ts +9 -9
- package/failoverGroup.d.ts +3 -3
- package/function.d.ts +3 -3
- package/getExternalFunctions.d.ts +0 -12
- package/getExternalFunctions.js.map +1 -1
- package/getExternalTables.d.ts +0 -12
- package/getExternalTables.js.map +1 -1
- package/getFileFormats.d.ts +0 -12
- package/getFileFormats.js.map +1 -1
- package/getFunctions.d.ts +0 -12
- package/getFunctions.js.map +1 -1
- package/getMaskingPolicies.d.ts +0 -12
- package/getMaskingPolicies.js.map +1 -1
- package/getMaterializedViews.d.ts +0 -12
- package/getMaterializedViews.js.map +1 -1
- package/getPipes.d.ts +0 -12
- package/getPipes.js.map +1 -1
- package/getProcedures.d.ts +0 -12
- package/getProcedures.js.map +1 -1
- package/getRowAccessPolicies.d.ts +0 -12
- package/getRowAccessPolicies.js.map +1 -1
- package/getSchemas.d.ts +0 -6
- package/getSchemas.js.map +1 -1
- package/getSequences.d.ts +0 -12
- package/getSequences.js.map +1 -1
- package/getStages.d.ts +0 -12
- package/getStages.js.map +1 -1
- package/getStreams.d.ts +0 -12
- package/getStreams.js.map +1 -1
- package/getTables.d.ts +0 -12
- package/getTables.js.map +1 -1
- package/getTasks.d.ts +0 -12
- package/getTasks.js.map +1 -1
- package/getViews.d.ts +0 -12
- package/getViews.js.map +1 -1
- package/maskingPolicy.d.ts +3 -3
- package/materializedView.d.ts +9 -9
- package/package.json +1 -1
- package/procedure.d.ts +3 -3
- package/role.d.ts +9 -0
- package/role.js.map +1 -1
- package/schema.d.ts +6 -6
- package/stage.d.ts +9 -9
- package/table.d.ts +12 -12
- package/tableConstraint.d.ts +6 -6
- package/types/input.d.ts +63 -3
- package/types/output.d.ts +57 -96
- package/view.d.ts +9 -9
package/externalFunction.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export declare class ExternalFunction extends pulumi.CustomResource {
|
|
|
89
89
|
*/
|
|
90
90
|
readonly maxBatchRows: pulumi.Output<number | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Argument name
|
|
93
93
|
*/
|
|
94
94
|
readonly name: pulumi.Output<string>;
|
|
95
95
|
/**
|
|
@@ -174,7 +174,7 @@ export interface ExternalFunctionState {
|
|
|
174
174
|
*/
|
|
175
175
|
maxBatchRows?: pulumi.Input<number>;
|
|
176
176
|
/**
|
|
177
|
-
*
|
|
177
|
+
* Argument name
|
|
178
178
|
*/
|
|
179
179
|
name?: pulumi.Input<string>;
|
|
180
180
|
/**
|
|
@@ -247,7 +247,7 @@ export interface ExternalFunctionArgs {
|
|
|
247
247
|
*/
|
|
248
248
|
maxBatchRows?: pulumi.Input<number>;
|
|
249
249
|
/**
|
|
250
|
-
*
|
|
250
|
+
* Argument name
|
|
251
251
|
*/
|
|
252
252
|
name?: pulumi.Input<string>;
|
|
253
253
|
/**
|
package/externalTable.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export declare class ExternalTable extends pulumi.CustomResource {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly copyGrants: pulumi.Output<boolean | undefined>;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Name of the database that the tag was created in.
|
|
75
75
|
*/
|
|
76
76
|
readonly database: pulumi.Output<string>;
|
|
77
77
|
/**
|
|
@@ -83,7 +83,7 @@ export declare class ExternalTable extends pulumi.CustomResource {
|
|
|
83
83
|
*/
|
|
84
84
|
readonly location: pulumi.Output<string>;
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Column name
|
|
87
87
|
*/
|
|
88
88
|
readonly name: pulumi.Output<string>;
|
|
89
89
|
/**
|
|
@@ -103,7 +103,7 @@ export declare class ExternalTable extends pulumi.CustomResource {
|
|
|
103
103
|
*/
|
|
104
104
|
readonly refreshOnCreate: pulumi.Output<boolean | undefined>;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* Name of the schema that the tag was created in.
|
|
107
107
|
*/
|
|
108
108
|
readonly schema: pulumi.Output<string>;
|
|
109
109
|
/**
|
|
@@ -146,7 +146,7 @@ export interface ExternalTableState {
|
|
|
146
146
|
*/
|
|
147
147
|
copyGrants?: pulumi.Input<boolean>;
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* Name of the database that the tag was created in.
|
|
150
150
|
*/
|
|
151
151
|
database?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
@@ -158,7 +158,7 @@ export interface ExternalTableState {
|
|
|
158
158
|
*/
|
|
159
159
|
location?: pulumi.Input<string>;
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* Column name
|
|
162
162
|
*/
|
|
163
163
|
name?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -178,7 +178,7 @@ export interface ExternalTableState {
|
|
|
178
178
|
*/
|
|
179
179
|
refreshOnCreate?: pulumi.Input<boolean>;
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Name of the schema that the tag was created in.
|
|
182
182
|
*/
|
|
183
183
|
schema?: pulumi.Input<string>;
|
|
184
184
|
/**
|
|
@@ -213,7 +213,7 @@ export interface ExternalTableArgs {
|
|
|
213
213
|
*/
|
|
214
214
|
copyGrants?: pulumi.Input<boolean>;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Name of the database that the tag was created in.
|
|
217
217
|
*/
|
|
218
218
|
database: pulumi.Input<string>;
|
|
219
219
|
/**
|
|
@@ -225,7 +225,7 @@ export interface ExternalTableArgs {
|
|
|
225
225
|
*/
|
|
226
226
|
location: pulumi.Input<string>;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Column name
|
|
229
229
|
*/
|
|
230
230
|
name?: pulumi.Input<string>;
|
|
231
231
|
/**
|
|
@@ -241,7 +241,7 @@ export interface ExternalTableArgs {
|
|
|
241
241
|
*/
|
|
242
242
|
refreshOnCreate?: pulumi.Input<boolean>;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* Name of the schema that the tag was created in.
|
|
245
245
|
*/
|
|
246
246
|
schema: pulumi.Input<string>;
|
|
247
247
|
/**
|
package/failoverGroup.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export declare class FailoverGroup extends pulumi.CustomResource {
|
|
|
86
86
|
*/
|
|
87
87
|
readonly ignoreEditionCheck: pulumi.Output<boolean | undefined>;
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* Identifier for the primary failover group in the source account.
|
|
90
90
|
*/
|
|
91
91
|
readonly name: pulumi.Output<string>;
|
|
92
92
|
/**
|
|
@@ -135,7 +135,7 @@ export interface FailoverGroupState {
|
|
|
135
135
|
*/
|
|
136
136
|
ignoreEditionCheck?: pulumi.Input<boolean>;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Identifier for the primary failover group in the source account.
|
|
139
139
|
*/
|
|
140
140
|
name?: pulumi.Input<string>;
|
|
141
141
|
/**
|
|
@@ -176,7 +176,7 @@ export interface FailoverGroupArgs {
|
|
|
176
176
|
*/
|
|
177
177
|
ignoreEditionCheck?: pulumi.Input<boolean>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* Identifier for the primary failover group in the source account.
|
|
180
180
|
*/
|
|
181
181
|
name?: pulumi.Input<string>;
|
|
182
182
|
/**
|
package/function.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly language: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* The argument name
|
|
59
59
|
*/
|
|
60
60
|
readonly name: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
@@ -132,7 +132,7 @@ export interface FunctionState {
|
|
|
132
132
|
*/
|
|
133
133
|
language?: pulumi.Input<string>;
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* The argument name
|
|
136
136
|
*/
|
|
137
137
|
name?: pulumi.Input<string>;
|
|
138
138
|
/**
|
|
@@ -201,7 +201,7 @@ export interface FunctionArgs {
|
|
|
201
201
|
*/
|
|
202
202
|
language?: pulumi.Input<string>;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* The argument name
|
|
205
205
|
*/
|
|
206
206
|
name?: pulumi.Input<string>;
|
|
207
207
|
/**
|
|
@@ -18,13 +18,7 @@ export declare function getExternalFunctions(args: GetExternalFunctionsArgs, opt
|
|
|
18
18
|
* A collection of arguments for invoking getExternalFunctions.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetExternalFunctionsArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the external functions from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getExternalFunctionsOutput(args: GetExternalFunctionsOut
|
|
|
66
60
|
* A collection of arguments for invoking getExternalFunctions.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetExternalFunctionsOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the external functions from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getExternalFunctions.js","sourceRoot":"","sources":["../getExternalFunctions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;
|
|
1
|
+
{"version":3,"file":"getExternalFunctions.js","sourceRoot":"","sources":["../getExternalFunctions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/getExternalTables.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getExternalTables(args: GetExternalTablesArgs, opts?: pu
|
|
|
18
18
|
* A collection of arguments for invoking getExternalTables.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetExternalTablesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the external tables from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getExternalTablesOutput(args: GetExternalTablesOutputArg
|
|
|
66
60
|
* A collection of arguments for invoking getExternalTables.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetExternalTablesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the external tables from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getExternalTables.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getExternalTables.js","sourceRoot":"","sources":["../getExternalTables.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;
|
|
1
|
+
{"version":3,"file":"getExternalTables.js","sourceRoot":"","sources":["../getExternalTables.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
package/getFileFormats.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getFileFormats(args: GetFileFormatsArgs, opts?: pulumi.I
|
|
|
18
18
|
* A collection of arguments for invoking getFileFormats.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetFileFormatsArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the file formats from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getFileFormatsOutput(args: GetFileFormatsOutputArgs, opt
|
|
|
66
60
|
* A collection of arguments for invoking getFileFormats.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetFileFormatsOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the file formats from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getFileFormats.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFileFormats.js","sourceRoot":"","sources":["../getFileFormats.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;
|
|
1
|
+
{"version":3,"file":"getFileFormats.js","sourceRoot":"","sources":["../getFileFormats.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getFunctions.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getFunctions(args: GetFunctionsArgs, opts?: pulumi.Invok
|
|
|
18
18
|
* A collection of arguments for invoking getFunctions.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetFunctionsArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the functions from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getFunctionsOutput(args: GetFunctionsOutputArgs, opts?:
|
|
|
66
60
|
* A collection of arguments for invoking getFunctions.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetFunctionsOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the functions from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getFunctions.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFunctions.js","sourceRoot":"","sources":["../getFunctions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oCAOC;
|
|
1
|
+
{"version":3,"file":"getFunctions.js","sourceRoot":"","sources":["../getFunctions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oCAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
|
package/getMaskingPolicies.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getMaskingPolicies(args: GetMaskingPoliciesArgs, opts?:
|
|
|
18
18
|
* A collection of arguments for invoking getMaskingPolicies.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetMaskingPoliciesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the maskingPolicies from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getMaskingPoliciesOutput(args: GetMaskingPoliciesOutputA
|
|
|
66
60
|
* A collection of arguments for invoking getMaskingPolicies.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetMaskingPoliciesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the maskingPolicies from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMaskingPolicies.js","sourceRoot":"","sources":["../getMaskingPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uDAAuD,EAAE;QAClF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;
|
|
1
|
+
{"version":3,"file":"getMaskingPolicies.js","sourceRoot":"","sources":["../getMaskingPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uDAAuD,EAAE;QAClF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
|
@@ -18,13 +18,7 @@ export declare function getMaterializedViews(args: GetMaterializedViewsArgs, opt
|
|
|
18
18
|
* A collection of arguments for invoking getMaterializedViews.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetMaterializedViewsArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the views from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getMaterializedViewsOutput(args: GetMaterializedViewsOut
|
|
|
66
60
|
* A collection of arguments for invoking getMaterializedViews.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetMaterializedViewsOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the views from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMaterializedViews.js","sourceRoot":"","sources":["../getMaterializedViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;
|
|
1
|
+
{"version":3,"file":"getMaterializedViews.js","sourceRoot":"","sources":["../getMaterializedViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/getPipes.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getPipes(args: GetPipesArgs, opts?: pulumi.InvokeOptions
|
|
|
18
18
|
* A collection of arguments for invoking getPipes.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetPipesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the pipes from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getPipesOutput(args: GetPipesOutputArgs, opts?: pulumi.I
|
|
|
66
60
|
* A collection of arguments for invoking getPipes.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetPipesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the pipes from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getPipes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPipes.js","sourceRoot":"","sources":["../getPipes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;
|
|
1
|
+
{"version":3,"file":"getPipes.js","sourceRoot":"","sources":["../getPipes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/getProcedures.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getProcedures(args: GetProceduresArgs, opts?: pulumi.Inv
|
|
|
18
18
|
* A collection of arguments for invoking getProcedures.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetProceduresArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the procedures from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getProceduresOutput(args: GetProceduresOutputArgs, opts?
|
|
|
66
60
|
* A collection of arguments for invoking getProcedures.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetProceduresOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the procedures from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getProcedures.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProcedures.js","sourceRoot":"","sources":["../getProcedures.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;
|
|
1
|
+
{"version":3,"file":"getProcedures.js","sourceRoot":"","sources":["../getProcedures.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
|
@@ -18,13 +18,7 @@ export declare function getRowAccessPolicies(args: GetRowAccessPoliciesArgs, opt
|
|
|
18
18
|
* A collection of arguments for invoking getRowAccessPolicies.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetRowAccessPoliciesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the row access policyfrom.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getRowAccessPoliciesOutput(args: GetRowAccessPoliciesOut
|
|
|
66
60
|
* A collection of arguments for invoking getRowAccessPolicies.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetRowAccessPoliciesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the row access policyfrom.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRowAccessPolicies.js","sourceRoot":"","sources":["../getRowAccessPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;
|
|
1
|
+
{"version":3,"file":"getRowAccessPolicies.js","sourceRoot":"","sources":["../getRowAccessPolicies.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/getSchemas.d.ts
CHANGED
|
@@ -17,9 +17,6 @@ export declare function getSchemas(args: GetSchemasArgs, opts?: pulumi.InvokeOpt
|
|
|
17
17
|
* A collection of arguments for invoking getSchemas.
|
|
18
18
|
*/
|
|
19
19
|
export interface GetSchemasArgs {
|
|
20
|
-
/**
|
|
21
|
-
* The database from which to return the schemas from.
|
|
22
|
-
*/
|
|
23
20
|
database: string;
|
|
24
21
|
}
|
|
25
22
|
/**
|
|
@@ -56,8 +53,5 @@ export declare function getSchemasOutput(args: GetSchemasOutputArgs, opts?: pulu
|
|
|
56
53
|
* A collection of arguments for invoking getSchemas.
|
|
57
54
|
*/
|
|
58
55
|
export interface GetSchemasOutputArgs {
|
|
59
|
-
/**
|
|
60
|
-
* The database from which to return the schemas from.
|
|
61
|
-
*/
|
|
62
56
|
database: pulumi.Input<string>;
|
|
63
57
|
}
|
package/getSchemas.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemas.js","sourceRoot":"","sources":["../getSchemas.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;
|
|
1
|
+
{"version":3,"file":"getSchemas.js","sourceRoot":"","sources":["../getSchemas.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AA0BD;;;;;;;;;;;GAWG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getSequences.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getSequences(args: GetSequencesArgs, opts?: pulumi.Invok
|
|
|
18
18
|
* A collection of arguments for invoking getSequences.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetSequencesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the sequences from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getSequencesOutput(args: GetSequencesOutputArgs, opts?:
|
|
|
66
60
|
* A collection of arguments for invoking getSequences.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetSequencesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the sequences from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getSequences.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSequences.js","sourceRoot":"","sources":["../getSequences.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oCAOC;
|
|
1
|
+
{"version":3,"file":"getSequences.js","sourceRoot":"","sources":["../getSequences.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oCAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
|
package/getStages.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getStages(args: GetStagesArgs, opts?: pulumi.InvokeOptio
|
|
|
18
18
|
* A collection of arguments for invoking getStages.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetStagesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the stages from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getStagesOutput(args: GetStagesOutputArgs, opts?: pulumi
|
|
|
66
60
|
* A collection of arguments for invoking getStages.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetStagesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the stages from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getStages.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStages.js","sourceRoot":"","sources":["../getStages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,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,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;
|
|
1
|
+
{"version":3,"file":"getStages.js","sourceRoot":"","sources":["../getStages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,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,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|
package/getStreams.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getStreams(args: GetStreamsArgs, opts?: pulumi.InvokeOpt
|
|
|
18
18
|
* A collection of arguments for invoking getStreams.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetStreamsArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the streams from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the streams from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getStreamsOutput(args: GetStreamsOutputArgs, opts?: pulu
|
|
|
66
60
|
* A collection of arguments for invoking getStreams.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetStreamsOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the streams from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the streams from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getStreams.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStreams.js","sourceRoot":"","sources":["../getStreams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;
|
|
1
|
+
{"version":3,"file":"getStreams.js","sourceRoot":"","sources":["../getStreams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getTables.d.ts
CHANGED
|
@@ -18,13 +18,7 @@ export declare function getTables(args: GetTablesArgs, opts?: pulumi.InvokeOptio
|
|
|
18
18
|
* A collection of arguments for invoking getTables.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetTablesArgs {
|
|
21
|
-
/**
|
|
22
|
-
* The database from which to return the schemas from.
|
|
23
|
-
*/
|
|
24
21
|
database: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema from which to return the tables from.
|
|
27
|
-
*/
|
|
28
22
|
schema: string;
|
|
29
23
|
}
|
|
30
24
|
/**
|
|
@@ -66,12 +60,6 @@ export declare function getTablesOutput(args: GetTablesOutputArgs, opts?: pulumi
|
|
|
66
60
|
* A collection of arguments for invoking getTables.
|
|
67
61
|
*/
|
|
68
62
|
export interface GetTablesOutputArgs {
|
|
69
|
-
/**
|
|
70
|
-
* The database from which to return the schemas from.
|
|
71
|
-
*/
|
|
72
63
|
database: pulumi.Input<string>;
|
|
73
|
-
/**
|
|
74
|
-
* The schema from which to return the tables from.
|
|
75
|
-
*/
|
|
76
64
|
schema: pulumi.Input<string>;
|
|
77
65
|
}
|
package/getTables.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTables.js","sourceRoot":"","sources":["../getTables.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,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,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;
|
|
1
|
+
{"version":3,"file":"getTables.js","sourceRoot":"","sources":["../getTables.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,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,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AA+BD;;;;;;;;;;;;GAYG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|