@pulumi/databricks 1.36.0-alpha.1713461713 → 1.36.0-alpha.1713522095
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/catalog.d.ts +12 -0
- package/catalog.js +2 -0
- package/catalog.js.map +1 -1
- package/cluster.d.ts +3 -1
- package/cluster.js +3 -1
- package/cluster.js.map +1 -1
- package/getAwsCrossAccountPolicy.d.ts +4 -0
- package/getAwsCrossAccountPolicy.js +4 -0
- package/getAwsCrossAccountPolicy.js.map +1 -1
- package/getExternalLocation.d.ts +46 -0
- package/getExternalLocation.js +30 -0
- package/getExternalLocation.js.map +1 -0
- package/getExternalLocations.d.ts +78 -0
- package/getExternalLocations.js +64 -0
- package/getExternalLocations.js.map +1 -0
- package/getMetastore.d.ts +27 -6
- package/getMetastore.js +3 -0
- package/getMetastore.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +10 -4
- package/index.js.map +1 -1
- package/job.d.ts +6 -6
- package/job.js +2 -2
- package/job.js.map +1 -1
- package/lakehouseMonitor.d.ts +6 -6
- package/metastoreProvider.d.ts +1 -1
- package/metastoreProvider.js +1 -1
- package/mwsPrivateAccessSettings.d.ts +0 -8
- package/mwsPrivateAccessSettings.js +0 -2
- package/mwsPrivateAccessSettings.js.map +1 -1
- package/mwsWorkspaces.d.ts +9 -0
- package/mwsWorkspaces.js.map +1 -1
- package/package.json +1 -1
- package/pipeline.d.ts +3 -0
- package/pipeline.js +2 -0
- package/pipeline.js.map +1 -1
- package/recipient.d.ts +81 -1
- package/recipient.js +23 -1
- package/recipient.js.map +1 -1
- package/schema.d.ts +12 -0
- package/schema.js +2 -0
- package/schema.js.map +1 -1
- package/types/input.d.ts +216 -53
- package/types/output.d.ts +150 -43
package/catalog.d.ts
CHANGED
|
@@ -59,6 +59,10 @@ export declare class Catalog extends pulumi.CustomResource {
|
|
|
59
59
|
* For Foreign Catalogs: the name of the connection to an external data source. Changes forces creation of a new resource.
|
|
60
60
|
*/
|
|
61
61
|
readonly connectionName: pulumi.Output<string | undefined>;
|
|
62
|
+
/**
|
|
63
|
+
* Whether predictive optimization should be enabled for this object and objects under it. Can be `ENABLE`, `DISABLE` or `INHERIT`
|
|
64
|
+
*/
|
|
65
|
+
readonly enablePredictiveOptimization: pulumi.Output<string>;
|
|
62
66
|
/**
|
|
63
67
|
* Delete catalog regardless of its contents.
|
|
64
68
|
*/
|
|
@@ -124,6 +128,10 @@ export interface CatalogState {
|
|
|
124
128
|
* For Foreign Catalogs: the name of the connection to an external data source. Changes forces creation of a new resource.
|
|
125
129
|
*/
|
|
126
130
|
connectionName?: pulumi.Input<string>;
|
|
131
|
+
/**
|
|
132
|
+
* Whether predictive optimization should be enabled for this object and objects under it. Can be `ENABLE`, `DISABLE` or `INHERIT`
|
|
133
|
+
*/
|
|
134
|
+
enablePredictiveOptimization?: pulumi.Input<string>;
|
|
127
135
|
/**
|
|
128
136
|
* Delete catalog regardless of its contents.
|
|
129
137
|
*/
|
|
@@ -181,6 +189,10 @@ export interface CatalogArgs {
|
|
|
181
189
|
* For Foreign Catalogs: the name of the connection to an external data source. Changes forces creation of a new resource.
|
|
182
190
|
*/
|
|
183
191
|
connectionName?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* Whether predictive optimization should be enabled for this object and objects under it. Can be `ENABLE`, `DISABLE` or `INHERIT`
|
|
194
|
+
*/
|
|
195
|
+
enablePredictiveOptimization?: pulumi.Input<string>;
|
|
184
196
|
/**
|
|
185
197
|
* Delete catalog regardless of its contents.
|
|
186
198
|
*/
|
package/catalog.js
CHANGED
|
@@ -71,6 +71,7 @@ class Catalog extends pulumi.CustomResource {
|
|
|
71
71
|
const state = argsOrState;
|
|
72
72
|
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
73
73
|
resourceInputs["connectionName"] = state ? state.connectionName : undefined;
|
|
74
|
+
resourceInputs["enablePredictiveOptimization"] = state ? state.enablePredictiveOptimization : undefined;
|
|
74
75
|
resourceInputs["forceDestroy"] = state ? state.forceDestroy : undefined;
|
|
75
76
|
resourceInputs["isolationMode"] = state ? state.isolationMode : undefined;
|
|
76
77
|
resourceInputs["metastoreId"] = state ? state.metastoreId : undefined;
|
|
@@ -86,6 +87,7 @@ class Catalog extends pulumi.CustomResource {
|
|
|
86
87
|
const args = argsOrState;
|
|
87
88
|
resourceInputs["comment"] = args ? args.comment : undefined;
|
|
88
89
|
resourceInputs["connectionName"] = args ? args.connectionName : undefined;
|
|
90
|
+
resourceInputs["enablePredictiveOptimization"] = args ? args.enablePredictiveOptimization : undefined;
|
|
89
91
|
resourceInputs["forceDestroy"] = args ? args.forceDestroy : undefined;
|
|
90
92
|
resourceInputs["isolationMode"] = args ? args.isolationMode : undefined;
|
|
91
93
|
resourceInputs["metastoreId"] = args ? args.metastoreId : undefined;
|
package/catalog.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../catalog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../catalog.ts"],"names":[],"mappings":"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"}
|
package/cluster.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
95
95
|
readonly autoterminationMinutes: pulumi.Output<number | undefined>;
|
|
96
96
|
readonly awsAttributes: pulumi.Output<outputs.ClusterAwsAttributes | undefined>;
|
|
97
97
|
readonly azureAttributes: pulumi.Output<outputs.ClusterAzureAttributes | undefined>;
|
|
98
|
+
readonly cloneFrom: pulumi.Output<outputs.ClusterCloneFrom | undefined>;
|
|
98
99
|
readonly clusterId: pulumi.Output<string>;
|
|
99
100
|
readonly clusterLogConf: pulumi.Output<outputs.ClusterClusterLogConf | undefined>;
|
|
100
101
|
readonly clusterMountInfos: pulumi.Output<outputs.ClusterClusterMountInfo[] | undefined>;
|
|
@@ -277,6 +278,7 @@ export interface ClusterState {
|
|
|
277
278
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
278
279
|
awsAttributes?: pulumi.Input<inputs.ClusterAwsAttributes>;
|
|
279
280
|
azureAttributes?: pulumi.Input<inputs.ClusterAzureAttributes>;
|
|
281
|
+
cloneFrom?: pulumi.Input<inputs.ClusterCloneFrom>;
|
|
280
282
|
clusterId?: pulumi.Input<string>;
|
|
281
283
|
clusterLogConf?: pulumi.Input<inputs.ClusterClusterLogConf>;
|
|
282
284
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.ClusterClusterMountInfo>[]>;
|
|
@@ -451,7 +453,7 @@ export interface ClusterArgs {
|
|
|
451
453
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
452
454
|
awsAttributes?: pulumi.Input<inputs.ClusterAwsAttributes>;
|
|
453
455
|
azureAttributes?: pulumi.Input<inputs.ClusterAzureAttributes>;
|
|
454
|
-
|
|
456
|
+
cloneFrom?: pulumi.Input<inputs.ClusterCloneFrom>;
|
|
455
457
|
clusterLogConf?: pulumi.Input<inputs.ClusterClusterLogConf>;
|
|
456
458
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.ClusterClusterMountInfo>[]>;
|
|
457
459
|
/**
|
package/cluster.js
CHANGED
|
@@ -105,6 +105,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
105
105
|
resourceInputs["autoterminationMinutes"] = state ? state.autoterminationMinutes : undefined;
|
|
106
106
|
resourceInputs["awsAttributes"] = state ? state.awsAttributes : undefined;
|
|
107
107
|
resourceInputs["azureAttributes"] = state ? state.azureAttributes : undefined;
|
|
108
|
+
resourceInputs["cloneFrom"] = state ? state.cloneFrom : undefined;
|
|
108
109
|
resourceInputs["clusterId"] = state ? state.clusterId : undefined;
|
|
109
110
|
resourceInputs["clusterLogConf"] = state ? state.clusterLogConf : undefined;
|
|
110
111
|
resourceInputs["clusterMountInfos"] = state ? state.clusterMountInfos : undefined;
|
|
@@ -147,7 +148,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
147
148
|
resourceInputs["autoterminationMinutes"] = args ? args.autoterminationMinutes : undefined;
|
|
148
149
|
resourceInputs["awsAttributes"] = args ? args.awsAttributes : undefined;
|
|
149
150
|
resourceInputs["azureAttributes"] = args ? args.azureAttributes : undefined;
|
|
150
|
-
resourceInputs["
|
|
151
|
+
resourceInputs["cloneFrom"] = args ? args.cloneFrom : undefined;
|
|
151
152
|
resourceInputs["clusterLogConf"] = args ? args.clusterLogConf : undefined;
|
|
152
153
|
resourceInputs["clusterMountInfos"] = args ? args.clusterMountInfos : undefined;
|
|
153
154
|
resourceInputs["clusterName"] = args ? args.clusterName : undefined;
|
|
@@ -174,6 +175,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
174
175
|
resourceInputs["sparkVersion"] = args ? args.sparkVersion : undefined;
|
|
175
176
|
resourceInputs["sshPublicKeys"] = args ? args.sshPublicKeys : undefined;
|
|
176
177
|
resourceInputs["workloadType"] = args ? args.workloadType : undefined;
|
|
178
|
+
resourceInputs["clusterId"] = undefined /*out*/;
|
|
177
179
|
resourceInputs["clusterSource"] = undefined /*out*/;
|
|
178
180
|
resourceInputs["defaultTags"] = undefined /*out*/;
|
|
179
181
|
resourceInputs["state"] = undefined /*out*/;
|
package/cluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../cluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkEG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../cluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkEG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IA6KD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AA9RL,0BA+RC;AAjRG,gBAAgB;AACO,oBAAY,GAAG,kCAAkC,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** This data source could be only used with account-level provider!
|
|
4
|
+
*
|
|
3
5
|
* This data source constructs necessary AWS cross-account policy for you, which is based on [official documentation](https://docs.databricks.com/administration-guide/account-api/iam-role.html#language-Your%C2%A0VPC,%C2%A0default).
|
|
4
6
|
*
|
|
5
7
|
* ## Example Usage
|
|
@@ -75,6 +77,8 @@ export interface GetAwsCrossAccountPolicyResult {
|
|
|
75
77
|
readonly vpcId?: string;
|
|
76
78
|
}
|
|
77
79
|
/**
|
|
80
|
+
* > **Note** This data source could be only used with account-level provider!
|
|
81
|
+
*
|
|
78
82
|
* This data source constructs necessary AWS cross-account policy for you, which is based on [official documentation](https://docs.databricks.com/administration-guide/account-api/iam-role.html#language-Your%C2%A0VPC,%C2%A0default).
|
|
79
83
|
*
|
|
80
84
|
* ## Example Usage
|
|
@@ -6,6 +6,8 @@ exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = void
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** This data source could be only used with account-level provider!
|
|
10
|
+
*
|
|
9
11
|
* This data source constructs necessary AWS cross-account policy for you, which is based on [official documentation](https://docs.databricks.com/administration-guide/account-api/iam-role.html#language-Your%C2%A0VPC,%C2%A0default).
|
|
10
12
|
*
|
|
11
13
|
* ## Example Usage
|
|
@@ -44,6 +46,8 @@ function getAwsCrossAccountPolicy(args, opts) {
|
|
|
44
46
|
}
|
|
45
47
|
exports.getAwsCrossAccountPolicy = getAwsCrossAccountPolicy;
|
|
46
48
|
/**
|
|
49
|
+
* > **Note** This data source could be only used with account-level provider!
|
|
50
|
+
*
|
|
47
51
|
* This data source constructs necessary AWS cross-account policy for you, which is based on [official documentation](https://docs.databricks.com/administration-guide/account-api/iam-role.html#language-Your%C2%A0VPC,%C2%A0default).
|
|
48
52
|
*
|
|
49
53
|
* ## Example Usage
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAwsCrossAccountPolicy.js","sourceRoot":"","sources":["../getAwsCrossAccountPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getAwsCrossAccountPolicy.js","sourceRoot":"","sources":["../getAwsCrossAccountPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAA2B;IACrG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oEAAoE,EAAE;QAC/F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4DAYC;AAoDD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,8BAA8B,CAAC,IAAyC,EAAE,IAA2B;IACjH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,wBAAwB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnF,CAAC;AAFD,wEAEC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* Getting details of an existing external location in the metastore
|
|
8
|
+
*/
|
|
9
|
+
export declare function getExternalLocation(args: GetExternalLocationArgs, opts?: pulumi.InvokeOptions): Promise<GetExternalLocationResult>;
|
|
10
|
+
/**
|
|
11
|
+
* A collection of arguments for invoking getExternalLocation.
|
|
12
|
+
*/
|
|
13
|
+
export interface GetExternalLocationArgs {
|
|
14
|
+
externalLocationInfo?: inputs.GetExternalLocationExternalLocationInfo;
|
|
15
|
+
/**
|
|
16
|
+
* The name of the storage credential
|
|
17
|
+
*/
|
|
18
|
+
name: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* A collection of values returned by getExternalLocation.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetExternalLocationResult {
|
|
24
|
+
readonly externalLocationInfo: outputs.GetExternalLocationExternalLocationInfo;
|
|
25
|
+
/**
|
|
26
|
+
* The provider-assigned unique ID for this managed resource.
|
|
27
|
+
*/
|
|
28
|
+
readonly id: string;
|
|
29
|
+
readonly name: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* Getting details of an existing external location in the metastore
|
|
35
|
+
*/
|
|
36
|
+
export declare function getExternalLocationOutput(args: GetExternalLocationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetExternalLocationResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getExternalLocation.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetExternalLocationOutputArgs {
|
|
41
|
+
externalLocationInfo?: pulumi.Input<inputs.GetExternalLocationExternalLocationInfoArgs>;
|
|
42
|
+
/**
|
|
43
|
+
* The name of the storage credential
|
|
44
|
+
*/
|
|
45
|
+
name: pulumi.Input<string>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getExternalLocationOutput = exports.getExternalLocation = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* Getting details of an existing external location in the metastore
|
|
12
|
+
*/
|
|
13
|
+
function getExternalLocation(args, opts) {
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
15
|
+
return pulumi.runtime.invoke("databricks:index/getExternalLocation:getExternalLocation", {
|
|
16
|
+
"externalLocationInfo": args.externalLocationInfo,
|
|
17
|
+
"name": args.name,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getExternalLocation = getExternalLocation;
|
|
21
|
+
/**
|
|
22
|
+
* ## Example Usage
|
|
23
|
+
*
|
|
24
|
+
* Getting details of an existing external location in the metastore
|
|
25
|
+
*/
|
|
26
|
+
function getExternalLocationOutput(args, opts) {
|
|
27
|
+
return pulumi.output(args).apply((a) => getExternalLocation(a, opts));
|
|
28
|
+
}
|
|
29
|
+
exports.getExternalLocationOutput = getExternalLocationOutput;
|
|
30
|
+
//# sourceMappingURL=getExternalLocation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getExternalLocation.js","sourceRoot":"","sources":["../getExternalLocation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AAwBD;;;;GAIG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Example Usage
|
|
4
|
+
*
|
|
5
|
+
* List all external locations in the metastore
|
|
6
|
+
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as databricks from "@pulumi/databricks";
|
|
11
|
+
*
|
|
12
|
+
* const all = databricks.getExternalLocations({});
|
|
13
|
+
* export const allExternalLocations = all.then(all => all.names);
|
|
14
|
+
* ```
|
|
15
|
+
* <!--End PulumiCodeChooser -->
|
|
16
|
+
*
|
|
17
|
+
* ## Related Resources
|
|
18
|
+
*
|
|
19
|
+
* The following resources are used in the same context:
|
|
20
|
+
*
|
|
21
|
+
* * databricks.ExternalLocation to get information about a single external location
|
|
22
|
+
* * databricks.ExternalLocation to manage external locations within Unity Catalog.
|
|
23
|
+
*/
|
|
24
|
+
export declare function getExternalLocations(args?: GetExternalLocationsArgs, opts?: pulumi.InvokeOptions): Promise<GetExternalLocationsResult>;
|
|
25
|
+
/**
|
|
26
|
+
* A collection of arguments for invoking getExternalLocations.
|
|
27
|
+
*/
|
|
28
|
+
export interface GetExternalLocationsArgs {
|
|
29
|
+
/**
|
|
30
|
+
* List of names of databricks.ExternalLocation in the metastore
|
|
31
|
+
*/
|
|
32
|
+
names?: string[];
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* A collection of values returned by getExternalLocations.
|
|
36
|
+
*/
|
|
37
|
+
export interface GetExternalLocationsResult {
|
|
38
|
+
/**
|
|
39
|
+
* The provider-assigned unique ID for this managed resource.
|
|
40
|
+
*/
|
|
41
|
+
readonly id: string;
|
|
42
|
+
/**
|
|
43
|
+
* List of names of databricks.ExternalLocation in the metastore
|
|
44
|
+
*/
|
|
45
|
+
readonly names: string[];
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* ## Example Usage
|
|
49
|
+
*
|
|
50
|
+
* List all external locations in the metastore
|
|
51
|
+
*
|
|
52
|
+
* <!--Start PulumiCodeChooser -->
|
|
53
|
+
* ```typescript
|
|
54
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
55
|
+
* import * as databricks from "@pulumi/databricks";
|
|
56
|
+
*
|
|
57
|
+
* const all = databricks.getExternalLocations({});
|
|
58
|
+
* export const allExternalLocations = all.then(all => all.names);
|
|
59
|
+
* ```
|
|
60
|
+
* <!--End PulumiCodeChooser -->
|
|
61
|
+
*
|
|
62
|
+
* ## Related Resources
|
|
63
|
+
*
|
|
64
|
+
* The following resources are used in the same context:
|
|
65
|
+
*
|
|
66
|
+
* * databricks.ExternalLocation to get information about a single external location
|
|
67
|
+
* * databricks.ExternalLocation to manage external locations within Unity Catalog.
|
|
68
|
+
*/
|
|
69
|
+
export declare function getExternalLocationsOutput(args?: GetExternalLocationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetExternalLocationsResult>;
|
|
70
|
+
/**
|
|
71
|
+
* A collection of arguments for invoking getExternalLocations.
|
|
72
|
+
*/
|
|
73
|
+
export interface GetExternalLocationsOutputArgs {
|
|
74
|
+
/**
|
|
75
|
+
* List of names of databricks.ExternalLocation in the metastore
|
|
76
|
+
*/
|
|
77
|
+
names?: pulumi.Input<pulumi.Input<string>[]>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getExternalLocationsOutput = exports.getExternalLocations = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* List all external locations in the metastore
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as databricks from "@pulumi/databricks";
|
|
17
|
+
*
|
|
18
|
+
* const all = databricks.getExternalLocations({});
|
|
19
|
+
* export const allExternalLocations = all.then(all => all.names);
|
|
20
|
+
* ```
|
|
21
|
+
* <!--End PulumiCodeChooser -->
|
|
22
|
+
*
|
|
23
|
+
* ## Related Resources
|
|
24
|
+
*
|
|
25
|
+
* The following resources are used in the same context:
|
|
26
|
+
*
|
|
27
|
+
* * databricks.ExternalLocation to get information about a single external location
|
|
28
|
+
* * databricks.ExternalLocation to manage external locations within Unity Catalog.
|
|
29
|
+
*/
|
|
30
|
+
function getExternalLocations(args, opts) {
|
|
31
|
+
args = args || {};
|
|
32
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
33
|
+
return pulumi.runtime.invoke("databricks:index/getExternalLocations:getExternalLocations", {
|
|
34
|
+
"names": args.names,
|
|
35
|
+
}, opts);
|
|
36
|
+
}
|
|
37
|
+
exports.getExternalLocations = getExternalLocations;
|
|
38
|
+
/**
|
|
39
|
+
* ## Example Usage
|
|
40
|
+
*
|
|
41
|
+
* List all external locations in the metastore
|
|
42
|
+
*
|
|
43
|
+
* <!--Start PulumiCodeChooser -->
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as databricks from "@pulumi/databricks";
|
|
47
|
+
*
|
|
48
|
+
* const all = databricks.getExternalLocations({});
|
|
49
|
+
* export const allExternalLocations = all.then(all => all.names);
|
|
50
|
+
* ```
|
|
51
|
+
* <!--End PulumiCodeChooser -->
|
|
52
|
+
*
|
|
53
|
+
* ## Related Resources
|
|
54
|
+
*
|
|
55
|
+
* The following resources are used in the same context:
|
|
56
|
+
*
|
|
57
|
+
* * databricks.ExternalLocation to get information about a single external location
|
|
58
|
+
* * databricks.ExternalLocation to manage external locations within Unity Catalog.
|
|
59
|
+
*/
|
|
60
|
+
function getExternalLocationsOutput(args, opts) {
|
|
61
|
+
return pulumi.output(args).apply((a) => getExternalLocations(a, opts));
|
|
62
|
+
}
|
|
63
|
+
exports.getExternalLocationsOutput = getExternalLocationsOutput;
|
|
64
|
+
//# sourceMappingURL=getExternalLocations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getExternalLocations.js","sourceRoot":"","sources":["../getExternalLocations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AAyBD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,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/getMetastore.d.ts
CHANGED
|
@@ -32,19 +32,27 @@ import * as outputs from "./types/output";
|
|
|
32
32
|
* * databricks.Metastore to manage Metastores within Unity Catalog.
|
|
33
33
|
* * databricks.Catalog to manage catalogs within Unity Catalog.
|
|
34
34
|
*/
|
|
35
|
-
export declare function getMetastore(args
|
|
35
|
+
export declare function getMetastore(args?: GetMetastoreArgs, opts?: pulumi.InvokeOptions): Promise<GetMetastoreResult>;
|
|
36
36
|
/**
|
|
37
37
|
* A collection of arguments for invoking getMetastore.
|
|
38
38
|
*/
|
|
39
39
|
export interface GetMetastoreArgs {
|
|
40
40
|
/**
|
|
41
|
-
* Id of the metastore
|
|
41
|
+
* Id of the metastore
|
|
42
42
|
*/
|
|
43
|
-
metastoreId
|
|
43
|
+
metastoreId?: string;
|
|
44
44
|
/**
|
|
45
45
|
* MetastoreInfo object for a databricks_metastore. This contains the following attributes:
|
|
46
46
|
*/
|
|
47
47
|
metastoreInfo?: inputs.GetMetastoreMetastoreInfo;
|
|
48
|
+
/**
|
|
49
|
+
* Name of the metastore
|
|
50
|
+
*/
|
|
51
|
+
name?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Region of the metastore
|
|
54
|
+
*/
|
|
55
|
+
region?: string;
|
|
48
56
|
}
|
|
49
57
|
/**
|
|
50
58
|
* A collection of values returned by getMetastore.
|
|
@@ -59,6 +67,11 @@ export interface GetMetastoreResult {
|
|
|
59
67
|
* MetastoreInfo object for a databricks_metastore. This contains the following attributes:
|
|
60
68
|
*/
|
|
61
69
|
readonly metastoreInfo: outputs.GetMetastoreMetastoreInfo;
|
|
70
|
+
/**
|
|
71
|
+
* Name of metastore.
|
|
72
|
+
*/
|
|
73
|
+
readonly name: string;
|
|
74
|
+
readonly region: string;
|
|
62
75
|
}
|
|
63
76
|
/**
|
|
64
77
|
* ## Example Usage
|
|
@@ -91,17 +104,25 @@ export interface GetMetastoreResult {
|
|
|
91
104
|
* * databricks.Metastore to manage Metastores within Unity Catalog.
|
|
92
105
|
* * databricks.Catalog to manage catalogs within Unity Catalog.
|
|
93
106
|
*/
|
|
94
|
-
export declare function getMetastoreOutput(args
|
|
107
|
+
export declare function getMetastoreOutput(args?: GetMetastoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMetastoreResult>;
|
|
95
108
|
/**
|
|
96
109
|
* A collection of arguments for invoking getMetastore.
|
|
97
110
|
*/
|
|
98
111
|
export interface GetMetastoreOutputArgs {
|
|
99
112
|
/**
|
|
100
|
-
* Id of the metastore
|
|
113
|
+
* Id of the metastore
|
|
101
114
|
*/
|
|
102
|
-
metastoreId
|
|
115
|
+
metastoreId?: pulumi.Input<string>;
|
|
103
116
|
/**
|
|
104
117
|
* MetastoreInfo object for a databricks_metastore. This contains the following attributes:
|
|
105
118
|
*/
|
|
106
119
|
metastoreInfo?: pulumi.Input<inputs.GetMetastoreMetastoreInfoArgs>;
|
|
120
|
+
/**
|
|
121
|
+
* Name of the metastore
|
|
122
|
+
*/
|
|
123
|
+
name?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* Region of the metastore
|
|
126
|
+
*/
|
|
127
|
+
region?: pulumi.Input<string>;
|
|
107
128
|
}
|
package/getMetastore.js
CHANGED
|
@@ -37,10 +37,13 @@ const utilities = require("./utilities");
|
|
|
37
37
|
* * databricks.Catalog to manage catalogs within Unity Catalog.
|
|
38
38
|
*/
|
|
39
39
|
function getMetastore(args, opts) {
|
|
40
|
+
args = args || {};
|
|
40
41
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
41
42
|
return pulumi.runtime.invoke("databricks:index/getMetastore:getMetastore", {
|
|
42
43
|
"metastoreId": args.metastoreId,
|
|
43
44
|
"metastoreInfo": args.metastoreInfo,
|
|
45
|
+
"name": args.name,
|
|
46
|
+
"region": args.region,
|
|
44
47
|
}, opts);
|
|
45
48
|
}
|
|
46
49
|
exports.getMetastore = getMetastore;
|
package/getMetastore.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMetastore.js","sourceRoot":"","sources":["../getMetastore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"getMetastore.js","sourceRoot":"","sources":["../getMetastore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,oCAUC;AA2CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,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/index.d.ts
CHANGED
|
@@ -79,6 +79,12 @@ export declare const getDbfsFilePathsOutput: typeof import("./getDbfsFilePaths")
|
|
|
79
79
|
export { GetDirectoryArgs, GetDirectoryResult, GetDirectoryOutputArgs } from "./getDirectory";
|
|
80
80
|
export declare const getDirectory: typeof import("./getDirectory").getDirectory;
|
|
81
81
|
export declare const getDirectoryOutput: typeof import("./getDirectory").getDirectoryOutput;
|
|
82
|
+
export { GetExternalLocationArgs, GetExternalLocationResult, GetExternalLocationOutputArgs } from "./getExternalLocation";
|
|
83
|
+
export declare const getExternalLocation: typeof import("./getExternalLocation").getExternalLocation;
|
|
84
|
+
export declare const getExternalLocationOutput: typeof import("./getExternalLocation").getExternalLocationOutput;
|
|
85
|
+
export { GetExternalLocationsArgs, GetExternalLocationsResult, GetExternalLocationsOutputArgs } from "./getExternalLocations";
|
|
86
|
+
export declare const getExternalLocations: typeof import("./getExternalLocations").getExternalLocations;
|
|
87
|
+
export declare const getExternalLocationsOutput: typeof import("./getExternalLocations").getExternalLocationsOutput;
|
|
82
88
|
export { GetGroupArgs, GetGroupResult, GetGroupOutputArgs } from "./getGroup";
|
|
83
89
|
export declare const getGroup: typeof import("./getGroup").getGroup;
|
|
84
90
|
export declare const getGroupOutput: typeof import("./getGroup").getGroupOutput;
|
package/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.types = exports.config = exports.WorkspaceFile = exports.WorkspaceConf = exports.Volume = exports.VectorSearchIndex = exports.VectorSearchEndpoint = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = exports.SystemSchema = exports.StorageCredential = exports.SqlWidget = exports.SqlVisualization = exports.SqlTable = exports.SqlQuery = exports.SqlPermissions = exports.SqlGlobalConfig = exports.SqlEndpoint = exports.SqlDashboard = exports.SqlAlert = void 0;
|
|
5
|
+
exports.getInstanceProfiles = exports.getInstancePoolOutput = exports.getInstancePool = exports.getGroupOutput = exports.getGroup = exports.getExternalLocationsOutput = exports.getExternalLocations = exports.getExternalLocationOutput = exports.getExternalLocation = exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUserOutput = exports.getCurrentUser = exports.getCurrentMetastoreOutput = exports.getCurrentMetastore = exports.getCurrentConfigOutput = exports.getCurrentConfig = exports.getClustersOutput = exports.getClusters = exports.getClusterPolicyOutput = exports.getClusterPolicy = exports.getClusterOutput = exports.getCluster = exports.getCatalogsOutput = exports.getCatalogs = exports.getAwsUnityCatalogPolicyOutput = exports.getAwsUnityCatalogPolicy = exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = exports.getAwsBucketPolicyOutput = exports.getAwsBucketPolicy = exports.getAwsAssumeRolePolicyOutput = exports.getAwsAssumeRolePolicy = exports.File = exports.ExternalLocation = exports.Entitlements = exports.Directory = exports.DefaultNamespaceSetting = exports.DbfsFile = exports.Connection = exports.ClusterPolicy = exports.Cluster = exports.CatalogWorkspaceBinding = exports.Catalog = exports.ArtifactAllowlist = exports.AccessControlRuleSet = void 0;
|
|
6
|
+
exports.getVolumes = exports.getViewsOutput = exports.getViews = exports.getUserOutput = exports.getUser = exports.getTablesOutput = exports.getTables = exports.getStorageCredentialsOutput = exports.getStorageCredentials = exports.getStorageCredentialOutput = exports.getStorageCredential = exports.getSqlWarehousesOutput = exports.getSqlWarehouses = exports.getSqlWarehouseOutput = exports.getSqlWarehouse = exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getPipelinesOutput = exports.getPipelines = exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = exports.getMwsCredentialsOutput = exports.getMwsCredentials = exports.getMlflowModelOutput = exports.getMlflowModel = exports.getMetastoresOutput = exports.getMetastores = exports.getMetastoreOutput = exports.getMetastore = exports.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getInstanceProfilesOutput = void 0;
|
|
7
|
+
exports.SecretScope = exports.SecretAcl = exports.Secret = exports.Schema = exports.RestrictWorkspaceAdminsSetting = exports.Repo = exports.RegisteredModel = exports.Recipient = exports.Provider = exports.Pipeline = exports.Permissions = exports.PermissionAssignment = exports.OnlineTable = exports.OboToken = exports.Notebook = exports.MwsWorkspaces = exports.MwsVpcEndpoint = exports.MwsStorageConfigurations = exports.MwsPrivateAccessSettings = exports.MwsPermissionAssignment = exports.MwsNetworks = exports.MwsLogDelivery = exports.MwsCustomerManagedKeys = exports.MwsCredentials = exports.Mount = exports.ModelServing = exports.MlflowWebhook = exports.MlflowModel = exports.MlflowExperiment = exports.MetastoreProvider = exports.MetastoreDataAccess = exports.MetastoreAssignment = exports.Metastore = exports.Library = exports.LakehouseMonitor = exports.Job = exports.IpAccessList = exports.InstanceProfile = exports.InstancePool = exports.GroupRole = exports.GroupMember = exports.GroupInstanceProfile = exports.Group = exports.Grants = exports.Grant = exports.GlobalInitScript = exports.GitCredential = exports.getZonesOutput = exports.getZones = exports.getVolumesOutput = void 0;
|
|
8
|
+
exports.types = exports.config = exports.WorkspaceFile = exports.WorkspaceConf = exports.Volume = exports.VectorSearchIndex = exports.VectorSearchEndpoint = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = exports.SystemSchema = exports.StorageCredential = exports.SqlWidget = exports.SqlVisualization = exports.SqlTable = exports.SqlQuery = exports.SqlPermissions = exports.SqlGlobalConfig = exports.SqlEndpoint = exports.SqlDashboard = exports.SqlAlert = exports.Share = exports.ServicePrincipalSecret = exports.ServicePrincipalRole = exports.ServicePrincipal = void 0;
|
|
9
9
|
const pulumi = require("@pulumi/pulumi");
|
|
10
10
|
const utilities = require("./utilities");
|
|
11
11
|
exports.AccessControlRuleSet = null;
|
|
@@ -76,6 +76,12 @@ utilities.lazyLoad(exports, ["getDbfsFilePaths", "getDbfsFilePathsOutput"], () =
|
|
|
76
76
|
exports.getDirectory = null;
|
|
77
77
|
exports.getDirectoryOutput = null;
|
|
78
78
|
utilities.lazyLoad(exports, ["getDirectory", "getDirectoryOutput"], () => require("./getDirectory"));
|
|
79
|
+
exports.getExternalLocation = null;
|
|
80
|
+
exports.getExternalLocationOutput = null;
|
|
81
|
+
utilities.lazyLoad(exports, ["getExternalLocation", "getExternalLocationOutput"], () => require("./getExternalLocation"));
|
|
82
|
+
exports.getExternalLocations = null;
|
|
83
|
+
exports.getExternalLocationsOutput = null;
|
|
84
|
+
utilities.lazyLoad(exports, ["getExternalLocations", "getExternalLocationsOutput"], () => require("./getExternalLocations"));
|
|
79
85
|
exports.getGroup = null;
|
|
80
86
|
exports.getGroupOutput = null;
|
|
81
87
|
utilities.lazyLoad(exports, ["getGroup", "getGroupOutput"], () => require("./getGroup"));
|