@pulumi/databricks 1.22.0-alpha.1693027524 → 1.22.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/accessControlRuleSet.d.ts +125 -1
- package/accessControlRuleSet.js +119 -1
- package/accessControlRuleSet.js.map +1 -1
- package/catalog.d.ts +12 -0
- package/catalog.js +2 -0
- package/catalog.js.map +1 -1
- package/connection.d.ts +163 -0
- package/connection.js +108 -0
- package/connection.js.map +1 -0
- package/externalLocation.d.ts +44 -6
- package/externalLocation.js +6 -0
- package/externalLocation.js.map +1 -1
- package/getCurrentUser.d.ts +2 -0
- package/getCurrentUser.js +1 -0
- package/getCurrentUser.js.map +1 -1
- package/getGroup.d.ts +12 -0
- package/getGroup.js +1 -0
- package/getGroup.js.map +1 -1
- package/getServicePrincipal.d.ts +12 -0
- package/getServicePrincipal.js +1 -0
- package/getServicePrincipal.js.map +1 -1
- package/getUser.d.ts +4 -0
- package/getUser.js.map +1 -1
- package/grants.d.ts +3 -0
- package/grants.js +2 -0
- package/grants.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +8 -3
- package/index.js.map +1 -1
- package/metastore.d.ts +15 -3
- package/metastore.js +4 -3
- package/metastore.js.map +1 -1
- package/metastoreAssignment.d.ts +1 -0
- package/metastoreAssignment.js +1 -0
- package/metastoreAssignment.js.map +1 -1
- package/mlflowModel.d.ts +3 -6
- package/mlflowModel.js +0 -2
- package/mlflowModel.js.map +1 -1
- package/mwsCustomerManagedKeys.d.ts +49 -3
- package/mwsCustomerManagedKeys.js +37 -0
- package/mwsCustomerManagedKeys.js.map +1 -1
- package/mwsWorkspaces.d.ts +9 -0
- package/mwsWorkspaces.js.map +1 -1
- package/package.json +2 -2
- package/share.d.ts +12 -0
- package/share.js +2 -0
- package/share.js.map +1 -1
- package/sqlAlert.d.ts +6 -0
- package/sqlAlert.js +4 -0
- package/sqlAlert.js.map +1 -1
- package/sqlDashboard.d.ts +6 -0
- package/sqlDashboard.js +4 -0
- package/sqlDashboard.js.map +1 -1
- package/sqlQuery.d.ts +6 -0
- package/sqlQuery.js +4 -0
- package/sqlQuery.js.map +1 -1
- package/storageCredential.d.ts +3 -0
- package/storageCredential.js +2 -0
- package/storageCredential.js.map +1 -1
- package/types/input.d.ts +36 -14
- package/types/output.d.ts +34 -12
package/metastore.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* > **Notes**
|
|
4
|
-
* Unity Catalog APIs are accessible via **workspace-level APIs**. This design may change in the future.
|
|
5
|
-
*
|
|
6
3
|
* A metastore is the top-level container of objects in Unity Catalog. It stores data assets (tables and views) and the permissions that govern access to them. Databricks account admins can create metastores and assign them to Databricks workspaces in order to control which workloads use each metastore.
|
|
7
4
|
*
|
|
8
5
|
* Unity Catalog offers a new metastore with built in security and auditing. This is distinct to the metastore used in previous versions of Databricks (based on the Hive Metastore).
|
|
@@ -52,6 +49,7 @@ export declare class Metastore extends pulumi.CustomResource {
|
|
|
52
49
|
*/
|
|
53
50
|
readonly forceDestroy: pulumi.Output<boolean | undefined>;
|
|
54
51
|
readonly globalMetastoreId: pulumi.Output<string>;
|
|
52
|
+
readonly metastoreId: pulumi.Output<string>;
|
|
55
53
|
/**
|
|
56
54
|
* Name of metastore.
|
|
57
55
|
*/
|
|
@@ -60,11 +58,15 @@ export declare class Metastore extends pulumi.CustomResource {
|
|
|
60
58
|
* Username/groupname/sp applicationId of the metastore owner.
|
|
61
59
|
*/
|
|
62
60
|
readonly owner: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The region of the metastore
|
|
63
|
+
*/
|
|
63
64
|
readonly region: pulumi.Output<string>;
|
|
64
65
|
/**
|
|
65
66
|
* Path on cloud storage account, where managed `databricks.Table` are stored. Change forces creation of a new resource.
|
|
66
67
|
*/
|
|
67
68
|
readonly storageRoot: pulumi.Output<string>;
|
|
69
|
+
readonly storageRootCredentialId: pulumi.Output<string | undefined>;
|
|
68
70
|
readonly updatedAt: pulumi.Output<number>;
|
|
69
71
|
readonly updatedBy: pulumi.Output<string>;
|
|
70
72
|
/**
|
|
@@ -101,6 +103,7 @@ export interface MetastoreState {
|
|
|
101
103
|
*/
|
|
102
104
|
forceDestroy?: pulumi.Input<boolean>;
|
|
103
105
|
globalMetastoreId?: pulumi.Input<string>;
|
|
106
|
+
metastoreId?: pulumi.Input<string>;
|
|
104
107
|
/**
|
|
105
108
|
* Name of metastore.
|
|
106
109
|
*/
|
|
@@ -109,11 +112,15 @@ export interface MetastoreState {
|
|
|
109
112
|
* Username/groupname/sp applicationId of the metastore owner.
|
|
110
113
|
*/
|
|
111
114
|
owner?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The region of the metastore
|
|
117
|
+
*/
|
|
112
118
|
region?: pulumi.Input<string>;
|
|
113
119
|
/**
|
|
114
120
|
* Path on cloud storage account, where managed `databricks.Table` are stored. Change forces creation of a new resource.
|
|
115
121
|
*/
|
|
116
122
|
storageRoot?: pulumi.Input<string>;
|
|
123
|
+
storageRootCredentialId?: pulumi.Input<string>;
|
|
117
124
|
updatedAt?: pulumi.Input<number>;
|
|
118
125
|
updatedBy?: pulumi.Input<string>;
|
|
119
126
|
}
|
|
@@ -142,6 +149,7 @@ export interface MetastoreArgs {
|
|
|
142
149
|
*/
|
|
143
150
|
forceDestroy?: pulumi.Input<boolean>;
|
|
144
151
|
globalMetastoreId?: pulumi.Input<string>;
|
|
152
|
+
metastoreId?: pulumi.Input<string>;
|
|
145
153
|
/**
|
|
146
154
|
* Name of metastore.
|
|
147
155
|
*/
|
|
@@ -150,11 +158,15 @@ export interface MetastoreArgs {
|
|
|
150
158
|
* Username/groupname/sp applicationId of the metastore owner.
|
|
151
159
|
*/
|
|
152
160
|
owner?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* The region of the metastore
|
|
163
|
+
*/
|
|
153
164
|
region?: pulumi.Input<string>;
|
|
154
165
|
/**
|
|
155
166
|
* Path on cloud storage account, where managed `databricks.Table` are stored. Change forces creation of a new resource.
|
|
156
167
|
*/
|
|
157
168
|
storageRoot: pulumi.Input<string>;
|
|
169
|
+
storageRootCredentialId?: pulumi.Input<string>;
|
|
158
170
|
updatedAt?: pulumi.Input<number>;
|
|
159
171
|
updatedBy?: pulumi.Input<string>;
|
|
160
172
|
}
|
package/metastore.js
CHANGED
|
@@ -6,9 +6,6 @@ exports.Metastore = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* > **Notes**
|
|
10
|
-
* Unity Catalog APIs are accessible via **workspace-level APIs**. This design may change in the future.
|
|
11
|
-
*
|
|
12
9
|
* A metastore is the top-level container of objects in Unity Catalog. It stores data assets (tables and views) and the permissions that govern access to them. Databricks account admins can create metastores and assign them to Databricks workspaces in order to control which workloads use each metastore.
|
|
13
10
|
*
|
|
14
11
|
* Unity Catalog offers a new metastore with built in security and auditing. This is distinct to the metastore used in previous versions of Databricks (based on the Hive Metastore).
|
|
@@ -58,10 +55,12 @@ class Metastore extends pulumi.CustomResource {
|
|
|
58
55
|
resourceInputs["deltaSharingScope"] = state ? state.deltaSharingScope : undefined;
|
|
59
56
|
resourceInputs["forceDestroy"] = state ? state.forceDestroy : undefined;
|
|
60
57
|
resourceInputs["globalMetastoreId"] = state ? state.globalMetastoreId : undefined;
|
|
58
|
+
resourceInputs["metastoreId"] = state ? state.metastoreId : undefined;
|
|
61
59
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
62
60
|
resourceInputs["owner"] = state ? state.owner : undefined;
|
|
63
61
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
64
62
|
resourceInputs["storageRoot"] = state ? state.storageRoot : undefined;
|
|
63
|
+
resourceInputs["storageRootCredentialId"] = state ? state.storageRootCredentialId : undefined;
|
|
65
64
|
resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
|
|
66
65
|
resourceInputs["updatedBy"] = state ? state.updatedBy : undefined;
|
|
67
66
|
}
|
|
@@ -79,10 +78,12 @@ class Metastore extends pulumi.CustomResource {
|
|
|
79
78
|
resourceInputs["deltaSharingScope"] = args ? args.deltaSharingScope : undefined;
|
|
80
79
|
resourceInputs["forceDestroy"] = args ? args.forceDestroy : undefined;
|
|
81
80
|
resourceInputs["globalMetastoreId"] = args ? args.globalMetastoreId : undefined;
|
|
81
|
+
resourceInputs["metastoreId"] = args ? args.metastoreId : undefined;
|
|
82
82
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
83
83
|
resourceInputs["owner"] = args ? args.owner : undefined;
|
|
84
84
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
85
85
|
resourceInputs["storageRoot"] = args ? args.storageRoot : undefined;
|
|
86
|
+
resourceInputs["storageRootCredentialId"] = args ? args.storageRootCredentialId : undefined;
|
|
86
87
|
resourceInputs["updatedAt"] = args ? args.updatedAt : undefined;
|
|
87
88
|
resourceInputs["updatedBy"] = args ? args.updatedBy : undefined;
|
|
88
89
|
}
|
package/metastore.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metastore.js","sourceRoot":"","sources":["../metastore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"metastore.js","sourceRoot":"","sources":["../metastore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IAoDD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,6CAA6C,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2CAA2C,CAAC,CAAC,CAAC,SAAS,CAAC;YACtI,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,6CAA6C,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2CAA2C,CAAC,CAAC,CAAC,SAAS,CAAC;YACpI,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA7HL,8BA8HC;AAhHG,gBAAgB;AACO,sBAAY,GAAG,sCAAsC,CAAC"}
|
package/metastoreAssignment.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* const thisMetastore = new databricks.Metastore("thisMetastore", {
|
|
12
12
|
* storageRoot: `s3://${aws_s3_bucket.metastore.id}/metastore`,
|
|
13
13
|
* owner: "uc admins",
|
|
14
|
+
* region: "us-east-1",
|
|
14
15
|
* forceDestroy: true,
|
|
15
16
|
* });
|
|
16
17
|
* const thisMetastoreAssignment = new databricks.MetastoreAssignment("thisMetastoreAssignment", {
|
package/metastoreAssignment.js
CHANGED
|
@@ -17,6 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* const thisMetastore = new databricks.Metastore("thisMetastore", {
|
|
18
18
|
* storageRoot: `s3://${aws_s3_bucket.metastore.id}/metastore`,
|
|
19
19
|
* owner: "uc admins",
|
|
20
|
+
* region: "us-east-1",
|
|
20
21
|
* forceDestroy: true,
|
|
21
22
|
* });
|
|
22
23
|
* const thisMetastoreAssignment = new databricks.MetastoreAssignment("thisMetastoreAssignment", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metastoreAssignment.js","sourceRoot":"","sources":["../metastoreAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"metastoreAssignment.js","sourceRoot":"","sources":["../metastoreAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AAvEL,kDAwEC;AA1DG,gBAAgB;AACO,gCAAY,GAAG,0DAA0D,CAAC"}
|
package/mlflowModel.d.ts
CHANGED
|
@@ -64,22 +64,21 @@ export declare class MlflowModel extends pulumi.CustomResource {
|
|
|
64
64
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
65
65
|
*/
|
|
66
66
|
static isInstance(obj: any): obj is MlflowModel;
|
|
67
|
-
readonly creationTimestamp: pulumi.Output<number>;
|
|
67
|
+
readonly creationTimestamp: pulumi.Output<number | undefined>;
|
|
68
68
|
/**
|
|
69
69
|
* The description of the MLflow model.
|
|
70
70
|
*/
|
|
71
71
|
readonly description: pulumi.Output<string | undefined>;
|
|
72
|
-
readonly lastUpdatedTimestamp: pulumi.Output<number>;
|
|
72
|
+
readonly lastUpdatedTimestamp: pulumi.Output<number | undefined>;
|
|
73
73
|
/**
|
|
74
74
|
* Name of MLflow model. Change of name triggers new resource.
|
|
75
75
|
*/
|
|
76
76
|
readonly name: pulumi.Output<string>;
|
|
77
|
-
readonly registeredModelId: pulumi.Output<string>;
|
|
78
77
|
/**
|
|
79
78
|
* Tags for the MLflow model.
|
|
80
79
|
*/
|
|
81
80
|
readonly tags: pulumi.Output<outputs.MlflowModelTag[] | undefined>;
|
|
82
|
-
readonly userId: pulumi.Output<string>;
|
|
81
|
+
readonly userId: pulumi.Output<string | undefined>;
|
|
83
82
|
/**
|
|
84
83
|
* Create a MlflowModel resource with the given unique name, arguments, and options.
|
|
85
84
|
*
|
|
@@ -103,7 +102,6 @@ export interface MlflowModelState {
|
|
|
103
102
|
* Name of MLflow model. Change of name triggers new resource.
|
|
104
103
|
*/
|
|
105
104
|
name?: pulumi.Input<string>;
|
|
106
|
-
registeredModelId?: pulumi.Input<string>;
|
|
107
105
|
/**
|
|
108
106
|
* Tags for the MLflow model.
|
|
109
107
|
*/
|
|
@@ -124,7 +122,6 @@ export interface MlflowModelArgs {
|
|
|
124
122
|
* Name of MLflow model. Change of name triggers new resource.
|
|
125
123
|
*/
|
|
126
124
|
name?: pulumi.Input<string>;
|
|
127
|
-
registeredModelId?: pulumi.Input<string>;
|
|
128
125
|
/**
|
|
129
126
|
* Tags for the MLflow model.
|
|
130
127
|
*/
|
package/mlflowModel.js
CHANGED
|
@@ -84,7 +84,6 @@ class MlflowModel extends pulumi.CustomResource {
|
|
|
84
84
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
85
85
|
resourceInputs["lastUpdatedTimestamp"] = state ? state.lastUpdatedTimestamp : undefined;
|
|
86
86
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
87
|
-
resourceInputs["registeredModelId"] = state ? state.registeredModelId : undefined;
|
|
88
87
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
89
88
|
resourceInputs["userId"] = state ? state.userId : undefined;
|
|
90
89
|
}
|
|
@@ -94,7 +93,6 @@ class MlflowModel extends pulumi.CustomResource {
|
|
|
94
93
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
95
94
|
resourceInputs["lastUpdatedTimestamp"] = args ? args.lastUpdatedTimestamp : undefined;
|
|
96
95
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
97
|
-
resourceInputs["registeredModelId"] = args ? args.registeredModelId : undefined;
|
|
98
96
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
99
97
|
resourceInputs["userId"] = args ? args.userId : undefined;
|
|
100
98
|
}
|
package/mlflowModel.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mlflowModel.js","sourceRoot":"","sources":["../mlflowModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;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;
|
|
1
|
+
{"version":3,"file":"mlflowModel.js","sourceRoot":"","sources":["../mlflowModel.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,9 +5,11 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
7
|
* > **Note** If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.
|
|
8
|
+
*
|
|
8
9
|
* ### Customer-managed key for managed services
|
|
9
10
|
*
|
|
10
11
|
* You must configure this during workspace creation
|
|
12
|
+
* ### For AWS
|
|
11
13
|
*
|
|
12
14
|
* ```typescript
|
|
13
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -56,7 +58,25 @@ import * as outputs from "./types/output";
|
|
|
56
58
|
* useCases: ["MANAGED_SERVICES"],
|
|
57
59
|
* });
|
|
58
60
|
* ```
|
|
61
|
+
* ### For GCP
|
|
62
|
+
*
|
|
63
|
+
* ```typescript
|
|
64
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
65
|
+
* import * as databricks from "@pulumi/databricks";
|
|
66
|
+
*
|
|
67
|
+
* const config = new pulumi.Config();
|
|
68
|
+
* const databricksAccountId = config.requireObject("databricksAccountId");
|
|
69
|
+
* const cmekResourceId = config.requireObject("cmekResourceId");
|
|
70
|
+
* const managedServices = new databricks.MwsCustomerManagedKeys("managedServices", {
|
|
71
|
+
* accountId: databricksAccountId,
|
|
72
|
+
* gcpKeyInfo: {
|
|
73
|
+
* kmsKeyId: cmekResourceId,
|
|
74
|
+
* },
|
|
75
|
+
* useCases: ["MANAGED_SERVICES"],
|
|
76
|
+
* });
|
|
77
|
+
* ```
|
|
59
78
|
* ### Customer-managed key for workspace storage
|
|
79
|
+
* ### For AWS
|
|
60
80
|
*
|
|
61
81
|
* ```typescript
|
|
62
82
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -147,6 +167,23 @@ import * as outputs from "./types/output";
|
|
|
147
167
|
* useCases: ["STORAGE"],
|
|
148
168
|
* });
|
|
149
169
|
* ```
|
|
170
|
+
* ### For GCP
|
|
171
|
+
*
|
|
172
|
+
* ```typescript
|
|
173
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
174
|
+
* import * as databricks from "@pulumi/databricks";
|
|
175
|
+
*
|
|
176
|
+
* const config = new pulumi.Config();
|
|
177
|
+
* const databricksAccountId = config.requireObject("databricksAccountId");
|
|
178
|
+
* const cmekResourceId = config.requireObject("cmekResourceId");
|
|
179
|
+
* const storage = new databricks.MwsCustomerManagedKeys("storage", {
|
|
180
|
+
* accountId: databricksAccountId,
|
|
181
|
+
* gcpKeyInfo: {
|
|
182
|
+
* kmsKeyId: cmekResourceId,
|
|
183
|
+
* },
|
|
184
|
+
* useCases: ["STORAGE"],
|
|
185
|
+
* });
|
|
186
|
+
* ```
|
|
150
187
|
* ## Related Resources
|
|
151
188
|
*
|
|
152
189
|
* The following resources are used in the same context:
|
|
@@ -183,7 +220,7 @@ export declare class MwsCustomerManagedKeys extends pulumi.CustomResource {
|
|
|
183
220
|
*/
|
|
184
221
|
readonly accountId: pulumi.Output<string>;
|
|
185
222
|
/**
|
|
186
|
-
* This field is a block and is documented below.
|
|
223
|
+
* This field is a block and is documented below. This conflicts with `gcpKeyInfo`
|
|
187
224
|
*/
|
|
188
225
|
readonly awsKeyInfo: pulumi.Output<outputs.MwsCustomerManagedKeysAwsKeyInfo | undefined>;
|
|
189
226
|
/**
|
|
@@ -194,6 +231,9 @@ export declare class MwsCustomerManagedKeys extends pulumi.CustomResource {
|
|
|
194
231
|
* (String) ID of the encryption key configuration object.
|
|
195
232
|
*/
|
|
196
233
|
readonly customerManagedKeyId: pulumi.Output<string>;
|
|
234
|
+
/**
|
|
235
|
+
* This field is a block and is documented below. This conflicts with `awsKeyInfo`
|
|
236
|
+
*/
|
|
197
237
|
readonly gcpKeyInfo: pulumi.Output<outputs.MwsCustomerManagedKeysGcpKeyInfo | undefined>;
|
|
198
238
|
/**
|
|
199
239
|
* *(since v0.3.4)* List of use cases for which this key will be used. *If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.* Possible values are:
|
|
@@ -217,7 +257,7 @@ export interface MwsCustomerManagedKeysState {
|
|
|
217
257
|
*/
|
|
218
258
|
accountId?: pulumi.Input<string>;
|
|
219
259
|
/**
|
|
220
|
-
* This field is a block and is documented below.
|
|
260
|
+
* This field is a block and is documented below. This conflicts with `gcpKeyInfo`
|
|
221
261
|
*/
|
|
222
262
|
awsKeyInfo?: pulumi.Input<inputs.MwsCustomerManagedKeysAwsKeyInfo>;
|
|
223
263
|
/**
|
|
@@ -228,6 +268,9 @@ export interface MwsCustomerManagedKeysState {
|
|
|
228
268
|
* (String) ID of the encryption key configuration object.
|
|
229
269
|
*/
|
|
230
270
|
customerManagedKeyId?: pulumi.Input<string>;
|
|
271
|
+
/**
|
|
272
|
+
* This field is a block and is documented below. This conflicts with `awsKeyInfo`
|
|
273
|
+
*/
|
|
231
274
|
gcpKeyInfo?: pulumi.Input<inputs.MwsCustomerManagedKeysGcpKeyInfo>;
|
|
232
275
|
/**
|
|
233
276
|
* *(since v0.3.4)* List of use cases for which this key will be used. *If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.* Possible values are:
|
|
@@ -243,7 +286,7 @@ export interface MwsCustomerManagedKeysArgs {
|
|
|
243
286
|
*/
|
|
244
287
|
accountId: pulumi.Input<string>;
|
|
245
288
|
/**
|
|
246
|
-
* This field is a block and is documented below.
|
|
289
|
+
* This field is a block and is documented below. This conflicts with `gcpKeyInfo`
|
|
247
290
|
*/
|
|
248
291
|
awsKeyInfo?: pulumi.Input<inputs.MwsCustomerManagedKeysAwsKeyInfo>;
|
|
249
292
|
/**
|
|
@@ -254,6 +297,9 @@ export interface MwsCustomerManagedKeysArgs {
|
|
|
254
297
|
* (String) ID of the encryption key configuration object.
|
|
255
298
|
*/
|
|
256
299
|
customerManagedKeyId?: pulumi.Input<string>;
|
|
300
|
+
/**
|
|
301
|
+
* This field is a block and is documented below. This conflicts with `awsKeyInfo`
|
|
302
|
+
*/
|
|
257
303
|
gcpKeyInfo?: pulumi.Input<inputs.MwsCustomerManagedKeysGcpKeyInfo>;
|
|
258
304
|
/**
|
|
259
305
|
* *(since v0.3.4)* List of use cases for which this key will be used. *If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.* Possible values are:
|
|
@@ -9,9 +9,11 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
11
|
* > **Note** If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.
|
|
12
|
+
*
|
|
12
13
|
* ### Customer-managed key for managed services
|
|
13
14
|
*
|
|
14
15
|
* You must configure this during workspace creation
|
|
16
|
+
* ### For AWS
|
|
15
17
|
*
|
|
16
18
|
* ```typescript
|
|
17
19
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -60,7 +62,25 @@ const utilities = require("./utilities");
|
|
|
60
62
|
* useCases: ["MANAGED_SERVICES"],
|
|
61
63
|
* });
|
|
62
64
|
* ```
|
|
65
|
+
* ### For GCP
|
|
66
|
+
*
|
|
67
|
+
* ```typescript
|
|
68
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
69
|
+
* import * as databricks from "@pulumi/databricks";
|
|
70
|
+
*
|
|
71
|
+
* const config = new pulumi.Config();
|
|
72
|
+
* const databricksAccountId = config.requireObject("databricksAccountId");
|
|
73
|
+
* const cmekResourceId = config.requireObject("cmekResourceId");
|
|
74
|
+
* const managedServices = new databricks.MwsCustomerManagedKeys("managedServices", {
|
|
75
|
+
* accountId: databricksAccountId,
|
|
76
|
+
* gcpKeyInfo: {
|
|
77
|
+
* kmsKeyId: cmekResourceId,
|
|
78
|
+
* },
|
|
79
|
+
* useCases: ["MANAGED_SERVICES"],
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
63
82
|
* ### Customer-managed key for workspace storage
|
|
83
|
+
* ### For AWS
|
|
64
84
|
*
|
|
65
85
|
* ```typescript
|
|
66
86
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -151,6 +171,23 @@ const utilities = require("./utilities");
|
|
|
151
171
|
* useCases: ["STORAGE"],
|
|
152
172
|
* });
|
|
153
173
|
* ```
|
|
174
|
+
* ### For GCP
|
|
175
|
+
*
|
|
176
|
+
* ```typescript
|
|
177
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
178
|
+
* import * as databricks from "@pulumi/databricks";
|
|
179
|
+
*
|
|
180
|
+
* const config = new pulumi.Config();
|
|
181
|
+
* const databricksAccountId = config.requireObject("databricksAccountId");
|
|
182
|
+
* const cmekResourceId = config.requireObject("cmekResourceId");
|
|
183
|
+
* const storage = new databricks.MwsCustomerManagedKeys("storage", {
|
|
184
|
+
* accountId: databricksAccountId,
|
|
185
|
+
* gcpKeyInfo: {
|
|
186
|
+
* kmsKeyId: cmekResourceId,
|
|
187
|
+
* },
|
|
188
|
+
* useCases: ["STORAGE"],
|
|
189
|
+
* });
|
|
190
|
+
* ```
|
|
154
191
|
* ## Related Resources
|
|
155
192
|
*
|
|
156
193
|
* The following resources are used in the same context:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsCustomerManagedKeys.js","sourceRoot":"","sources":["../mwsCustomerManagedKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"mwsCustomerManagedKeys.js","sourceRoot":"","sources":["../mwsCustomerManagedKeys.ts"],"names":[],"mappings":"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"}
|
package/mwsWorkspaces.d.ts
CHANGED
|
@@ -76,6 +76,9 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
76
76
|
* `storageConfigurationId` from storage configuration.
|
|
77
77
|
*/
|
|
78
78
|
readonly storageConfigurationId: pulumi.Output<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* `customerManagedKeyId` from customer managed keys with `useCases` set to `STORAGE`. This is used to encrypt the DBFS Storage & Cluster Volumes.
|
|
81
|
+
*/
|
|
79
82
|
readonly storageCustomerManagedKeyId: pulumi.Output<string | undefined>;
|
|
80
83
|
readonly token: pulumi.Output<outputs.MwsWorkspacesToken | undefined>;
|
|
81
84
|
/**
|
|
@@ -165,6 +168,9 @@ export interface MwsWorkspacesState {
|
|
|
165
168
|
* `storageConfigurationId` from storage configuration.
|
|
166
169
|
*/
|
|
167
170
|
storageConfigurationId?: pulumi.Input<string>;
|
|
171
|
+
/**
|
|
172
|
+
* `customerManagedKeyId` from customer managed keys with `useCases` set to `STORAGE`. This is used to encrypt the DBFS Storage & Cluster Volumes.
|
|
173
|
+
*/
|
|
168
174
|
storageCustomerManagedKeyId?: pulumi.Input<string>;
|
|
169
175
|
token?: pulumi.Input<inputs.MwsWorkspacesToken>;
|
|
170
176
|
/**
|
|
@@ -246,6 +252,9 @@ export interface MwsWorkspacesArgs {
|
|
|
246
252
|
* `storageConfigurationId` from storage configuration.
|
|
247
253
|
*/
|
|
248
254
|
storageConfigurationId?: pulumi.Input<string>;
|
|
255
|
+
/**
|
|
256
|
+
* `customerManagedKeyId` from customer managed keys with `useCases` set to `STORAGE`. This is used to encrypt the DBFS Storage & Cluster Volumes.
|
|
257
|
+
*/
|
|
249
258
|
storageCustomerManagedKeyId?: pulumi.Input<string>;
|
|
250
259
|
token?: pulumi.Input<inputs.MwsWorkspacesToken>;
|
|
251
260
|
/**
|
package/mwsWorkspaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "v1.22.0
|
|
3
|
+
"version": "v1.22.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.22.0
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.22.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/share.d.ts
CHANGED
|
@@ -30,6 +30,10 @@ export declare class Share extends pulumi.CustomResource {
|
|
|
30
30
|
*/
|
|
31
31
|
readonly name: pulumi.Output<string>;
|
|
32
32
|
readonly objects: pulumi.Output<outputs.ShareObject[] | undefined>;
|
|
33
|
+
/**
|
|
34
|
+
* User name/group name/sp applicationId of the share owner.
|
|
35
|
+
*/
|
|
36
|
+
readonly owner: pulumi.Output<string | undefined>;
|
|
33
37
|
/**
|
|
34
38
|
* Create a Share resource with the given unique name, arguments, and options.
|
|
35
39
|
*
|
|
@@ -56,6 +60,10 @@ export interface ShareState {
|
|
|
56
60
|
*/
|
|
57
61
|
name?: pulumi.Input<string>;
|
|
58
62
|
objects?: pulumi.Input<pulumi.Input<inputs.ShareObject>[]>;
|
|
63
|
+
/**
|
|
64
|
+
* User name/group name/sp applicationId of the share owner.
|
|
65
|
+
*/
|
|
66
|
+
owner?: pulumi.Input<string>;
|
|
59
67
|
}
|
|
60
68
|
/**
|
|
61
69
|
* The set of arguments for constructing a Share resource.
|
|
@@ -74,4 +82,8 @@ export interface ShareArgs {
|
|
|
74
82
|
*/
|
|
75
83
|
name?: pulumi.Input<string>;
|
|
76
84
|
objects?: pulumi.Input<pulumi.Input<inputs.ShareObject>[]>;
|
|
85
|
+
/**
|
|
86
|
+
* User name/group name/sp applicationId of the share owner.
|
|
87
|
+
*/
|
|
88
|
+
owner?: pulumi.Input<string>;
|
|
77
89
|
}
|
package/share.js
CHANGED
|
@@ -37,6 +37,7 @@ class Share extends pulumi.CustomResource {
|
|
|
37
37
|
resourceInputs["createdBy"] = state ? state.createdBy : undefined;
|
|
38
38
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
39
39
|
resourceInputs["objects"] = state ? state.objects : undefined;
|
|
40
|
+
resourceInputs["owner"] = state ? state.owner : undefined;
|
|
40
41
|
}
|
|
41
42
|
else {
|
|
42
43
|
const args = argsOrState;
|
|
@@ -44,6 +45,7 @@ class Share extends pulumi.CustomResource {
|
|
|
44
45
|
resourceInputs["createdBy"] = args ? args.createdBy : undefined;
|
|
45
46
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
46
47
|
resourceInputs["objects"] = args ? args.objects : undefined;
|
|
48
|
+
resourceInputs["owner"] = args ? args.owner : undefined;
|
|
47
49
|
}
|
|
48
50
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
49
51
|
super(Share.__pulumiType, name, resourceInputs, opts);
|
package/share.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"share.js","sourceRoot":"","sources":["../share.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"share.js","sourceRoot":"","sources":["../share.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IA4BD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AA1EL,sBA2EC;AA7DG,gBAAgB;AACO,kBAAY,GAAG,8BAA8B,CAAC"}
|
package/sqlAlert.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare class SqlAlert extends pulumi.CustomResource {
|
|
|
31
31
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
32
32
|
*/
|
|
33
33
|
static isInstance(obj: any): obj is SqlAlert;
|
|
34
|
+
readonly createdAt: pulumi.Output<string>;
|
|
34
35
|
/**
|
|
35
36
|
* Name of the alert.
|
|
36
37
|
*/
|
|
@@ -51,6 +52,7 @@ export declare class SqlAlert extends pulumi.CustomResource {
|
|
|
51
52
|
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
52
53
|
*/
|
|
53
54
|
readonly rearm: pulumi.Output<number | undefined>;
|
|
55
|
+
readonly updatedAt: pulumi.Output<string>;
|
|
54
56
|
/**
|
|
55
57
|
* Create a SqlAlert resource with the given unique name, arguments, and options.
|
|
56
58
|
*
|
|
@@ -64,6 +66,7 @@ export declare class SqlAlert extends pulumi.CustomResource {
|
|
|
64
66
|
* Input properties used for looking up and filtering SqlAlert resources.
|
|
65
67
|
*/
|
|
66
68
|
export interface SqlAlertState {
|
|
69
|
+
createdAt?: pulumi.Input<string>;
|
|
67
70
|
/**
|
|
68
71
|
* Name of the alert.
|
|
69
72
|
*/
|
|
@@ -84,11 +87,13 @@ export interface SqlAlertState {
|
|
|
84
87
|
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
85
88
|
*/
|
|
86
89
|
rearm?: pulumi.Input<number>;
|
|
90
|
+
updatedAt?: pulumi.Input<string>;
|
|
87
91
|
}
|
|
88
92
|
/**
|
|
89
93
|
* The set of arguments for constructing a SqlAlert resource.
|
|
90
94
|
*/
|
|
91
95
|
export interface SqlAlertArgs {
|
|
96
|
+
createdAt?: pulumi.Input<string>;
|
|
92
97
|
/**
|
|
93
98
|
* Name of the alert.
|
|
94
99
|
*/
|
|
@@ -109,4 +114,5 @@ export interface SqlAlertArgs {
|
|
|
109
114
|
* Number of seconds after being triggered before the alert rearms itself and can be triggered again. If not defined, alert will never be triggered again.
|
|
110
115
|
*/
|
|
111
116
|
rearm?: pulumi.Input<number>;
|
|
117
|
+
updatedAt?: pulumi.Input<string>;
|
|
112
118
|
}
|
package/sqlAlert.js
CHANGED
|
@@ -47,11 +47,13 @@ class SqlAlert extends pulumi.CustomResource {
|
|
|
47
47
|
opts = opts || {};
|
|
48
48
|
if (opts.id) {
|
|
49
49
|
const state = argsOrState;
|
|
50
|
+
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
50
51
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
51
52
|
resourceInputs["options"] = state ? state.options : undefined;
|
|
52
53
|
resourceInputs["parent"] = state ? state.parent : undefined;
|
|
53
54
|
resourceInputs["queryId"] = state ? state.queryId : undefined;
|
|
54
55
|
resourceInputs["rearm"] = state ? state.rearm : undefined;
|
|
56
|
+
resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
|
|
55
57
|
}
|
|
56
58
|
else {
|
|
57
59
|
const args = argsOrState;
|
|
@@ -61,11 +63,13 @@ class SqlAlert extends pulumi.CustomResource {
|
|
|
61
63
|
if ((!args || args.queryId === undefined) && !opts.urn) {
|
|
62
64
|
throw new Error("Missing required property 'queryId'");
|
|
63
65
|
}
|
|
66
|
+
resourceInputs["createdAt"] = args ? args.createdAt : undefined;
|
|
64
67
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
65
68
|
resourceInputs["options"] = args ? args.options : undefined;
|
|
66
69
|
resourceInputs["parent"] = args ? args.parent : undefined;
|
|
67
70
|
resourceInputs["queryId"] = args ? args.queryId : undefined;
|
|
68
71
|
resourceInputs["rearm"] = args ? args.rearm : undefined;
|
|
72
|
+
resourceInputs["updatedAt"] = args ? args.updatedAt : undefined;
|
|
69
73
|
}
|
|
70
74
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
71
75
|
super(SqlAlert.__pulumiType, name, resourceInputs, opts);
|