@pulumi/databricks 1.12.0 → 1.13.0-alpha.1683919853
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/getAwsAssumeRolePolicy.d.ts +88 -0
- package/getAwsAssumeRolePolicy.js +88 -0
- package/getAwsAssumeRolePolicy.js.map +1 -1
- package/getCluster.d.ts +8 -0
- package/getCluster.js +8 -0
- package/getCluster.js.map +1 -1
- package/getClusterPolicy.d.ts +8 -0
- package/getClusterPolicy.js +8 -0
- package/getClusterPolicy.js.map +1 -1
- package/getDbfsFile.d.ts +8 -0
- package/getDbfsFile.js +8 -0
- package/getDbfsFile.js.map +1 -1
- package/getDbfsFilePaths.d.ts +8 -0
- package/getDbfsFilePaths.js +8 -0
- package/getDbfsFilePaths.js.map +1 -1
- package/getDirectory.d.ts +8 -0
- package/getDirectory.js +8 -0
- package/getDirectory.js.map +1 -1
- package/getGroup.d.ts +8 -0
- package/getGroup.js +8 -0
- package/getGroup.js.map +1 -1
- package/getInstancePool.d.ts +8 -0
- package/getInstancePool.js +8 -0
- package/getInstancePool.js.map +1 -1
- package/getJob.d.ts +8 -0
- package/getJob.js +8 -0
- package/getJob.js.map +1 -1
- package/getMwsWorkspaces.d.ts +50 -0
- package/getMwsWorkspaces.js +50 -0
- package/getMwsWorkspaces.js.map +1 -1
- package/getNodeType.d.ts +12 -0
- package/getNodeType.js +12 -0
- package/getNodeType.js.map +1 -1
- package/getNotebook.d.ts +8 -0
- package/getNotebook.js +8 -0
- package/getNotebook.js.map +1 -1
- package/getNotebookPaths.d.ts +8 -0
- package/getNotebookPaths.js +8 -0
- package/getNotebookPaths.js.map +1 -1
- package/getPipelines.d.ts +8 -0
- package/getPipelines.js +8 -0
- package/getPipelines.js.map +1 -1
- package/getServicePrincipal.d.ts +8 -0
- package/getServicePrincipal.js +8 -0
- package/getServicePrincipal.js.map +1 -1
- package/getServicePrincipals.d.ts +8 -0
- package/getServicePrincipals.js +8 -0
- package/getServicePrincipals.js.map +1 -1
- package/getSparkVersion.d.ts +12 -0
- package/getSparkVersion.js +12 -0
- package/getSparkVersion.js.map +1 -1
- package/getSqlWarehouse.d.ts +8 -0
- package/getSqlWarehouse.js +8 -0
- package/getSqlWarehouse.js.map +1 -1
- package/getUser.d.ts +8 -0
- package/getUser.js +8 -0
- package/getUser.js.map +1 -1
- package/getZones.d.ts +4 -0
- package/getZones.js +4 -0
- package/getZones.js.map +1 -1
- package/gitCredential.d.ts +9 -0
- package/gitCredential.js.map +1 -1
- package/group.d.ts +12 -0
- package/group.js +12 -0
- package/group.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/instancePool.d.ts +39 -3
- package/instancePool.js +36 -0
- package/instancePool.js.map +1 -1
- package/job.d.ts +3 -0
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/mwsNetworks.d.ts +85 -0
- package/mwsNetworks.js +67 -0
- package/mwsNetworks.js.map +1 -1
- package/mwsPrivateAccessSettings.d.ts +82 -0
- package/mwsPrivateAccessSettings.js +82 -0
- package/mwsPrivateAccessSettings.js.map +1 -1
- package/mwsVpcEndpoint.d.ts +9 -0
- package/mwsVpcEndpoint.js.map +1 -1
- package/notebook.d.ts +0 -6
- package/notebook.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/permissions.d.ts +6 -0
- package/permissions.js +4 -0
- package/permissions.js.map +1 -1
- package/servicePrincipal.d.ts +6 -0
- package/servicePrincipal.js +6 -0
- package/servicePrincipal.js.map +1 -1
- package/sqlQuery.d.ts +99 -0
- package/sqlQuery.js +99 -0
- package/sqlQuery.js.map +1 -1
- package/types/input.d.ts +22 -2
- package/types/output.d.ts +17 -2
- package/user.d.ts +6 -0
- package/user.js +6 -0
- package/user.js.map +1 -1
- package/workspaceConf.d.ts +2 -0
- package/workspaceConf.js +2 -0
- package/workspaceConf.js.map +1 -1
- package/workspaceFile.d.ts +95 -0
- package/workspaceFile.js +71 -0
- package/workspaceFile.js.map +1 -0
package/getMwsWorkspaces.d.ts
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Lists all databricks.MwsWorkspaces in Databricks Account.
|
|
6
|
+
*
|
|
7
|
+
* > **Note** `accountId` provider configuration property is required for this resource to work.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* Listing all workspaces in
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as databricks from "@pulumi/databricks";
|
|
16
|
+
*
|
|
17
|
+
* const all = databricks.getMwsWorkspaces({});
|
|
18
|
+
* export const allMwsWorkspaces = all.then(all => all.ids);
|
|
19
|
+
* ```
|
|
20
|
+
* ## Related Resources
|
|
21
|
+
*
|
|
22
|
+
* The following resources are used in the same context:
|
|
23
|
+
*
|
|
24
|
+
* * databricks.MwsWorkspaces to manage Databricks E2 Workspaces.
|
|
25
|
+
* * databricks.MetastoreAssignment
|
|
26
|
+
*/
|
|
2
27
|
export declare function getMwsWorkspaces(args?: GetMwsWorkspacesArgs, opts?: pulumi.InvokeOptions): Promise<GetMwsWorkspacesResult>;
|
|
3
28
|
/**
|
|
4
29
|
* A collection of arguments for invoking getMwsWorkspaces.
|
|
@@ -26,6 +51,31 @@ export interface GetMwsWorkspacesResult {
|
|
|
26
51
|
[key: string]: any;
|
|
27
52
|
};
|
|
28
53
|
}
|
|
54
|
+
/**
|
|
55
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
56
|
+
*
|
|
57
|
+
* Lists all databricks.MwsWorkspaces in Databricks Account.
|
|
58
|
+
*
|
|
59
|
+
* > **Note** `accountId` provider configuration property is required for this resource to work.
|
|
60
|
+
*
|
|
61
|
+
* ## Example Usage
|
|
62
|
+
*
|
|
63
|
+
* Listing all workspaces in
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as databricks from "@pulumi/databricks";
|
|
68
|
+
*
|
|
69
|
+
* const all = databricks.getMwsWorkspaces({});
|
|
70
|
+
* export const allMwsWorkspaces = all.then(all => all.ids);
|
|
71
|
+
* ```
|
|
72
|
+
* ## Related Resources
|
|
73
|
+
*
|
|
74
|
+
* The following resources are used in the same context:
|
|
75
|
+
*
|
|
76
|
+
* * databricks.MwsWorkspaces to manage Databricks E2 Workspaces.
|
|
77
|
+
* * databricks.MetastoreAssignment
|
|
78
|
+
*/
|
|
29
79
|
export declare function getMwsWorkspacesOutput(args?: GetMwsWorkspacesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMwsWorkspacesResult>;
|
|
30
80
|
/**
|
|
31
81
|
* A collection of arguments for invoking getMwsWorkspaces.
|
package/getMwsWorkspaces.js
CHANGED
|
@@ -5,6 +5,31 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Lists all databricks.MwsWorkspaces in Databricks Account.
|
|
12
|
+
*
|
|
13
|
+
* > **Note** `accountId` provider configuration property is required for this resource to work.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* Listing all workspaces in
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as databricks from "@pulumi/databricks";
|
|
22
|
+
*
|
|
23
|
+
* const all = databricks.getMwsWorkspaces({});
|
|
24
|
+
* export const allMwsWorkspaces = all.then(all => all.ids);
|
|
25
|
+
* ```
|
|
26
|
+
* ## Related Resources
|
|
27
|
+
*
|
|
28
|
+
* The following resources are used in the same context:
|
|
29
|
+
*
|
|
30
|
+
* * databricks.MwsWorkspaces to manage Databricks E2 Workspaces.
|
|
31
|
+
* * databricks.MetastoreAssignment
|
|
32
|
+
*/
|
|
8
33
|
function getMwsWorkspaces(args, opts) {
|
|
9
34
|
args = args || {};
|
|
10
35
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -13,6 +38,31 @@ function getMwsWorkspaces(args, opts) {
|
|
|
13
38
|
}, opts);
|
|
14
39
|
}
|
|
15
40
|
exports.getMwsWorkspaces = getMwsWorkspaces;
|
|
41
|
+
/**
|
|
42
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
43
|
+
*
|
|
44
|
+
* Lists all databricks.MwsWorkspaces in Databricks Account.
|
|
45
|
+
*
|
|
46
|
+
* > **Note** `accountId` provider configuration property is required for this resource to work.
|
|
47
|
+
*
|
|
48
|
+
* ## Example Usage
|
|
49
|
+
*
|
|
50
|
+
* Listing all workspaces in
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as databricks from "@pulumi/databricks";
|
|
55
|
+
*
|
|
56
|
+
* const all = databricks.getMwsWorkspaces({});
|
|
57
|
+
* export const allMwsWorkspaces = all.then(all => all.ids);
|
|
58
|
+
* ```
|
|
59
|
+
* ## Related Resources
|
|
60
|
+
*
|
|
61
|
+
* The following resources are used in the same context:
|
|
62
|
+
*
|
|
63
|
+
* * databricks.MwsWorkspaces to manage Databricks E2 Workspaces.
|
|
64
|
+
* * databricks.MetastoreAssignment
|
|
65
|
+
*/
|
|
16
66
|
function getMwsWorkspacesOutput(args, opts) {
|
|
17
67
|
return pulumi.output(args).apply((a) => getMwsWorkspaces(a, opts));
|
|
18
68
|
}
|
package/getMwsWorkspaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMwsWorkspaces.js","sourceRoot":"","sources":["../getMwsWorkspaces.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,oDAAoD,EAAE;QAC/E,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AAyBD,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
|
1
|
+
{"version":3,"file":"getMwsWorkspaces.js","sourceRoot":"","sources":["../getMwsWorkspaces.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,oDAAoD,EAAE;QAC/E,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AAyBD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
package/getNodeType.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Gets the smallest node type for databricks.Cluster that fits search criteria, like amount of RAM or number of cores. [AWS](https://databricks.com/product/aws-pricing/instance-types) or [Azure](https://azure.microsoft.com/en-us/pricing/details/databricks/). Internally data source fetches [node types](https://docs.databricks.com/dev-tools/api/latest/clusters.html#list-node-types) available per cloud, similar to executing `databricks clusters list-node-types`, and filters it to return the smallest possible node with criteria.
|
|
6
|
+
*
|
|
7
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. `minGpus = 876`) or no nodes matching, data source will return cloud-default node type, even though it doesn't match search criteria specified by data source arguments: [i3.xlarge](https://aws.amazon.com/ec2/instance-types/i3/) for AWS or [Standard_D3_v2](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs#dv2-series) for Azure.
|
|
8
|
+
*
|
|
3
9
|
* ## Example Usage
|
|
4
10
|
*
|
|
5
11
|
* ```typescript
|
|
@@ -129,6 +135,12 @@ export interface GetNodeTypeResult {
|
|
|
129
135
|
readonly supportPortForwarding?: boolean;
|
|
130
136
|
}
|
|
131
137
|
/**
|
|
138
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
139
|
+
*
|
|
140
|
+
* Gets the smallest node type for databricks.Cluster that fits search criteria, like amount of RAM or number of cores. [AWS](https://databricks.com/product/aws-pricing/instance-types) or [Azure](https://azure.microsoft.com/en-us/pricing/details/databricks/). Internally data source fetches [node types](https://docs.databricks.com/dev-tools/api/latest/clusters.html#list-node-types) available per cloud, similar to executing `databricks clusters list-node-types`, and filters it to return the smallest possible node with criteria.
|
|
141
|
+
*
|
|
142
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. `minGpus = 876`) or no nodes matching, data source will return cloud-default node type, even though it doesn't match search criteria specified by data source arguments: [i3.xlarge](https://aws.amazon.com/ec2/instance-types/i3/) for AWS or [Standard_D3_v2](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs#dv2-series) for Azure.
|
|
143
|
+
*
|
|
132
144
|
* ## Example Usage
|
|
133
145
|
*
|
|
134
146
|
* ```typescript
|
package/getNodeType.js
CHANGED
|
@@ -6,6 +6,12 @@ exports.getNodeTypeOutput = exports.getNodeType = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Gets the smallest node type for databricks.Cluster that fits search criteria, like amount of RAM or number of cores. [AWS](https://databricks.com/product/aws-pricing/instance-types) or [Azure](https://azure.microsoft.com/en-us/pricing/details/databricks/). Internally data source fetches [node types](https://docs.databricks.com/dev-tools/api/latest/clusters.html#list-node-types) available per cloud, similar to executing `databricks clusters list-node-types`, and filters it to return the smallest possible node with criteria.
|
|
12
|
+
*
|
|
13
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. `minGpus = 876`) or no nodes matching, data source will return cloud-default node type, even though it doesn't match search criteria specified by data source arguments: [i3.xlarge](https://aws.amazon.com/ec2/instance-types/i3/) for AWS or [Standard_D3_v2](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs#dv2-series) for Azure.
|
|
14
|
+
*
|
|
9
15
|
* ## Example Usage
|
|
10
16
|
*
|
|
11
17
|
* ```typescript
|
|
@@ -65,6 +71,12 @@ function getNodeType(args, opts) {
|
|
|
65
71
|
}
|
|
66
72
|
exports.getNodeType = getNodeType;
|
|
67
73
|
/**
|
|
74
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
75
|
+
*
|
|
76
|
+
* Gets the smallest node type for databricks.Cluster that fits search criteria, like amount of RAM or number of cores. [AWS](https://databricks.com/product/aws-pricing/instance-types) or [Azure](https://azure.microsoft.com/en-us/pricing/details/databricks/). Internally data source fetches [node types](https://docs.databricks.com/dev-tools/api/latest/clusters.html#list-node-types) available per cloud, similar to executing `databricks clusters list-node-types`, and filters it to return the smallest possible node with criteria.
|
|
77
|
+
*
|
|
78
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. `minGpus = 876`) or no nodes matching, data source will return cloud-default node type, even though it doesn't match search criteria specified by data source arguments: [i3.xlarge](https://aws.amazon.com/ec2/instance-types/i3/) for AWS or [Standard_D3_v2](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs#dv2-series) for Azure.
|
|
79
|
+
*
|
|
68
80
|
* ## Example Usage
|
|
69
81
|
*
|
|
70
82
|
* ```typescript
|
package/getNodeType.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNodeType.js","sourceRoot":"","sources":["../getNodeType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNodeType.js","sourceRoot":"","sources":["../getNodeType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,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,0CAA0C,EAAE;QACrE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AApBD,kCAoBC;AA6FD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getNotebook.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* This data source allows to export a notebook from Databricks Workspace.
|
|
6
|
+
*
|
|
3
7
|
* ## Example Usage
|
|
4
8
|
*
|
|
5
9
|
* ```typescript
|
|
@@ -66,6 +70,10 @@ export interface GetNotebookResult {
|
|
|
66
70
|
readonly path: string;
|
|
67
71
|
}
|
|
68
72
|
/**
|
|
73
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
74
|
+
*
|
|
75
|
+
* This data source allows to export a notebook from Databricks Workspace.
|
|
76
|
+
*
|
|
69
77
|
* ## Example Usage
|
|
70
78
|
*
|
|
71
79
|
* ```typescript
|
package/getNotebook.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getNotebookOutput = exports.getNotebook = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* This data source allows to export a notebook from Databricks Workspace.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* ```typescript
|
|
@@ -30,6 +34,10 @@ function getNotebook(args, opts) {
|
|
|
30
34
|
}
|
|
31
35
|
exports.getNotebook = getNotebook;
|
|
32
36
|
/**
|
|
37
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
38
|
+
*
|
|
39
|
+
* This data source allows to export a notebook from Databricks Workspace.
|
|
40
|
+
*
|
|
33
41
|
* ## Example Usage
|
|
34
42
|
*
|
|
35
43
|
* ```typescript
|
package/getNotebook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNotebook.js","sourceRoot":"","sources":["../getNotebook.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNotebook.js","sourceRoot":"","sources":["../getNotebook.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kCAUC;AAuDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getNotebookPaths.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
5
|
+
*
|
|
6
|
+
* This data source allows to list notebooks in the Databricks Workspace.
|
|
7
|
+
*
|
|
4
8
|
* ## Example Usage
|
|
5
9
|
*
|
|
6
10
|
* ```typescript
|
|
@@ -43,6 +47,10 @@ export interface GetNotebookPathsResult {
|
|
|
43
47
|
readonly recursive: boolean;
|
|
44
48
|
}
|
|
45
49
|
/**
|
|
50
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
51
|
+
*
|
|
52
|
+
* This data source allows to list notebooks in the Databricks Workspace.
|
|
53
|
+
*
|
|
46
54
|
* ## Example Usage
|
|
47
55
|
*
|
|
48
56
|
* ```typescript
|
package/getNotebookPaths.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getNotebookPathsOutput = exports.getNotebookPaths = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* This data source allows to list notebooks in the Databricks Workspace.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* ```typescript
|
|
@@ -27,6 +31,10 @@ function getNotebookPaths(args, opts) {
|
|
|
27
31
|
}
|
|
28
32
|
exports.getNotebookPaths = getNotebookPaths;
|
|
29
33
|
/**
|
|
34
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
35
|
+
*
|
|
36
|
+
* This data source allows to list notebooks in the Databricks Workspace.
|
|
37
|
+
*
|
|
30
38
|
* ## Example Usage
|
|
31
39
|
*
|
|
32
40
|
* ```typescript
|
package/getNotebookPaths.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNotebookPaths.js","sourceRoot":"","sources":["../getNotebookPaths.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNotebookPaths.js","sourceRoot":"","sources":["../getNotebookPaths.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IAEpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AA+BD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
package/getPipelines.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _authentication is not configured for provider_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Retrieves a list of all databricks.Pipeline ([Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html)) ids deployed in a workspace, or those matching the provided search term. Maximum 100 results.
|
|
6
|
+
*
|
|
3
7
|
* ## Example Usage
|
|
4
8
|
*
|
|
5
9
|
* Get all Delta Live Tables pipelines:
|
|
@@ -74,6 +78,10 @@ export interface GetPipelinesResult {
|
|
|
74
78
|
readonly pipelineName?: string;
|
|
75
79
|
}
|
|
76
80
|
/**
|
|
81
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _authentication is not configured for provider_ errors.
|
|
82
|
+
*
|
|
83
|
+
* Retrieves a list of all databricks.Pipeline ([Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html)) ids deployed in a workspace, or those matching the provided search term. Maximum 100 results.
|
|
84
|
+
*
|
|
77
85
|
* ## Example Usage
|
|
78
86
|
*
|
|
79
87
|
* Get all Delta Live Tables pipelines:
|
package/getPipelines.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getPipelinesOutput = exports.getPipelines = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _authentication is not configured for provider_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves a list of all databricks.Pipeline ([Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html)) ids deployed in a workspace, or those matching the provided search term. Maximum 100 results.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* Get all Delta Live Tables pipelines:
|
|
@@ -61,6 +65,10 @@ function getPipelines(args, opts) {
|
|
|
61
65
|
}
|
|
62
66
|
exports.getPipelines = getPipelines;
|
|
63
67
|
/**
|
|
68
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _authentication is not configured for provider_ errors.
|
|
69
|
+
*
|
|
70
|
+
* Retrieves a list of all databricks.Pipeline ([Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html)) ids deployed in a workspace, or those matching the provided search term. Maximum 100 results.
|
|
71
|
+
*
|
|
64
72
|
* ## Example Usage
|
|
65
73
|
*
|
|
66
74
|
* Get all Delta Live Tables pipelines:
|
package/getPipelines.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPipelines.js","sourceRoot":"","sources":["../getPipelines.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getPipelines.js","sourceRoot":"","sources":["../getPipelines.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;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,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oCAQC;AA8BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;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/getServicePrincipal.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Retrieves information about databricks_service_principal.
|
|
6
|
+
*
|
|
3
7
|
* ## Example Usage
|
|
4
8
|
*
|
|
5
9
|
* Adding service principal `11111111-2222-3333-4444-555666777888` to administrative group
|
|
@@ -99,6 +103,10 @@ export interface GetServicePrincipalResult {
|
|
|
99
103
|
readonly spId: string;
|
|
100
104
|
}
|
|
101
105
|
/**
|
|
106
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
107
|
+
*
|
|
108
|
+
* Retrieves information about databricks_service_principal.
|
|
109
|
+
*
|
|
102
110
|
* ## Example Usage
|
|
103
111
|
*
|
|
104
112
|
* Adding service principal `11111111-2222-3333-4444-555666777888` to administrative group
|
package/getServicePrincipal.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getServicePrincipalOutput = exports.getServicePrincipal = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves information about databricks_service_principal.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* Adding service principal `11111111-2222-3333-4444-555666777888` to administrative group
|
|
@@ -54,6 +58,10 @@ function getServicePrincipal(args, opts) {
|
|
|
54
58
|
}
|
|
55
59
|
exports.getServicePrincipal = getServicePrincipal;
|
|
56
60
|
/**
|
|
61
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
62
|
+
*
|
|
63
|
+
* Retrieves information about databricks_service_principal.
|
|
64
|
+
*
|
|
57
65
|
* ## Example Usage
|
|
58
66
|
*
|
|
59
67
|
* Adding service principal `11111111-2222-3333-4444-555666777888` to administrative group
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServicePrincipal.js","sourceRoot":"","sources":["../getServicePrincipal.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getServicePrincipal.js","sourceRoot":"","sources":["../getServicePrincipal.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,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,0DAA0D,EAAE;QACrF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,kDAcC;AAoED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,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"}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Retrieves `applicationIds` of all databricks.ServicePrincipal based on their `displayName`
|
|
6
|
+
*
|
|
3
7
|
* ## Related Resources
|
|
4
8
|
*
|
|
5
9
|
* The following resources are used in the same context:
|
|
@@ -42,6 +46,10 @@ export interface GetServicePrincipalsResult {
|
|
|
42
46
|
readonly id: string;
|
|
43
47
|
}
|
|
44
48
|
/**
|
|
49
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
50
|
+
*
|
|
51
|
+
* Retrieves `applicationIds` of all databricks.ServicePrincipal based on their `displayName`
|
|
52
|
+
*
|
|
45
53
|
* ## Related Resources
|
|
46
54
|
*
|
|
47
55
|
* The following resources are used in the same context:
|
package/getServicePrincipals.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getServicePrincipalsOutput = exports.getServicePrincipals = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves `applicationIds` of all databricks.ServicePrincipal based on their `displayName`
|
|
12
|
+
*
|
|
9
13
|
* ## Related Resources
|
|
10
14
|
*
|
|
11
15
|
* The following resources are used in the same context:
|
|
@@ -29,6 +33,10 @@ function getServicePrincipals(args, opts) {
|
|
|
29
33
|
}
|
|
30
34
|
exports.getServicePrincipals = getServicePrincipals;
|
|
31
35
|
/**
|
|
36
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
37
|
+
*
|
|
38
|
+
* Retrieves `applicationIds` of all databricks.ServicePrincipal based on their `displayName`
|
|
39
|
+
*
|
|
32
40
|
* ## Related Resources
|
|
33
41
|
*
|
|
34
42
|
* The following resources are used in the same context:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServicePrincipals.js","sourceRoot":"","sources":["../getServicePrincipals.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getServicePrincipals.js","sourceRoot":"","sources":["../getServicePrincipals.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;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,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC;AA8BD;;;;;;;;;;;;;;;;;GAiBG;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/getSparkVersion.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Gets [Databricks Runtime (DBR)](https://docs.databricks.com/runtime/dbr.html) version that could be used for `sparkVersion` parameter in databricks.Cluster and other resources that fits search criteria, like specific Spark or Scala version, ML or Genomics runtime, etc., similar to executing `databricks clusters spark-versions`, and filters it to return the latest version that matches criteria. Often used along databricks.getNodeType data source.
|
|
6
|
+
*
|
|
7
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. together `ml = true` and `genomics = true`, or something like), data source will throw an error. Similarly, if search returns multiple results, and `latest = false`, data source will throw an error.
|
|
8
|
+
*
|
|
3
9
|
* ## Example Usage
|
|
4
10
|
*
|
|
5
11
|
* ```typescript
|
|
@@ -103,6 +109,12 @@ export interface GetSparkVersionResult {
|
|
|
103
109
|
readonly sparkVersion?: string;
|
|
104
110
|
}
|
|
105
111
|
/**
|
|
112
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
113
|
+
*
|
|
114
|
+
* Gets [Databricks Runtime (DBR)](https://docs.databricks.com/runtime/dbr.html) version that could be used for `sparkVersion` parameter in databricks.Cluster and other resources that fits search criteria, like specific Spark or Scala version, ML or Genomics runtime, etc., similar to executing `databricks clusters spark-versions`, and filters it to return the latest version that matches criteria. Often used along databricks.getNodeType data source.
|
|
115
|
+
*
|
|
116
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. together `ml = true` and `genomics = true`, or something like), data source will throw an error. Similarly, if search returns multiple results, and `latest = false`, data source will throw an error.
|
|
117
|
+
*
|
|
106
118
|
* ## Example Usage
|
|
107
119
|
*
|
|
108
120
|
* ```typescript
|
package/getSparkVersion.js
CHANGED
|
@@ -6,6 +6,12 @@ exports.getSparkVersionOutput = exports.getSparkVersion = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Gets [Databricks Runtime (DBR)](https://docs.databricks.com/runtime/dbr.html) version that could be used for `sparkVersion` parameter in databricks.Cluster and other resources that fits search criteria, like specific Spark or Scala version, ML or Genomics runtime, etc., similar to executing `databricks clusters spark-versions`, and filters it to return the latest version that matches criteria. Often used along databricks.getNodeType data source.
|
|
12
|
+
*
|
|
13
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. together `ml = true` and `genomics = true`, or something like), data source will throw an error. Similarly, if search returns multiple results, and `latest = false`, data source will throw an error.
|
|
14
|
+
*
|
|
9
15
|
* ## Example Usage
|
|
10
16
|
*
|
|
11
17
|
* ```typescript
|
|
@@ -61,6 +67,12 @@ function getSparkVersion(args, opts) {
|
|
|
61
67
|
}
|
|
62
68
|
exports.getSparkVersion = getSparkVersion;
|
|
63
69
|
/**
|
|
70
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
71
|
+
*
|
|
72
|
+
* Gets [Databricks Runtime (DBR)](https://docs.databricks.com/runtime/dbr.html) version that could be used for `sparkVersion` parameter in databricks.Cluster and other resources that fits search criteria, like specific Spark or Scala version, ML or Genomics runtime, etc., similar to executing `databricks clusters spark-versions`, and filters it to return the latest version that matches criteria. Often used along databricks.getNodeType data source.
|
|
73
|
+
*
|
|
74
|
+
* > **Note** This is experimental functionality, which aims to simplify things. In case of wrong parameters given (e.g. together `ml = true` and `genomics = true`, or something like), data source will throw an error. Similarly, if search returns multiple results, and `latest = false`, data source will throw an error.
|
|
75
|
+
*
|
|
64
76
|
* ## Example Usage
|
|
65
77
|
*
|
|
66
78
|
* ```typescript
|
package/getSparkVersion.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSparkVersion.js","sourceRoot":"","sources":["../getSparkVersion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSparkVersion.js","sourceRoot":"","sources":["../getSparkVersion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,kDAAkD,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,0CAgBC;AAmED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/getSqlWarehouse.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
6
|
+
*
|
|
7
|
+
* Retrieves information about a databricks.getSqlWarehouse using its id. This could be retrieved programmatically using databricks.getSqlWarehouses data source.
|
|
8
|
+
*
|
|
5
9
|
* ## Example Usage
|
|
6
10
|
*
|
|
7
11
|
* Retrieve attributes of each SQL warehouses in a workspace
|
|
@@ -152,6 +156,10 @@ export interface GetSqlWarehouseResult {
|
|
|
152
156
|
readonly tags: outputs.GetSqlWarehouseTags;
|
|
153
157
|
}
|
|
154
158
|
/**
|
|
159
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
160
|
+
*
|
|
161
|
+
* Retrieves information about a databricks.getSqlWarehouse using its id. This could be retrieved programmatically using databricks.getSqlWarehouses data source.
|
|
162
|
+
*
|
|
155
163
|
* ## Example Usage
|
|
156
164
|
*
|
|
157
165
|
* Retrieve attributes of each SQL warehouses in a workspace
|
package/getSqlWarehouse.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getSqlWarehouseOutput = exports.getSqlWarehouse = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves information about a databricks.getSqlWarehouse using its id. This could be retrieved programmatically using databricks.getSqlWarehouses data source.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* Retrieve attributes of each SQL warehouses in a workspace
|
|
@@ -53,6 +57,10 @@ function getSqlWarehouse(args, opts) {
|
|
|
53
57
|
}
|
|
54
58
|
exports.getSqlWarehouse = getSqlWarehouse;
|
|
55
59
|
/**
|
|
60
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
61
|
+
*
|
|
62
|
+
* Retrieves information about a databricks.getSqlWarehouse using its id. This could be retrieved programmatically using databricks.getSqlWarehouses data source.
|
|
63
|
+
*
|
|
56
64
|
* ## Example Usage
|
|
57
65
|
*
|
|
58
66
|
* Retrieve attributes of each SQL warehouses in a workspace
|
package/getSqlWarehouse.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSqlWarehouse.js","sourceRoot":"","sources":["../getSqlWarehouse.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSqlWarehouse.js","sourceRoot":"","sources":["../getSqlWarehouse.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAtBD,0CAsBC;AAgID;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/getUser.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
4
|
+
*
|
|
5
|
+
* Retrieves information about databricks_user.
|
|
6
|
+
*
|
|
3
7
|
* ## Example Usage
|
|
4
8
|
*
|
|
5
9
|
* Adding user to administrative group
|
|
@@ -83,6 +87,10 @@ export interface GetUserResult {
|
|
|
83
87
|
readonly userName?: string;
|
|
84
88
|
}
|
|
85
89
|
/**
|
|
90
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
91
|
+
*
|
|
92
|
+
* Retrieves information about databricks_user.
|
|
93
|
+
*
|
|
86
94
|
* ## Example Usage
|
|
87
95
|
*
|
|
88
96
|
* Adding user to administrative group
|
package/getUser.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.getUserOutput = exports.getUser = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves information about databricks_user.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* Adding user to administrative group
|
|
@@ -49,6 +53,10 @@ function getUser(args, opts) {
|
|
|
49
53
|
}
|
|
50
54
|
exports.getUser = getUser;
|
|
51
55
|
/**
|
|
56
|
+
* > **Note** If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
|
|
57
|
+
*
|
|
58
|
+
* Retrieves information about databricks_user.
|
|
59
|
+
*
|
|
52
60
|
* ## Example Usage
|
|
53
61
|
*
|
|
54
62
|
* Adding user to administrative group
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,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,kCAAkC,EAAE;QAC7D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;AAmDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|