@pulumi/databricks 1.35.0-alpha.1711603543 → 1.35.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/catalogWorkspaceBinding.d.ts +5 -1
- package/catalogWorkspaceBinding.js +5 -1
- package/catalogWorkspaceBinding.js.map +1 -1
- package/getAwsCrossAccountPolicy.d.ts +47 -0
- package/getAwsCrossAccountPolicy.js +5 -0
- package/getAwsCrossAccountPolicy.js.map +1 -1
- package/getStorageCredentials.d.ts +11 -2
- package/getStorageCredentials.js +2 -2
- package/getStorageCredentials.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +17 -2
- package/index.js.map +1 -1
- package/job.d.ts +3 -3
- package/lakehouseMonitor.d.ts +301 -0
- package/lakehouseMonitor.js +145 -0
- package/lakehouseMonitor.js.map +1 -0
- package/modelServing.d.ts +25 -5
- package/modelServing.js +7 -5
- package/modelServing.js.map +1 -1
- package/onlineTable.d.ts +100 -0
- package/onlineTable.js +83 -0
- package/onlineTable.js.map +1 -0
- package/package.json +1 -1
- package/registeredModel.d.ts +12 -0
- package/registeredModel.js +2 -0
- package/registeredModel.js.map +1 -1
- package/servicePrincipal.d.ts +32 -25
- package/servicePrincipal.js +26 -19
- package/servicePrincipal.js.map +1 -1
- package/types/input.d.ts +577 -75
- package/types/output.d.ts +549 -56
- package/user.d.ts +6 -4
- package/user.js +3 -1
- package/user.js.map +1 -1
- package/vectorSearchEndpoint.d.ts +10 -10
- package/vectorSearchIndex.d.ts +164 -0
- package/vectorSearchIndex.js +110 -0
- package/vectorSearchIndex.js.map +1 -0
package/onlineTable.d.ts
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* > **Note** This resource could be only used on Unity Catalog-enabled workspace!
|
|
6
|
+
*
|
|
7
|
+
* This resource allows you to create [Online Table](https://docs.databricks.com/en/machine-learning/feature-store/online-tables.html) in Databricks. An online table is a read-only copy of a Delta Table that is stored in row-oriented format optimized for online access. Online tables are fully serverless tables that auto-scale throughput capacity with the request load and provide low latency and high throughput access to data of any scale. Online tables are designed to work with Databricks Model Serving, Feature Serving, and retrieval-augmented generation (RAG) applications where they are used for fast data lookups.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* <!--Start PulumiCodeChooser -->
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as databricks from "@pulumi/databricks";
|
|
15
|
+
*
|
|
16
|
+
* const _this = new databricks.OnlineTable("this", {spec: {
|
|
17
|
+
* primaryKeyColumns: ["id"],
|
|
18
|
+
* runTriggered: {},
|
|
19
|
+
* sourceTableFullName: "main.default.source_table",
|
|
20
|
+
* }});
|
|
21
|
+
* ```
|
|
22
|
+
* <!--End PulumiCodeChooser -->
|
|
23
|
+
*
|
|
24
|
+
* ## Import
|
|
25
|
+
*
|
|
26
|
+
* The resource can be imported using the name of the Online Table:
|
|
27
|
+
*
|
|
28
|
+
* bash
|
|
29
|
+
*
|
|
30
|
+
* ```sh
|
|
31
|
+
* $ pulumi import databricks:index/onlineTable:OnlineTable this <endpoint-name>
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
export declare class OnlineTable extends pulumi.CustomResource {
|
|
35
|
+
/**
|
|
36
|
+
* Get an existing OnlineTable resource's state with the given name, ID, and optional extra
|
|
37
|
+
* properties used to qualify the lookup.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resulting resource.
|
|
40
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
41
|
+
* @param state Any extra arguments used during the lookup.
|
|
42
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
43
|
+
*/
|
|
44
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OnlineTableState, opts?: pulumi.CustomResourceOptions): OnlineTable;
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of OnlineTable. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj: any): obj is OnlineTable;
|
|
50
|
+
/**
|
|
51
|
+
* 3-level name of the Online Table to create.
|
|
52
|
+
*/
|
|
53
|
+
readonly name: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* object containing specification of the online table:
|
|
56
|
+
*/
|
|
57
|
+
readonly spec: pulumi.Output<outputs.OnlineTableSpec | undefined>;
|
|
58
|
+
/**
|
|
59
|
+
* object describing status of the online table:
|
|
60
|
+
*/
|
|
61
|
+
readonly statuses: pulumi.Output<outputs.OnlineTableStatus[]>;
|
|
62
|
+
/**
|
|
63
|
+
* Create a OnlineTable resource with the given unique name, arguments, and options.
|
|
64
|
+
*
|
|
65
|
+
* @param name The _unique_ name of the resource.
|
|
66
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
67
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
68
|
+
*/
|
|
69
|
+
constructor(name: string, args?: OnlineTableArgs, opts?: pulumi.CustomResourceOptions);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Input properties used for looking up and filtering OnlineTable resources.
|
|
73
|
+
*/
|
|
74
|
+
export interface OnlineTableState {
|
|
75
|
+
/**
|
|
76
|
+
* 3-level name of the Online Table to create.
|
|
77
|
+
*/
|
|
78
|
+
name?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* object containing specification of the online table:
|
|
81
|
+
*/
|
|
82
|
+
spec?: pulumi.Input<inputs.OnlineTableSpec>;
|
|
83
|
+
/**
|
|
84
|
+
* object describing status of the online table:
|
|
85
|
+
*/
|
|
86
|
+
statuses?: pulumi.Input<pulumi.Input<inputs.OnlineTableStatus>[]>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a OnlineTable resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface OnlineTableArgs {
|
|
92
|
+
/**
|
|
93
|
+
* 3-level name of the Online Table to create.
|
|
94
|
+
*/
|
|
95
|
+
name?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* object containing specification of the online table:
|
|
98
|
+
*/
|
|
99
|
+
spec?: pulumi.Input<inputs.OnlineTableSpec>;
|
|
100
|
+
}
|
package/onlineTable.js
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
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.OnlineTable = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* > **Note** This resource could be only used on Unity Catalog-enabled workspace!
|
|
10
|
+
*
|
|
11
|
+
* This resource allows you to create [Online Table](https://docs.databricks.com/en/machine-learning/feature-store/online-tables.html) in Databricks. An online table is a read-only copy of a Delta Table that is stored in row-oriented format optimized for online access. Online tables are fully serverless tables that auto-scale throughput capacity with the request load and provide low latency and high throughput access to data of any scale. Online tables are designed to work with Databricks Model Serving, Feature Serving, and retrieval-augmented generation (RAG) applications where they are used for fast data lookups.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* <!--Start PulumiCodeChooser -->
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as databricks from "@pulumi/databricks";
|
|
19
|
+
*
|
|
20
|
+
* const _this = new databricks.OnlineTable("this", {spec: {
|
|
21
|
+
* primaryKeyColumns: ["id"],
|
|
22
|
+
* runTriggered: {},
|
|
23
|
+
* sourceTableFullName: "main.default.source_table",
|
|
24
|
+
* }});
|
|
25
|
+
* ```
|
|
26
|
+
* <!--End PulumiCodeChooser -->
|
|
27
|
+
*
|
|
28
|
+
* ## Import
|
|
29
|
+
*
|
|
30
|
+
* The resource can be imported using the name of the Online Table:
|
|
31
|
+
*
|
|
32
|
+
* bash
|
|
33
|
+
*
|
|
34
|
+
* ```sh
|
|
35
|
+
* $ pulumi import databricks:index/onlineTable:OnlineTable this <endpoint-name>
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
class OnlineTable extends pulumi.CustomResource {
|
|
39
|
+
/**
|
|
40
|
+
* Get an existing OnlineTable resource's state with the given name, ID, and optional extra
|
|
41
|
+
* properties used to qualify the lookup.
|
|
42
|
+
*
|
|
43
|
+
* @param name The _unique_ name of the resulting resource.
|
|
44
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
+
* @param state Any extra arguments used during the lookup.
|
|
46
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
+
*/
|
|
48
|
+
static get(name, id, state, opts) {
|
|
49
|
+
return new OnlineTable(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Returns true if the given object is an instance of OnlineTable. This is designed to work even
|
|
53
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
54
|
+
*/
|
|
55
|
+
static isInstance(obj) {
|
|
56
|
+
if (obj === undefined || obj === null) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
return obj['__pulumiType'] === OnlineTable.__pulumiType;
|
|
60
|
+
}
|
|
61
|
+
constructor(name, argsOrState, opts) {
|
|
62
|
+
let resourceInputs = {};
|
|
63
|
+
opts = opts || {};
|
|
64
|
+
if (opts.id) {
|
|
65
|
+
const state = argsOrState;
|
|
66
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
67
|
+
resourceInputs["spec"] = state ? state.spec : undefined;
|
|
68
|
+
resourceInputs["statuses"] = state ? state.statuses : undefined;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
const args = argsOrState;
|
|
72
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
73
|
+
resourceInputs["spec"] = args ? args.spec : undefined;
|
|
74
|
+
resourceInputs["statuses"] = undefined /*out*/;
|
|
75
|
+
}
|
|
76
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
77
|
+
super(OnlineTable.__pulumiType, name, resourceInputs, opts);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
exports.OnlineTable = OnlineTable;
|
|
81
|
+
/** @internal */
|
|
82
|
+
OnlineTable.__pulumiType = 'databricks:index/onlineTable:OnlineTable';
|
|
83
|
+
//# sourceMappingURL=onlineTable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onlineTable.js","sourceRoot":"","sources":["../onlineTable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAjEL,kCAkEC;AApDG,gBAAgB;AACO,wBAAY,GAAG,0CAA0C,CAAC"}
|
package/package.json
CHANGED
package/registeredModel.d.ts
CHANGED
|
@@ -70,6 +70,10 @@ export declare class RegisteredModel extends pulumi.CustomResource {
|
|
|
70
70
|
* The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
71
71
|
*/
|
|
72
72
|
readonly name: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* Name of the registered model owner.
|
|
75
|
+
*/
|
|
76
|
+
readonly owner: pulumi.Output<string>;
|
|
73
77
|
/**
|
|
74
78
|
* The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
75
79
|
*/
|
|
@@ -103,6 +107,10 @@ export interface RegisteredModelState {
|
|
|
103
107
|
* The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
104
108
|
*/
|
|
105
109
|
name?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Name of the registered model owner.
|
|
112
|
+
*/
|
|
113
|
+
owner?: pulumi.Input<string>;
|
|
106
114
|
/**
|
|
107
115
|
* The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
108
116
|
*/
|
|
@@ -128,6 +136,10 @@ export interface RegisteredModelArgs {
|
|
|
128
136
|
* The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
129
137
|
*/
|
|
130
138
|
name?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Name of the registered model owner.
|
|
141
|
+
*/
|
|
142
|
+
owner?: pulumi.Input<string>;
|
|
131
143
|
/**
|
|
132
144
|
* The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
133
145
|
*/
|
package/registeredModel.js
CHANGED
|
@@ -79,6 +79,7 @@ class RegisteredModel extends pulumi.CustomResource {
|
|
|
79
79
|
resourceInputs["catalogName"] = state ? state.catalogName : undefined;
|
|
80
80
|
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
81
81
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
82
|
+
resourceInputs["owner"] = state ? state.owner : undefined;
|
|
82
83
|
resourceInputs["schemaName"] = state ? state.schemaName : undefined;
|
|
83
84
|
resourceInputs["storageLocation"] = state ? state.storageLocation : undefined;
|
|
84
85
|
}
|
|
@@ -93,6 +94,7 @@ class RegisteredModel extends pulumi.CustomResource {
|
|
|
93
94
|
resourceInputs["catalogName"] = args ? args.catalogName : undefined;
|
|
94
95
|
resourceInputs["comment"] = args ? args.comment : undefined;
|
|
95
96
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
97
|
+
resourceInputs["owner"] = args ? args.owner : undefined;
|
|
96
98
|
resourceInputs["schemaName"] = args ? args.schemaName : undefined;
|
|
97
99
|
resourceInputs["storageLocation"] = args ? args.storageLocation : undefined;
|
|
98
100
|
}
|
package/registeredModel.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registeredModel.js","sourceRoot":"","sources":["../registeredModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"registeredModel.js","sourceRoot":"","sources":["../registeredModel.ts"],"names":[],"mappings":"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"}
|
package/servicePrincipal.d.ts
CHANGED
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Directly manage [Service Principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) that could be added to databricks.Group in Databricks
|
|
3
|
+
* Directly manage [Service Principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) that could be added to databricks.Group in Databricks account or workspace.
|
|
4
|
+
*
|
|
5
|
+
* There are different types of service principals:
|
|
6
|
+
*
|
|
7
|
+
* * Databricks-managed - exists only inside the Databricks platform (all clouds) and couldn't be used for accessing non-Databricks services.
|
|
8
|
+
* * Azure-managed - existing Azure service principal (enterprise application) is registered inside Databricks. It could be used to work with other Azure services.
|
|
4
9
|
*
|
|
5
10
|
* > **Note** To assign account level service principals to workspace use databricks_mws_permission_assignment.
|
|
6
11
|
*
|
|
7
|
-
* > **Note** Entitlements, like, `allowClusterCreate`, `allowInstancePoolCreate`, `databricksSqlAccess`, `workspaceAccess` applicable only for workspace-level service principals.
|
|
12
|
+
* > **Note** Entitlements, like, `allowClusterCreate`, `allowInstancePoolCreate`, `databricksSqlAccess`, `workspaceAccess` applicable only for workspace-level service principals. Use databricks.Entitlements resource to assign entitlements inside a workspace to account-level service principals.
|
|
13
|
+
*
|
|
14
|
+
* To create service principals in the Databricks account, the provider must be configured with `host = "https://accounts.cloud.databricks.com"` on AWS deployments or `host = "https://accounts.azuredatabricks.net"` and authenticate using the supported authentication method for account operations.
|
|
8
15
|
*
|
|
9
|
-
*
|
|
16
|
+
* The default behavior when deleting a `databricks.ServicePrincipal` resource depends on whether the provider is configured at the workspace-level or account-level. When the provider is configured at the workspace-level, the service principal will be deleted from the workspace. When the provider is configured at the account-level, the service principal will be deactivated but not deleted. When the provider is configured at the account level, to delete the service principal from the account when the resource is deleted, set `disableAsUserDeletion = false`. Conversely, when the provider is configured at the account-level, to deactivate the service principal when the resource is deleted, set `disableAsUserDeletion = true`.
|
|
10
17
|
*
|
|
11
18
|
* ## Example Usage
|
|
12
19
|
*
|
|
13
|
-
* Creating regular service principal:
|
|
20
|
+
* Creating regular Databricks-managed service principal:
|
|
14
21
|
*
|
|
15
22
|
* <!--Start PulumiCodeChooser -->
|
|
16
23
|
* ```typescript
|
|
17
24
|
* import * as pulumi from "@pulumi/pulumi";
|
|
18
25
|
* import * as databricks from "@pulumi/databricks";
|
|
19
26
|
*
|
|
20
|
-
* const sp = new databricks.ServicePrincipal("sp", {
|
|
27
|
+
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Admin SP"});
|
|
21
28
|
* ```
|
|
22
29
|
* <!--End PulumiCodeChooser -->
|
|
23
30
|
*
|
|
@@ -31,7 +38,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
31
38
|
* const admins = databricks.getGroup({
|
|
32
39
|
* displayName: "admins",
|
|
33
40
|
* });
|
|
34
|
-
* const sp = new databricks.ServicePrincipal("sp", {
|
|
41
|
+
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Admin SP"});
|
|
35
42
|
* const i_am_admin = new databricks.GroupMember("i-am-admin", {
|
|
36
43
|
* groupId: admins.then(admins => admins.id),
|
|
37
44
|
* memberId: sp.id,
|
|
@@ -39,7 +46,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
39
46
|
* ```
|
|
40
47
|
* <!--End PulumiCodeChooser -->
|
|
41
48
|
*
|
|
42
|
-
* Creating service principal with cluster create permissions:
|
|
49
|
+
* Creating Azure-managed service principal with cluster create permissions:
|
|
43
50
|
*
|
|
44
51
|
* <!--Start PulumiCodeChooser -->
|
|
45
52
|
* ```typescript
|
|
@@ -54,7 +61,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
54
61
|
* ```
|
|
55
62
|
* <!--End PulumiCodeChooser -->
|
|
56
63
|
*
|
|
57
|
-
* Creating service principal in AWS Databricks account:
|
|
64
|
+
* Creating Databricks-managed service principal in AWS Databricks account:
|
|
58
65
|
*
|
|
59
66
|
* <!--Start PulumiCodeChooser -->
|
|
60
67
|
* ```typescript
|
|
@@ -62,19 +69,19 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
62
69
|
* import * as databricks from "@pulumi/databricks";
|
|
63
70
|
*
|
|
64
71
|
* // initialize provider at account-level
|
|
65
|
-
* const
|
|
72
|
+
* const account = new databricks.Provider("account", {
|
|
66
73
|
* host: "https://accounts.cloud.databricks.com",
|
|
67
74
|
* accountId: "00000000-0000-0000-0000-000000000000",
|
|
68
75
|
* clientId: _var.client_id,
|
|
69
76
|
* clientSecret: _var.client_secret,
|
|
70
77
|
* });
|
|
71
78
|
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Automation-only SP"}, {
|
|
72
|
-
* provider: databricks.
|
|
79
|
+
* provider: databricks.account,
|
|
73
80
|
* });
|
|
74
81
|
* ```
|
|
75
82
|
* <!--End PulumiCodeChooser -->
|
|
76
83
|
*
|
|
77
|
-
* Creating service principal in Azure Databricks account:
|
|
84
|
+
* Creating Azure-managed service principal in Azure Databricks account:
|
|
78
85
|
*
|
|
79
86
|
* <!--Start PulumiCodeChooser -->
|
|
80
87
|
* ```typescript
|
|
@@ -82,13 +89,13 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
82
89
|
* import * as databricks from "@pulumi/databricks";
|
|
83
90
|
*
|
|
84
91
|
* // initialize provider at Azure account-level
|
|
85
|
-
* const
|
|
92
|
+
* const account = new databricks.Provider("account", {
|
|
86
93
|
* host: "https://accounts.azuredatabricks.net",
|
|
87
94
|
* accountId: "00000000-0000-0000-0000-000000000000",
|
|
88
95
|
* authType: "azure-cli",
|
|
89
96
|
* });
|
|
90
97
|
* const sp = new databricks.ServicePrincipal("sp", {applicationId: "00000000-0000-0000-0000-000000000000"}, {
|
|
91
|
-
* provider: databricks.
|
|
98
|
+
* provider: databricks.account,
|
|
92
99
|
* });
|
|
93
100
|
* ```
|
|
94
101
|
* <!--End PulumiCodeChooser -->
|
|
@@ -97,12 +104,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
97
104
|
*
|
|
98
105
|
* The following resources are often used in the same context:
|
|
99
106
|
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
107
|
+
* - End to end workspace management guide.
|
|
108
|
+
* - databricks.Group to manage [groups in Databricks Workspace](https://docs.databricks.com/administration-guide/users-groups/groups.html) or [Account Console](https://accounts.cloud.databricks.com/) (for AWS deployments).
|
|
109
|
+
* - databricks.Group data to retrieve information about databricks.Group members, entitlements and instance profiles.
|
|
110
|
+
* - databricks.GroupMember to attach users and groups as group members.
|
|
111
|
+
* - databricks.Permissions to manage [access control](https://docs.databricks.com/security/access-control/index.html) in Databricks workspace.
|
|
112
|
+
* - databricks.SqlPermissions to manage data object access control lists in Databricks workspaces for things like tables, views, databases, and more to manage secrets for the service principal (only for AWS deployments)
|
|
106
113
|
*
|
|
107
114
|
* ## Import
|
|
108
115
|
*
|
|
@@ -147,7 +154,7 @@ export declare class ServicePrincipal extends pulumi.CustomResource {
|
|
|
147
154
|
*/
|
|
148
155
|
readonly allowInstancePoolCreate: pulumi.Output<boolean | undefined>;
|
|
149
156
|
/**
|
|
150
|
-
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity.
|
|
157
|
+
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity. For Databricks-managed service principals this value is auto-generated.
|
|
151
158
|
*/
|
|
152
159
|
readonly applicationId: pulumi.Output<string>;
|
|
153
160
|
/**
|
|
@@ -155,7 +162,7 @@ export declare class ServicePrincipal extends pulumi.CustomResource {
|
|
|
155
162
|
*/
|
|
156
163
|
readonly databricksSqlAccess: pulumi.Output<boolean | undefined>;
|
|
157
164
|
/**
|
|
158
|
-
*
|
|
165
|
+
* Deactivate the service principal when deleting the resource, rather than deleting the service principal entirely. Defaults to `true` when the provider is configured at the account-level and `false` when configured at the workspace-level. This flag is exclusive to forceDeleteRepos and forceDeleteHomeDir flags.
|
|
159
166
|
*/
|
|
160
167
|
readonly disableAsUserDeletion: pulumi.Output<boolean | undefined>;
|
|
161
168
|
/**
|
|
@@ -217,7 +224,7 @@ export interface ServicePrincipalState {
|
|
|
217
224
|
*/
|
|
218
225
|
allowInstancePoolCreate?: pulumi.Input<boolean>;
|
|
219
226
|
/**
|
|
220
|
-
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity.
|
|
227
|
+
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity. For Databricks-managed service principals this value is auto-generated.
|
|
221
228
|
*/
|
|
222
229
|
applicationId?: pulumi.Input<string>;
|
|
223
230
|
/**
|
|
@@ -225,7 +232,7 @@ export interface ServicePrincipalState {
|
|
|
225
232
|
*/
|
|
226
233
|
databricksSqlAccess?: pulumi.Input<boolean>;
|
|
227
234
|
/**
|
|
228
|
-
*
|
|
235
|
+
* Deactivate the service principal when deleting the resource, rather than deleting the service principal entirely. Defaults to `true` when the provider is configured at the account-level and `false` when configured at the workspace-level. This flag is exclusive to forceDeleteRepos and forceDeleteHomeDir flags.
|
|
229
236
|
*/
|
|
230
237
|
disableAsUserDeletion?: pulumi.Input<boolean>;
|
|
231
238
|
/**
|
|
@@ -279,7 +286,7 @@ export interface ServicePrincipalArgs {
|
|
|
279
286
|
*/
|
|
280
287
|
allowInstancePoolCreate?: pulumi.Input<boolean>;
|
|
281
288
|
/**
|
|
282
|
-
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity.
|
|
289
|
+
* This is the Azure Application ID of the given Azure service principal and will be their form of access and identity. For Databricks-managed service principals this value is auto-generated.
|
|
283
290
|
*/
|
|
284
291
|
applicationId?: pulumi.Input<string>;
|
|
285
292
|
/**
|
|
@@ -287,7 +294,7 @@ export interface ServicePrincipalArgs {
|
|
|
287
294
|
*/
|
|
288
295
|
databricksSqlAccess?: pulumi.Input<boolean>;
|
|
289
296
|
/**
|
|
290
|
-
*
|
|
297
|
+
* Deactivate the service principal when deleting the resource, rather than deleting the service principal entirely. Defaults to `true` when the provider is configured at the account-level and `false` when configured at the workspace-level. This flag is exclusive to forceDeleteRepos and forceDeleteHomeDir flags.
|
|
291
298
|
*/
|
|
292
299
|
disableAsUserDeletion?: pulumi.Input<boolean>;
|
|
293
300
|
/**
|
package/servicePrincipal.js
CHANGED
|
@@ -6,24 +6,31 @@ exports.ServicePrincipal = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Directly manage [Service Principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) that could be added to databricks.Group in Databricks
|
|
9
|
+
* Directly manage [Service Principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) that could be added to databricks.Group in Databricks account or workspace.
|
|
10
|
+
*
|
|
11
|
+
* There are different types of service principals:
|
|
12
|
+
*
|
|
13
|
+
* * Databricks-managed - exists only inside the Databricks platform (all clouds) and couldn't be used for accessing non-Databricks services.
|
|
14
|
+
* * Azure-managed - existing Azure service principal (enterprise application) is registered inside Databricks. It could be used to work with other Azure services.
|
|
10
15
|
*
|
|
11
16
|
* > **Note** To assign account level service principals to workspace use databricks_mws_permission_assignment.
|
|
12
17
|
*
|
|
13
|
-
* > **Note** Entitlements, like, `allowClusterCreate`, `allowInstancePoolCreate`, `databricksSqlAccess`, `workspaceAccess` applicable only for workspace-level service principals.
|
|
18
|
+
* > **Note** Entitlements, like, `allowClusterCreate`, `allowInstancePoolCreate`, `databricksSqlAccess`, `workspaceAccess` applicable only for workspace-level service principals. Use databricks.Entitlements resource to assign entitlements inside a workspace to account-level service principals.
|
|
19
|
+
*
|
|
20
|
+
* To create service principals in the Databricks account, the provider must be configured with `host = "https://accounts.cloud.databricks.com"` on AWS deployments or `host = "https://accounts.azuredatabricks.net"` and authenticate using the supported authentication method for account operations.
|
|
14
21
|
*
|
|
15
|
-
*
|
|
22
|
+
* The default behavior when deleting a `databricks.ServicePrincipal` resource depends on whether the provider is configured at the workspace-level or account-level. When the provider is configured at the workspace-level, the service principal will be deleted from the workspace. When the provider is configured at the account-level, the service principal will be deactivated but not deleted. When the provider is configured at the account level, to delete the service principal from the account when the resource is deleted, set `disableAsUserDeletion = false`. Conversely, when the provider is configured at the account-level, to deactivate the service principal when the resource is deleted, set `disableAsUserDeletion = true`.
|
|
16
23
|
*
|
|
17
24
|
* ## Example Usage
|
|
18
25
|
*
|
|
19
|
-
* Creating regular service principal:
|
|
26
|
+
* Creating regular Databricks-managed service principal:
|
|
20
27
|
*
|
|
21
28
|
* <!--Start PulumiCodeChooser -->
|
|
22
29
|
* ```typescript
|
|
23
30
|
* import * as pulumi from "@pulumi/pulumi";
|
|
24
31
|
* import * as databricks from "@pulumi/databricks";
|
|
25
32
|
*
|
|
26
|
-
* const sp = new databricks.ServicePrincipal("sp", {
|
|
33
|
+
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Admin SP"});
|
|
27
34
|
* ```
|
|
28
35
|
* <!--End PulumiCodeChooser -->
|
|
29
36
|
*
|
|
@@ -37,7 +44,7 @@ const utilities = require("./utilities");
|
|
|
37
44
|
* const admins = databricks.getGroup({
|
|
38
45
|
* displayName: "admins",
|
|
39
46
|
* });
|
|
40
|
-
* const sp = new databricks.ServicePrincipal("sp", {
|
|
47
|
+
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Admin SP"});
|
|
41
48
|
* const i_am_admin = new databricks.GroupMember("i-am-admin", {
|
|
42
49
|
* groupId: admins.then(admins => admins.id),
|
|
43
50
|
* memberId: sp.id,
|
|
@@ -45,7 +52,7 @@ const utilities = require("./utilities");
|
|
|
45
52
|
* ```
|
|
46
53
|
* <!--End PulumiCodeChooser -->
|
|
47
54
|
*
|
|
48
|
-
* Creating service principal with cluster create permissions:
|
|
55
|
+
* Creating Azure-managed service principal with cluster create permissions:
|
|
49
56
|
*
|
|
50
57
|
* <!--Start PulumiCodeChooser -->
|
|
51
58
|
* ```typescript
|
|
@@ -60,7 +67,7 @@ const utilities = require("./utilities");
|
|
|
60
67
|
* ```
|
|
61
68
|
* <!--End PulumiCodeChooser -->
|
|
62
69
|
*
|
|
63
|
-
* Creating service principal in AWS Databricks account:
|
|
70
|
+
* Creating Databricks-managed service principal in AWS Databricks account:
|
|
64
71
|
*
|
|
65
72
|
* <!--Start PulumiCodeChooser -->
|
|
66
73
|
* ```typescript
|
|
@@ -68,19 +75,19 @@ const utilities = require("./utilities");
|
|
|
68
75
|
* import * as databricks from "@pulumi/databricks";
|
|
69
76
|
*
|
|
70
77
|
* // initialize provider at account-level
|
|
71
|
-
* const
|
|
78
|
+
* const account = new databricks.Provider("account", {
|
|
72
79
|
* host: "https://accounts.cloud.databricks.com",
|
|
73
80
|
* accountId: "00000000-0000-0000-0000-000000000000",
|
|
74
81
|
* clientId: _var.client_id,
|
|
75
82
|
* clientSecret: _var.client_secret,
|
|
76
83
|
* });
|
|
77
84
|
* const sp = new databricks.ServicePrincipal("sp", {displayName: "Automation-only SP"}, {
|
|
78
|
-
* provider: databricks.
|
|
85
|
+
* provider: databricks.account,
|
|
79
86
|
* });
|
|
80
87
|
* ```
|
|
81
88
|
* <!--End PulumiCodeChooser -->
|
|
82
89
|
*
|
|
83
|
-
* Creating service principal in Azure Databricks account:
|
|
90
|
+
* Creating Azure-managed service principal in Azure Databricks account:
|
|
84
91
|
*
|
|
85
92
|
* <!--Start PulumiCodeChooser -->
|
|
86
93
|
* ```typescript
|
|
@@ -88,13 +95,13 @@ const utilities = require("./utilities");
|
|
|
88
95
|
* import * as databricks from "@pulumi/databricks";
|
|
89
96
|
*
|
|
90
97
|
* // initialize provider at Azure account-level
|
|
91
|
-
* const
|
|
98
|
+
* const account = new databricks.Provider("account", {
|
|
92
99
|
* host: "https://accounts.azuredatabricks.net",
|
|
93
100
|
* accountId: "00000000-0000-0000-0000-000000000000",
|
|
94
101
|
* authType: "azure-cli",
|
|
95
102
|
* });
|
|
96
103
|
* const sp = new databricks.ServicePrincipal("sp", {applicationId: "00000000-0000-0000-0000-000000000000"}, {
|
|
97
|
-
* provider: databricks.
|
|
104
|
+
* provider: databricks.account,
|
|
98
105
|
* });
|
|
99
106
|
* ```
|
|
100
107
|
* <!--End PulumiCodeChooser -->
|
|
@@ -103,12 +110,12 @@ const utilities = require("./utilities");
|
|
|
103
110
|
*
|
|
104
111
|
* The following resources are often used in the same context:
|
|
105
112
|
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
113
|
+
* - End to end workspace management guide.
|
|
114
|
+
* - databricks.Group to manage [groups in Databricks Workspace](https://docs.databricks.com/administration-guide/users-groups/groups.html) or [Account Console](https://accounts.cloud.databricks.com/) (for AWS deployments).
|
|
115
|
+
* - databricks.Group data to retrieve information about databricks.Group members, entitlements and instance profiles.
|
|
116
|
+
* - databricks.GroupMember to attach users and groups as group members.
|
|
117
|
+
* - databricks.Permissions to manage [access control](https://docs.databricks.com/security/access-control/index.html) in Databricks workspace.
|
|
118
|
+
* - databricks.SqlPermissions to manage data object access control lists in Databricks workspaces for things like tables, views, databases, and more to manage secrets for the service principal (only for AWS deployments)
|
|
112
119
|
*
|
|
113
120
|
* ## Import
|
|
114
121
|
*
|
package/servicePrincipal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"servicePrincipal.js","sourceRoot":"","sources":["../servicePrincipal.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"servicePrincipal.js","sourceRoot":"","sources":["../servicePrincipal.ts"],"names":[],"mappings":"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"}
|