@pulumi/databricks 1.5.0-alpha.1669138979 → 1.5.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/cluster.d.ts +18 -6
- package/cluster.js +2 -0
- package/cluster.js.map +1 -1
- package/config/vars.d.ts +3 -0
- package/config/vars.js +18 -0
- package/config/vars.js.map +1 -1
- package/getAwsBucketPolicy.d.ts +9 -0
- package/getAwsBucketPolicy.js +1 -0
- package/getAwsBucketPolicy.js.map +1 -1
- package/getShare.d.ts +94 -0
- package/getShare.js +48 -0
- package/getShare.js.map +1 -0
- package/getShares.d.ts +54 -0
- package/getShares.js +43 -0
- package/getShares.js.map +1 -0
- package/grants.d.ts +6 -0
- package/grants.js +4 -0
- package/grants.js.map +1 -1
- package/index.d.ts +12 -0
- package/index.js +107 -91
- package/index.js.map +1 -1
- package/job.d.ts +3 -0
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/metastoreAssignment.d.ts +1 -1
- package/metastoreAssignment.js +1 -1
- package/mwsCustomerManagedKeys.d.ts +0 -51
- package/mwsCustomerManagedKeys.js +0 -51
- package/mwsCustomerManagedKeys.js.map +1 -1
- package/mwsVpcEndpoint.d.ts +3 -3
- package/mwsWorkspaces.d.ts +0 -9
- package/mwsWorkspaces.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/pipeline.d.ts +3 -3
- package/provider.d.ts +6 -0
- package/provider.js +4 -1
- package/provider.js.map +1 -1
- package/recipient.d.ts +15 -26
- package/recipient.js +6 -26
- package/recipient.js.map +1 -1
- package/servicePrincipalSecret.d.ts +45 -0
- package/servicePrincipalSecret.js +58 -0
- package/servicePrincipalSecret.js.map +1 -0
- package/share.d.ts +90 -0
- package/share.js +68 -0
- package/share.js.map +1 -0
- package/sqlEndpoint.d.ts +12 -0
- package/sqlEndpoint.js +2 -0
- package/sqlEndpoint.js.map +1 -1
- package/sqlGlobalConfig.d.ts +12 -3
- package/sqlGlobalConfig.js.map +1 -1
- package/sqlVisualization.d.ts +3 -0
- package/sqlVisualization.js +2 -0
- package/sqlVisualization.js.map +1 -1
- package/storageCredential.d.ts +58 -0
- package/storageCredential.js +58 -0
- package/storageCredential.js.map +1 -1
- package/types/input.d.ts +288 -167
- package/types/output.d.ts +82 -0
package/cluster.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
32
32
|
readonly applyPolicyDefaultValues: pulumi.Output<boolean | undefined>;
|
|
33
33
|
readonly autoscale: pulumi.Output<outputs.ClusterAutoscale | undefined>;
|
|
34
34
|
/**
|
|
35
|
-
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`.
|
|
35
|
+
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`. *We highly recommend having this setting present for Interactive/BI clusters.*
|
|
36
36
|
*/
|
|
37
37
|
readonly autoterminationMinutes: pulumi.Output<number | undefined>;
|
|
38
38
|
readonly awsAttributes: pulumi.Output<outputs.ClusterAwsAttributes | undefined>;
|
|
@@ -73,7 +73,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
73
73
|
*/
|
|
74
74
|
readonly enableElasticDisk: pulumi.Output<boolean>;
|
|
75
75
|
/**
|
|
76
|
-
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk.
|
|
76
|
+
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk. *Your workloads may run more slowly because of the performance impact of reading and writing encrypted data to and from local volumes. This feature is not available for all Azure Databricks subscriptions. Contact your Microsoft or Databricks account representative to request access.*
|
|
77
77
|
*/
|
|
78
78
|
readonly enableLocalDiskEncryption: pulumi.Output<boolean>;
|
|
79
79
|
readonly gcpAttributes: pulumi.Output<outputs.ClusterGcpAttributes | undefined>;
|
|
@@ -100,6 +100,10 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
100
100
|
* Identifier of Cluster Policy to validate cluster and preset certain defaults. *The primary use for cluster policies is to allow users to create policy-scoped clusters via UI rather than sharing configuration for API-created clusters.* For example, when you specify `policyId` of [external metastore](https://docs.databricks.com/administration-guide/clusters/policies.html#external-metastore-policy) policy, you still have to fill in relevant keys for `sparkConf`.
|
|
101
101
|
*/
|
|
102
102
|
readonly policyId: pulumi.Output<string | undefined>;
|
|
103
|
+
/**
|
|
104
|
+
* The type of runtime engine to use. If not specified, the runtime engine type is inferred based on the sparkVersion value. Allowed values include: `PHOTON`, `STANDARD`.
|
|
105
|
+
*/
|
|
106
|
+
readonly runtimeEngine: pulumi.Output<string | undefined>;
|
|
103
107
|
/**
|
|
104
108
|
* The optional user name of the user to assign to an interactive cluster. This field is required when using standard AAD Passthrough for Azure Data Lake Storage (ADLS) with a single-user cluster (i.e., not high-concurrency clusters).
|
|
105
109
|
*/
|
|
@@ -149,7 +153,7 @@ export interface ClusterState {
|
|
|
149
153
|
applyPolicyDefaultValues?: pulumi.Input<boolean>;
|
|
150
154
|
autoscale?: pulumi.Input<inputs.ClusterAutoscale>;
|
|
151
155
|
/**
|
|
152
|
-
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`.
|
|
156
|
+
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`. *We highly recommend having this setting present for Interactive/BI clusters.*
|
|
153
157
|
*/
|
|
154
158
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
155
159
|
awsAttributes?: pulumi.Input<inputs.ClusterAwsAttributes>;
|
|
@@ -190,7 +194,7 @@ export interface ClusterState {
|
|
|
190
194
|
*/
|
|
191
195
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
192
196
|
/**
|
|
193
|
-
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk.
|
|
197
|
+
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk. *Your workloads may run more slowly because of the performance impact of reading and writing encrypted data to and from local volumes. This feature is not available for all Azure Databricks subscriptions. Contact your Microsoft or Databricks account representative to request access.*
|
|
194
198
|
*/
|
|
195
199
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
196
200
|
gcpAttributes?: pulumi.Input<inputs.ClusterGcpAttributes>;
|
|
@@ -217,6 +221,10 @@ export interface ClusterState {
|
|
|
217
221
|
* Identifier of Cluster Policy to validate cluster and preset certain defaults. *The primary use for cluster policies is to allow users to create policy-scoped clusters via UI rather than sharing configuration for API-created clusters.* For example, when you specify `policyId` of [external metastore](https://docs.databricks.com/administration-guide/clusters/policies.html#external-metastore-policy) policy, you still have to fill in relevant keys for `sparkConf`.
|
|
218
222
|
*/
|
|
219
223
|
policyId?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* The type of runtime engine to use. If not specified, the runtime engine type is inferred based on the sparkVersion value. Allowed values include: `PHOTON`, `STANDARD`.
|
|
226
|
+
*/
|
|
227
|
+
runtimeEngine?: pulumi.Input<string>;
|
|
220
228
|
/**
|
|
221
229
|
* The optional user name of the user to assign to an interactive cluster. This field is required when using standard AAD Passthrough for Azure Data Lake Storage (ADLS) with a single-user cluster (i.e., not high-concurrency clusters).
|
|
222
230
|
*/
|
|
@@ -258,7 +266,7 @@ export interface ClusterArgs {
|
|
|
258
266
|
applyPolicyDefaultValues?: pulumi.Input<boolean>;
|
|
259
267
|
autoscale?: pulumi.Input<inputs.ClusterAutoscale>;
|
|
260
268
|
/**
|
|
261
|
-
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`.
|
|
269
|
+
* Automatically terminate the cluster after being inactive for this time in minutes. If specified, the threshold must be between 10 and 10000 minutes. You can also set this value to 0 to explicitly disable automatic termination. Defaults to `60`. *We highly recommend having this setting present for Interactive/BI clusters.*
|
|
262
270
|
*/
|
|
263
271
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
264
272
|
awsAttributes?: pulumi.Input<inputs.ClusterAwsAttributes>;
|
|
@@ -293,7 +301,7 @@ export interface ClusterArgs {
|
|
|
293
301
|
*/
|
|
294
302
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
295
303
|
/**
|
|
296
|
-
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk.
|
|
304
|
+
* Some instance types you use to run clusters may have locally attached disks. Databricks may store shuffle data or temporary data on these locally attached disks. To ensure that all data at rest is encrypted for all storage types, including shuffle data stored temporarily on your cluster’s local disks, you can enable local disk encryption. When local disk encryption is enabled, Databricks generates an encryption key locally unique to each cluster node and uses it to encrypt all data stored on local disks. The scope of the key is local to each cluster node and is destroyed along with the cluster node itself. During its lifetime, the key resides in memory for encryption and decryption and is stored encrypted on the disk. *Your workloads may run more slowly because of the performance impact of reading and writing encrypted data to and from local volumes. This feature is not available for all Azure Databricks subscriptions. Contact your Microsoft or Databricks account representative to request access.*
|
|
297
305
|
*/
|
|
298
306
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
299
307
|
gcpAttributes?: pulumi.Input<inputs.ClusterGcpAttributes>;
|
|
@@ -320,6 +328,10 @@ export interface ClusterArgs {
|
|
|
320
328
|
* Identifier of Cluster Policy to validate cluster and preset certain defaults. *The primary use for cluster policies is to allow users to create policy-scoped clusters via UI rather than sharing configuration for API-created clusters.* For example, when you specify `policyId` of [external metastore](https://docs.databricks.com/administration-guide/clusters/policies.html#external-metastore-policy) policy, you still have to fill in relevant keys for `sparkConf`.
|
|
321
329
|
*/
|
|
322
330
|
policyId?: pulumi.Input<string>;
|
|
331
|
+
/**
|
|
332
|
+
* The type of runtime engine to use. If not specified, the runtime engine type is inferred based on the sparkVersion value. Allowed values include: `PHOTON`, `STANDARD`.
|
|
333
|
+
*/
|
|
334
|
+
runtimeEngine?: pulumi.Input<string>;
|
|
323
335
|
/**
|
|
324
336
|
* The optional user name of the user to assign to an interactive cluster. This field is required when using standard AAD Passthrough for Azure Data Lake Storage (ADLS) with a single-user cluster (i.e., not high-concurrency clusters).
|
|
325
337
|
*/
|
package/cluster.js
CHANGED
|
@@ -67,6 +67,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
67
67
|
resourceInputs["nodeTypeId"] = state ? state.nodeTypeId : undefined;
|
|
68
68
|
resourceInputs["numWorkers"] = state ? state.numWorkers : undefined;
|
|
69
69
|
resourceInputs["policyId"] = state ? state.policyId : undefined;
|
|
70
|
+
resourceInputs["runtimeEngine"] = state ? state.runtimeEngine : undefined;
|
|
70
71
|
resourceInputs["singleUserName"] = state ? state.singleUserName : undefined;
|
|
71
72
|
resourceInputs["sparkConf"] = state ? state.sparkConf : undefined;
|
|
72
73
|
resourceInputs["sparkEnvVars"] = state ? state.sparkEnvVars : undefined;
|
|
@@ -105,6 +106,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
105
106
|
resourceInputs["nodeTypeId"] = args ? args.nodeTypeId : undefined;
|
|
106
107
|
resourceInputs["numWorkers"] = args ? args.numWorkers : undefined;
|
|
107
108
|
resourceInputs["policyId"] = args ? args.policyId : undefined;
|
|
109
|
+
resourceInputs["runtimeEngine"] = args ? args.runtimeEngine : undefined;
|
|
108
110
|
resourceInputs["singleUserName"] = args ? args.singleUserName : undefined;
|
|
109
111
|
resourceInputs["sparkConf"] = args ? args.sparkConf : undefined;
|
|
110
112
|
resourceInputs["sparkEnvVars"] = args ? args.sparkEnvVars : undefined;
|
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;;;;;;;;GAQG;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":"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"}
|
package/config/vars.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export declare const azureLoginAppId: string | undefined;
|
|
|
7
7
|
export declare const azureTenantId: string | undefined;
|
|
8
8
|
export declare const azureUseMsi: boolean | undefined;
|
|
9
9
|
export declare const azureWorkspaceResourceId: string | undefined;
|
|
10
|
+
export declare const clientId: string | undefined;
|
|
11
|
+
export declare const clientSecret: string | undefined;
|
|
10
12
|
export declare const configFile: string | undefined;
|
|
11
13
|
export declare const debugHeaders: boolean | undefined;
|
|
12
14
|
export declare const debugTruncateBytes: number | undefined;
|
|
@@ -19,4 +21,5 @@ export declare const profile: string | undefined;
|
|
|
19
21
|
export declare const rateLimit: number | undefined;
|
|
20
22
|
export declare const skipVerify: boolean | undefined;
|
|
21
23
|
export declare const token: string | undefined;
|
|
24
|
+
export declare const tokenEndpoint: string | undefined;
|
|
22
25
|
export declare const username: string | undefined;
|
package/config/vars.js
CHANGED
|
@@ -58,6 +58,18 @@ Object.defineProperty(exports, "azureWorkspaceResourceId", {
|
|
|
58
58
|
},
|
|
59
59
|
enumerable: true,
|
|
60
60
|
});
|
|
61
|
+
Object.defineProperty(exports, "clientId", {
|
|
62
|
+
get() {
|
|
63
|
+
return __config.get("clientId");
|
|
64
|
+
},
|
|
65
|
+
enumerable: true,
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "clientSecret", {
|
|
68
|
+
get() {
|
|
69
|
+
return __config.get("clientSecret");
|
|
70
|
+
},
|
|
71
|
+
enumerable: true,
|
|
72
|
+
});
|
|
61
73
|
Object.defineProperty(exports, "configFile", {
|
|
62
74
|
get() {
|
|
63
75
|
return __config.get("configFile");
|
|
@@ -130,6 +142,12 @@ Object.defineProperty(exports, "token", {
|
|
|
130
142
|
},
|
|
131
143
|
enumerable: true,
|
|
132
144
|
});
|
|
145
|
+
Object.defineProperty(exports, "tokenEndpoint", {
|
|
146
|
+
get() {
|
|
147
|
+
return __config.get("tokenEndpoint");
|
|
148
|
+
},
|
|
149
|
+
enumerable: true,
|
|
150
|
+
});
|
|
133
151
|
Object.defineProperty(exports, "username", {
|
|
134
152
|
get() {
|
|
135
153
|
return __config.get("username");
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
|
package/getAwsBucketPolicy.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface GetAwsBucketPolicyArgs {
|
|
|
21
21
|
*/
|
|
22
22
|
bucket: string;
|
|
23
23
|
databricksAccountId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Your Databricks E2 account ID. Used to generate restrictive IAM policies that will increase the security of your root bucket
|
|
26
|
+
*/
|
|
27
|
+
databricksE2AccountId?: string;
|
|
24
28
|
/**
|
|
25
29
|
* Data access role that can have full access for this bucket
|
|
26
30
|
*/
|
|
@@ -32,6 +36,7 @@ export interface GetAwsBucketPolicyArgs {
|
|
|
32
36
|
export interface GetAwsBucketPolicyResult {
|
|
33
37
|
readonly bucket: string;
|
|
34
38
|
readonly databricksAccountId?: string;
|
|
39
|
+
readonly databricksE2AccountId?: string;
|
|
35
40
|
readonly fullAccessRole?: string;
|
|
36
41
|
/**
|
|
37
42
|
* The provider-assigned unique ID for this managed resource.
|
|
@@ -52,6 +57,10 @@ export interface GetAwsBucketPolicyOutputArgs {
|
|
|
52
57
|
*/
|
|
53
58
|
bucket: pulumi.Input<string>;
|
|
54
59
|
databricksAccountId?: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* Your Databricks E2 account ID. Used to generate restrictive IAM policies that will increase the security of your root bucket
|
|
62
|
+
*/
|
|
63
|
+
databricksE2AccountId?: pulumi.Input<string>;
|
|
55
64
|
/**
|
|
56
65
|
* Data access role that can have full access for this bucket
|
|
57
66
|
*/
|
package/getAwsBucketPolicy.js
CHANGED
|
@@ -25,6 +25,7 @@ function getAwsBucketPolicy(args, opts) {
|
|
|
25
25
|
return pulumi.runtime.invoke("databricks:index/getAwsBucketPolicy:getAwsBucketPolicy", {
|
|
26
26
|
"bucket": args.bucket,
|
|
27
27
|
"databricksAccountId": args.databricksAccountId,
|
|
28
|
+
"databricksE2AccountId": args.databricksE2AccountId,
|
|
28
29
|
"fullAccessRole": args.fullAccessRole,
|
|
29
30
|
}, opts);
|
|
30
31
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAwsBucketPolicy.js","sourceRoot":"","sources":["../getAwsBucketPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getAwsBucketPolicy.js","sourceRoot":"","sources":["../getAwsBucketPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,gDAYC;AAuCD,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,4DAEC"}
|
package/getShare.d.ts
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
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 share in the metastore
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as databricks from "@pulumi/databricks";
|
|
12
|
+
*
|
|
13
|
+
* const this = databricks.getShare({
|
|
14
|
+
* name: "this",
|
|
15
|
+
* });
|
|
16
|
+
* export const createdBy = _this.then(_this => _this.createdBy);
|
|
17
|
+
* ```
|
|
18
|
+
* ## Related Resources
|
|
19
|
+
*
|
|
20
|
+
* The following resources are used in the same context:
|
|
21
|
+
*
|
|
22
|
+
* * databricks.Share to create Delta Sharing shares.
|
|
23
|
+
* * databricks.Recipient to create Delta Sharing recipients.
|
|
24
|
+
* * databricks.Grants to manage Delta Sharing permissions.
|
|
25
|
+
*/
|
|
26
|
+
export declare function getShare(args?: GetShareArgs, opts?: pulumi.InvokeOptions): Promise<GetShareResult>;
|
|
27
|
+
/**
|
|
28
|
+
* A collection of arguments for invoking getShare.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetShareArgs {
|
|
31
|
+
/**
|
|
32
|
+
* Time when the share was created.
|
|
33
|
+
*/
|
|
34
|
+
createdAt?: number;
|
|
35
|
+
/**
|
|
36
|
+
* The principal that created the share.
|
|
37
|
+
*/
|
|
38
|
+
createdBy?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The name of the share
|
|
41
|
+
*/
|
|
42
|
+
name?: string;
|
|
43
|
+
/**
|
|
44
|
+
* arrays containing details of each object in the share.
|
|
45
|
+
*/
|
|
46
|
+
objects?: inputs.GetShareObject[];
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* A collection of values returned by getShare.
|
|
50
|
+
*/
|
|
51
|
+
export interface GetShareResult {
|
|
52
|
+
/**
|
|
53
|
+
* Time when the share was created.
|
|
54
|
+
*/
|
|
55
|
+
readonly createdAt: number;
|
|
56
|
+
/**
|
|
57
|
+
* The principal that created the share.
|
|
58
|
+
*/
|
|
59
|
+
readonly createdBy: string;
|
|
60
|
+
/**
|
|
61
|
+
* The provider-assigned unique ID for this managed resource.
|
|
62
|
+
*/
|
|
63
|
+
readonly id: string;
|
|
64
|
+
/**
|
|
65
|
+
* Full name of the object being shared.
|
|
66
|
+
*/
|
|
67
|
+
readonly name: string;
|
|
68
|
+
/**
|
|
69
|
+
* arrays containing details of each object in the share.
|
|
70
|
+
*/
|
|
71
|
+
readonly objects: outputs.GetShareObject[];
|
|
72
|
+
}
|
|
73
|
+
export declare function getShareOutput(args?: GetShareOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetShareResult>;
|
|
74
|
+
/**
|
|
75
|
+
* A collection of arguments for invoking getShare.
|
|
76
|
+
*/
|
|
77
|
+
export interface GetShareOutputArgs {
|
|
78
|
+
/**
|
|
79
|
+
* Time when the share was created.
|
|
80
|
+
*/
|
|
81
|
+
createdAt?: pulumi.Input<number>;
|
|
82
|
+
/**
|
|
83
|
+
* The principal that created the share.
|
|
84
|
+
*/
|
|
85
|
+
createdBy?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The name of the share
|
|
88
|
+
*/
|
|
89
|
+
name?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* arrays containing details of each object in the share.
|
|
92
|
+
*/
|
|
93
|
+
objects?: pulumi.Input<pulumi.Input<inputs.GetShareObjectArgs>[]>;
|
|
94
|
+
}
|
package/getShare.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
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.getShareOutput = exports.getShare = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* Getting details of an existing share in the metastore
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as databricks from "@pulumi/databricks";
|
|
16
|
+
*
|
|
17
|
+
* const this = databricks.getShare({
|
|
18
|
+
* name: "this",
|
|
19
|
+
* });
|
|
20
|
+
* export const createdBy = _this.then(_this => _this.createdBy);
|
|
21
|
+
* ```
|
|
22
|
+
* ## Related Resources
|
|
23
|
+
*
|
|
24
|
+
* The following resources are used in the same context:
|
|
25
|
+
*
|
|
26
|
+
* * databricks.Share to create Delta Sharing shares.
|
|
27
|
+
* * databricks.Recipient to create Delta Sharing recipients.
|
|
28
|
+
* * databricks.Grants to manage Delta Sharing permissions.
|
|
29
|
+
*/
|
|
30
|
+
function getShare(args, opts) {
|
|
31
|
+
args = args || {};
|
|
32
|
+
if (!opts) {
|
|
33
|
+
opts = {};
|
|
34
|
+
}
|
|
35
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
36
|
+
return pulumi.runtime.invoke("databricks:index/getShare:getShare", {
|
|
37
|
+
"createdAt": args.createdAt,
|
|
38
|
+
"createdBy": args.createdBy,
|
|
39
|
+
"name": args.name,
|
|
40
|
+
"objects": args.objects,
|
|
41
|
+
}, opts);
|
|
42
|
+
}
|
|
43
|
+
exports.getShare = getShare;
|
|
44
|
+
function getShareOutput(args, opts) {
|
|
45
|
+
return pulumi.output(args).apply(a => getShare(a, opts));
|
|
46
|
+
}
|
|
47
|
+
exports.getShareOutput = getShareOutput;
|
|
48
|
+
//# sourceMappingURL=getShare.js.map
|
package/getShare.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getShare.js","sourceRoot":"","sources":["../getShare.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,4BAaC;AAkDD,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAFD,wCAEC"}
|
package/getShares.d.ts
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Example Usage
|
|
4
|
+
*
|
|
5
|
+
* Getting all existing shares in the metastore
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as databricks from "@pulumi/databricks";
|
|
10
|
+
*
|
|
11
|
+
* const this = databricks.getShares({});
|
|
12
|
+
* export const shareName = _this.then(_this => _this.shares);
|
|
13
|
+
* ```
|
|
14
|
+
* ## Related Resources
|
|
15
|
+
*
|
|
16
|
+
* The following resources are used in the same context:
|
|
17
|
+
*
|
|
18
|
+
* * databricks.Share to create Delta Sharing shares.
|
|
19
|
+
* * databricks.Recipient to create Delta Sharing recipients.
|
|
20
|
+
* * databricks.Grants to manage Delta Sharing permissions.
|
|
21
|
+
*/
|
|
22
|
+
export declare function getShares(args?: GetSharesArgs, opts?: pulumi.InvokeOptions): Promise<GetSharesResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getShares.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetSharesArgs {
|
|
27
|
+
/**
|
|
28
|
+
* list of databricks.Share names.
|
|
29
|
+
*/
|
|
30
|
+
shares?: string[];
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getShares.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetSharesResult {
|
|
36
|
+
/**
|
|
37
|
+
* The provider-assigned unique ID for this managed resource.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
/**
|
|
41
|
+
* list of databricks.Share names.
|
|
42
|
+
*/
|
|
43
|
+
readonly shares: string[];
|
|
44
|
+
}
|
|
45
|
+
export declare function getSharesOutput(args?: GetSharesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSharesResult>;
|
|
46
|
+
/**
|
|
47
|
+
* A collection of arguments for invoking getShares.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetSharesOutputArgs {
|
|
50
|
+
/**
|
|
51
|
+
* list of databricks.Share names.
|
|
52
|
+
*/
|
|
53
|
+
shares?: pulumi.Input<pulumi.Input<string>[]>;
|
|
54
|
+
}
|
package/getShares.js
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
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.getSharesOutput = exports.getShares = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* Getting all existing shares in the metastore
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as databricks from "@pulumi/databricks";
|
|
16
|
+
*
|
|
17
|
+
* const this = databricks.getShares({});
|
|
18
|
+
* export const shareName = _this.then(_this => _this.shares);
|
|
19
|
+
* ```
|
|
20
|
+
* ## Related Resources
|
|
21
|
+
*
|
|
22
|
+
* The following resources are used in the same context:
|
|
23
|
+
*
|
|
24
|
+
* * databricks.Share to create Delta Sharing shares.
|
|
25
|
+
* * databricks.Recipient to create Delta Sharing recipients.
|
|
26
|
+
* * databricks.Grants to manage Delta Sharing permissions.
|
|
27
|
+
*/
|
|
28
|
+
function getShares(args, opts) {
|
|
29
|
+
args = args || {};
|
|
30
|
+
if (!opts) {
|
|
31
|
+
opts = {};
|
|
32
|
+
}
|
|
33
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
34
|
+
return pulumi.runtime.invoke("databricks:index/getShares:getShares", {
|
|
35
|
+
"shares": args.shares,
|
|
36
|
+
}, opts);
|
|
37
|
+
}
|
|
38
|
+
exports.getShares = getShares;
|
|
39
|
+
function getSharesOutput(args, opts) {
|
|
40
|
+
return pulumi.output(args).apply(a => getShares(a, opts));
|
|
41
|
+
}
|
|
42
|
+
exports.getSharesOutput = getSharesOutput;
|
|
43
|
+
//# sourceMappingURL=getShares.js.map
|
package/getShares.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getShares.js","sourceRoot":"","sources":["../getShares.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AA0BD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/grants.d.ts
CHANGED
|
@@ -21,8 +21,10 @@ export declare class Grants extends pulumi.CustomResource {
|
|
|
21
21
|
readonly externalLocation: pulumi.Output<string | undefined>;
|
|
22
22
|
readonly function: pulumi.Output<string | undefined>;
|
|
23
23
|
readonly grants: pulumi.Output<outputs.GrantsGrant[]>;
|
|
24
|
+
readonly materializedView: pulumi.Output<string | undefined>;
|
|
24
25
|
readonly metastore: pulumi.Output<string | undefined>;
|
|
25
26
|
readonly schema: pulumi.Output<string | undefined>;
|
|
27
|
+
readonly share: pulumi.Output<string | undefined>;
|
|
26
28
|
readonly storageCredential: pulumi.Output<string | undefined>;
|
|
27
29
|
readonly table: pulumi.Output<string | undefined>;
|
|
28
30
|
readonly view: pulumi.Output<string | undefined>;
|
|
@@ -43,8 +45,10 @@ export interface GrantsState {
|
|
|
43
45
|
externalLocation?: pulumi.Input<string>;
|
|
44
46
|
function?: pulumi.Input<string>;
|
|
45
47
|
grants?: pulumi.Input<pulumi.Input<inputs.GrantsGrant>[]>;
|
|
48
|
+
materializedView?: pulumi.Input<string>;
|
|
46
49
|
metastore?: pulumi.Input<string>;
|
|
47
50
|
schema?: pulumi.Input<string>;
|
|
51
|
+
share?: pulumi.Input<string>;
|
|
48
52
|
storageCredential?: pulumi.Input<string>;
|
|
49
53
|
table?: pulumi.Input<string>;
|
|
50
54
|
view?: pulumi.Input<string>;
|
|
@@ -57,8 +61,10 @@ export interface GrantsArgs {
|
|
|
57
61
|
externalLocation?: pulumi.Input<string>;
|
|
58
62
|
function?: pulumi.Input<string>;
|
|
59
63
|
grants: pulumi.Input<pulumi.Input<inputs.GrantsGrant>[]>;
|
|
64
|
+
materializedView?: pulumi.Input<string>;
|
|
60
65
|
metastore?: pulumi.Input<string>;
|
|
61
66
|
schema?: pulumi.Input<string>;
|
|
67
|
+
share?: pulumi.Input<string>;
|
|
62
68
|
storageCredential?: pulumi.Input<string>;
|
|
63
69
|
table?: pulumi.Input<string>;
|
|
64
70
|
view?: pulumi.Input<string>;
|
package/grants.js
CHANGED
|
@@ -37,8 +37,10 @@ class Grants extends pulumi.CustomResource {
|
|
|
37
37
|
resourceInputs["externalLocation"] = state ? state.externalLocation : undefined;
|
|
38
38
|
resourceInputs["function"] = state ? state.function : undefined;
|
|
39
39
|
resourceInputs["grants"] = state ? state.grants : undefined;
|
|
40
|
+
resourceInputs["materializedView"] = state ? state.materializedView : undefined;
|
|
40
41
|
resourceInputs["metastore"] = state ? state.metastore : undefined;
|
|
41
42
|
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
43
|
+
resourceInputs["share"] = state ? state.share : undefined;
|
|
42
44
|
resourceInputs["storageCredential"] = state ? state.storageCredential : undefined;
|
|
43
45
|
resourceInputs["table"] = state ? state.table : undefined;
|
|
44
46
|
resourceInputs["view"] = state ? state.view : undefined;
|
|
@@ -52,8 +54,10 @@ class Grants extends pulumi.CustomResource {
|
|
|
52
54
|
resourceInputs["externalLocation"] = args ? args.externalLocation : undefined;
|
|
53
55
|
resourceInputs["function"] = args ? args.function : undefined;
|
|
54
56
|
resourceInputs["grants"] = args ? args.grants : undefined;
|
|
57
|
+
resourceInputs["materializedView"] = args ? args.materializedView : undefined;
|
|
55
58
|
resourceInputs["metastore"] = args ? args.metastore : undefined;
|
|
56
59
|
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
60
|
+
resourceInputs["share"] = args ? args.share : undefined;
|
|
57
61
|
resourceInputs["storageCredential"] = args ? args.storageCredential : undefined;
|
|
58
62
|
resourceInputs["table"] = args ? args.table : undefined;
|
|
59
63
|
resourceInputs["view"] = args ? args.view : undefined;
|
package/grants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grants.js","sourceRoot":"","sources":["../grants.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"grants.js","sourceRoot":"","sources":["../grants.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -75,6 +75,12 @@ export declare const getServicePrincipalOutput: typeof import("./getServicePrinc
|
|
|
75
75
|
export { GetServicePrincipalsArgs, GetServicePrincipalsResult, GetServicePrincipalsOutputArgs } from "./getServicePrincipals";
|
|
76
76
|
export declare const getServicePrincipals: typeof import("./getServicePrincipals").getServicePrincipals;
|
|
77
77
|
export declare const getServicePrincipalsOutput: typeof import("./getServicePrincipals").getServicePrincipalsOutput;
|
|
78
|
+
export { GetShareArgs, GetShareResult, GetShareOutputArgs } from "./getShare";
|
|
79
|
+
export declare const getShare: typeof import("./getShare").getShare;
|
|
80
|
+
export declare const getShareOutput: typeof import("./getShare").getShareOutput;
|
|
81
|
+
export { GetSharesArgs, GetSharesResult, GetSharesOutputArgs } from "./getShares";
|
|
82
|
+
export declare const getShares: typeof import("./getShares").getShares;
|
|
83
|
+
export declare const getSharesOutput: typeof import("./getShares").getSharesOutput;
|
|
78
84
|
export { GetSparkVersionArgs, GetSparkVersionResult, GetSparkVersionOutputArgs } from "./getSparkVersion";
|
|
79
85
|
export declare const getSparkVersion: typeof import("./getSparkVersion").getSparkVersion;
|
|
80
86
|
export declare const getSparkVersionOutput: typeof import("./getSparkVersion").getSparkVersionOutput;
|
|
@@ -221,6 +227,12 @@ export declare const ServicePrincipal: typeof import("./servicePrincipal").Servi
|
|
|
221
227
|
export { ServicePrincipalRoleArgs, ServicePrincipalRoleState } from "./servicePrincipalRole";
|
|
222
228
|
export type ServicePrincipalRole = import("./servicePrincipalRole").ServicePrincipalRole;
|
|
223
229
|
export declare const ServicePrincipalRole: typeof import("./servicePrincipalRole").ServicePrincipalRole;
|
|
230
|
+
export { ServicePrincipalSecretArgs, ServicePrincipalSecretState } from "./servicePrincipalSecret";
|
|
231
|
+
export type ServicePrincipalSecret = import("./servicePrincipalSecret").ServicePrincipalSecret;
|
|
232
|
+
export declare const ServicePrincipalSecret: typeof import("./servicePrincipalSecret").ServicePrincipalSecret;
|
|
233
|
+
export { ShareArgs, ShareState } from "./share";
|
|
234
|
+
export type Share = import("./share").Share;
|
|
235
|
+
export declare const Share: typeof import("./share").Share;
|
|
224
236
|
export { SqlDashboardArgs, SqlDashboardState } from "./sqlDashboard";
|
|
225
237
|
export type SqlDashboard = import("./sqlDashboard").SqlDashboard;
|
|
226
238
|
export declare const SqlDashboard: typeof import("./sqlDashboard").SqlDashboard;
|