@pulumi/databricks 1.72.0-alpha.1750139016 → 1.72.0-alpha.1752500848
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/accountNetworkPolicy.d.ts +2 -2
- package/accountNetworkPolicy.js +2 -2
- package/alertV2.d.ts +10 -4
- package/alertV2.js +8 -2
- package/alertV2.js.map +1 -1
- package/budgetPolicy.d.ts +2 -2
- package/budgetPolicy.js +2 -2
- package/cluster.d.ts +6 -0
- package/cluster.js +4 -0
- package/cluster.js.map +1 -1
- package/connection.d.ts +24 -29
- package/connection.js +3 -17
- package/connection.js.map +1 -1
- package/databaseInstance.d.ts +33 -31
- package/databaseInstance.js +18 -6
- package/databaseInstance.js.map +1 -1
- package/entitlements.d.ts +3 -3
- package/getAlertV2.d.ts +23 -1
- package/getAlertV2.js +22 -0
- package/getAlertV2.js.map +1 -1
- package/getAlertsV2.d.ts +38 -0
- package/getAlertsV2.js +38 -0
- package/getAlertsV2.js.map +1 -1
- package/getDatabaseInstance.d.ts +42 -28
- package/getDatabaseInstance.js +32 -4
- package/getDatabaseInstance.js.map +1 -1
- package/getDatabaseInstances.d.ts +32 -0
- package/getDatabaseInstances.js +32 -0
- package/getDatabaseInstances.js.map +1 -1
- package/getJobs.d.ts +63 -10
- package/getJobs.js +56 -10
- package/getJobs.js.map +1 -1
- package/getOnlineStore.d.ts +58 -0
- package/getOnlineStore.js +24 -0
- package/getOnlineStore.js.map +1 -0
- package/getOnlineStores.d.ts +14 -0
- package/getOnlineStores.js +18 -0
- package/getOnlineStores.js.map +1 -0
- package/getQualityMonitorV2.d.ts +95 -0
- package/getQualityMonitorV2.js +68 -0
- package/getQualityMonitorV2.js.map +1 -0
- package/getQualityMonitorsV2.d.ts +46 -0
- package/getQualityMonitorsV2.js +50 -0
- package/getQualityMonitorsV2.js.map +1 -0
- package/group.d.ts +3 -3
- package/index.d.ts +18 -0
- package/index.js +26 -4
- package/index.js.map +1 -1
- package/instancePool.d.ts +2 -0
- package/instancePool.js +2 -0
- package/instancePool.js.map +1 -1
- package/mwsNccPrivateEndpointRule.d.ts +91 -5
- package/mwsNccPrivateEndpointRule.js +37 -7
- package/mwsNccPrivateEndpointRule.js.map +1 -1
- package/mwsWorkspaces.d.ts +9 -9
- package/mwsWorkspaces.js +0 -6
- package/mwsWorkspaces.js.map +1 -1
- package/onlineStore.d.ts +105 -0
- package/onlineStore.js +78 -0
- package/onlineStore.js.map +1 -0
- package/package.json +2 -2
- package/pipeline.d.ts +21 -0
- package/pipeline.js +4 -0
- package/pipeline.js.map +1 -1
- package/qualityMonitorV2.d.ts +111 -0
- package/qualityMonitorV2.js +100 -0
- package/qualityMonitorV2.js.map +1 -0
- package/recipientFederationPolicy.d.ts +2 -2
- package/recipientFederationPolicy.js +2 -2
- package/schema.d.ts +8 -0
- package/schema.js +2 -0
- package/schema.js.map +1 -1
- package/servicePrincipal.d.ts +3 -3
- package/servicePrincipalRole.d.ts +19 -3
- package/servicePrincipalRole.js +16 -0
- package/servicePrincipalRole.js.map +1 -1
- package/servicePrincipalSecret.d.ts +29 -3
- package/servicePrincipalSecret.js +16 -0
- package/servicePrincipalSecret.js.map +1 -1
- package/types/input.d.ts +238 -51
- package/types/output.d.ts +284 -70
- package/user.d.ts +3 -3
- package/workspaceNetworkOption.d.ts +2 -2
- package/workspaceNetworkOption.js +2 -2
|
@@ -4,10 +4,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* > This resource can only be used with an account-level provider!
|
|
6
6
|
*
|
|
7
|
-
* > This feature is
|
|
7
|
+
* > This feature is available on Azure, and in Public Preview on AWS.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
+
* Create a private endpoint to an Azure storage account
|
|
12
|
+
*
|
|
11
13
|
* ```typescript
|
|
12
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
15
|
* import * as databricks from "@pulumi/databricks";
|
|
@@ -26,6 +28,30 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
26
28
|
* });
|
|
27
29
|
* ```
|
|
28
30
|
*
|
|
31
|
+
* Create a private endpoint rule to an AWS VPC endpoint and to an S3 bucket
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as databricks from "@pulumi/databricks";
|
|
36
|
+
*
|
|
37
|
+
* const config = new pulumi.Config();
|
|
38
|
+
* const region = config.requireObject<any>("region");
|
|
39
|
+
* const prefix = config.requireObject<any>("prefix");
|
|
40
|
+
* const ncc = new databricks.MwsNetworkConnectivityConfig("ncc", {
|
|
41
|
+
* name: `ncc-for-${prefix}`,
|
|
42
|
+
* region: region,
|
|
43
|
+
* });
|
|
44
|
+
* const storage = new databricks.MwsNccPrivateEndpointRule("storage", {
|
|
45
|
+
* networkConnectivityConfigId: ncc.networkConnectivityConfigId,
|
|
46
|
+
* resourceNames: ["bucket"],
|
|
47
|
+
* });
|
|
48
|
+
* const vpce = new databricks.MwsNccPrivateEndpointRule("vpce", {
|
|
49
|
+
* networkConnectivityConfigId: ncc.networkConnectivityConfigId,
|
|
50
|
+
* endpointService: "com.amazonaws.vpce.us-west-2.vpce-svc-xyz",
|
|
51
|
+
* domainNames: ["subdomain.internal.net"],
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
29
55
|
* ## Related Resources
|
|
30
56
|
*
|
|
31
57
|
* The following resources are used in the context:
|
|
@@ -69,6 +95,7 @@ export declare class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
69
95
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
70
96
|
*/
|
|
71
97
|
static isInstance(obj: any): obj is MwsNccPrivateEndpointRule;
|
|
98
|
+
readonly accountId: pulumi.Output<string | undefined>;
|
|
72
99
|
/**
|
|
73
100
|
* The current status of this private endpoint. The private endpoint rules are effective only if the connection state is ESTABLISHED. Remember that you must approve new endpoints on your resources in the Azure portal before they take effect.
|
|
74
101
|
* The possible values are:
|
|
@@ -90,15 +117,26 @@ export declare class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
90
117
|
* Time in epoch milliseconds when this object was deactivated.
|
|
91
118
|
*/
|
|
92
119
|
readonly deactivatedAt: pulumi.Output<number | undefined>;
|
|
120
|
+
/**
|
|
121
|
+
* Only used by private endpoints towards a VPC endpoint service behind a customer-managed VPC endpoint service. List of target AWS resource FQDNs accessible via the VPC endpoint service. Conflicts with `resourceNames`.
|
|
122
|
+
*/
|
|
93
123
|
readonly domainNames: pulumi.Output<string[] | undefined>;
|
|
124
|
+
/**
|
|
125
|
+
* Activation status. Only used by private endpoints towards an AWS S3 service.
|
|
126
|
+
*/
|
|
127
|
+
readonly enabled: pulumi.Output<boolean>;
|
|
94
128
|
/**
|
|
95
129
|
* The name of the Azure private endpoint resource, e.g. "databricks-088781b3-77fa-4132-b429-1af0d91bc593-pe-3cb31234"
|
|
96
130
|
*/
|
|
97
131
|
readonly endpointName: pulumi.Output<string>;
|
|
132
|
+
/**
|
|
133
|
+
* Example `com.amazonaws.vpce.us-east-1.vpce-svc-123abcc1298abc123`. The full target AWS endpoint service name that connects to the destination resources of the private endpoint.
|
|
134
|
+
*/
|
|
135
|
+
readonly endpointService: pulumi.Output<string | undefined>;
|
|
98
136
|
/**
|
|
99
137
|
* The sub-resource type (group ID) of the target resource. Must be one of supported resource types (i.e., `blob`, `dfs`, `sqlServer` , etc. Consult the [Azure documentation](https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-overview#private-link-resource) for full list of supported resources). Note that to connect to workspace root storage (root DBFS), you need two endpoints, one for `blob` and one for `dfs`. Change forces creation of a new resource.
|
|
100
138
|
*/
|
|
101
|
-
readonly groupId: pulumi.Output<string>;
|
|
139
|
+
readonly groupId: pulumi.Output<string | undefined>;
|
|
102
140
|
/**
|
|
103
141
|
* Canonical unique identifier of Network Connectivity Config in Databricks Account. Change forces creation of a new resource.
|
|
104
142
|
*/
|
|
@@ -106,7 +144,11 @@ export declare class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
106
144
|
/**
|
|
107
145
|
* The Azure resource ID of the target resource. Change forces creation of a new resource.
|
|
108
146
|
*/
|
|
109
|
-
readonly resourceId: pulumi.Output<string>;
|
|
147
|
+
readonly resourceId: pulumi.Output<string | undefined>;
|
|
148
|
+
/**
|
|
149
|
+
* Only used by private endpoints towards AWS S3 service. List of globally unique S3 bucket names that will be accessed via the VPC endpoint. The bucket names must be in the same region as the NCC/endpoint service. Conflict with `domainNames`.
|
|
150
|
+
*/
|
|
151
|
+
readonly resourceNames: pulumi.Output<string[] | undefined>;
|
|
110
152
|
/**
|
|
111
153
|
* the ID of a private endpoint rule.
|
|
112
154
|
*/
|
|
@@ -115,6 +157,10 @@ export declare class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
115
157
|
* Time in epoch milliseconds when this object was updated.
|
|
116
158
|
*/
|
|
117
159
|
readonly updatedTime: pulumi.Output<number>;
|
|
160
|
+
/**
|
|
161
|
+
* The AWS VPC endpoint ID. You can use this ID to identify the VPC endpoint created by Databricks.
|
|
162
|
+
*/
|
|
163
|
+
readonly vpcEndpointId: pulumi.Output<string>;
|
|
118
164
|
/**
|
|
119
165
|
* Create a MwsNccPrivateEndpointRule resource with the given unique name, arguments, and options.
|
|
120
166
|
*
|
|
@@ -128,6 +174,7 @@ export declare class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
128
174
|
* Input properties used for looking up and filtering MwsNccPrivateEndpointRule resources.
|
|
129
175
|
*/
|
|
130
176
|
export interface MwsNccPrivateEndpointRuleState {
|
|
177
|
+
accountId?: pulumi.Input<string>;
|
|
131
178
|
/**
|
|
132
179
|
* The current status of this private endpoint. The private endpoint rules are effective only if the connection state is ESTABLISHED. Remember that you must approve new endpoints on your resources in the Azure portal before they take effect.
|
|
133
180
|
* The possible values are:
|
|
@@ -149,11 +196,22 @@ export interface MwsNccPrivateEndpointRuleState {
|
|
|
149
196
|
* Time in epoch milliseconds when this object was deactivated.
|
|
150
197
|
*/
|
|
151
198
|
deactivatedAt?: pulumi.Input<number>;
|
|
199
|
+
/**
|
|
200
|
+
* Only used by private endpoints towards a VPC endpoint service behind a customer-managed VPC endpoint service. List of target AWS resource FQDNs accessible via the VPC endpoint service. Conflicts with `resourceNames`.
|
|
201
|
+
*/
|
|
152
202
|
domainNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
203
|
+
/**
|
|
204
|
+
* Activation status. Only used by private endpoints towards an AWS S3 service.
|
|
205
|
+
*/
|
|
206
|
+
enabled?: pulumi.Input<boolean>;
|
|
153
207
|
/**
|
|
154
208
|
* The name of the Azure private endpoint resource, e.g. "databricks-088781b3-77fa-4132-b429-1af0d91bc593-pe-3cb31234"
|
|
155
209
|
*/
|
|
156
210
|
endpointName?: pulumi.Input<string>;
|
|
211
|
+
/**
|
|
212
|
+
* Example `com.amazonaws.vpce.us-east-1.vpce-svc-123abcc1298abc123`. The full target AWS endpoint service name that connects to the destination resources of the private endpoint.
|
|
213
|
+
*/
|
|
214
|
+
endpointService?: pulumi.Input<string>;
|
|
157
215
|
/**
|
|
158
216
|
* The sub-resource type (group ID) of the target resource. Must be one of supported resource types (i.e., `blob`, `dfs`, `sqlServer` , etc. Consult the [Azure documentation](https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-overview#private-link-resource) for full list of supported resources). Note that to connect to workspace root storage (root DBFS), you need two endpoints, one for `blob` and one for `dfs`. Change forces creation of a new resource.
|
|
159
217
|
*/
|
|
@@ -166,6 +224,10 @@ export interface MwsNccPrivateEndpointRuleState {
|
|
|
166
224
|
* The Azure resource ID of the target resource. Change forces creation of a new resource.
|
|
167
225
|
*/
|
|
168
226
|
resourceId?: pulumi.Input<string>;
|
|
227
|
+
/**
|
|
228
|
+
* Only used by private endpoints towards AWS S3 service. List of globally unique S3 bucket names that will be accessed via the VPC endpoint. The bucket names must be in the same region as the NCC/endpoint service. Conflict with `domainNames`.
|
|
229
|
+
*/
|
|
230
|
+
resourceNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
169
231
|
/**
|
|
170
232
|
* the ID of a private endpoint rule.
|
|
171
233
|
*/
|
|
@@ -174,11 +236,16 @@ export interface MwsNccPrivateEndpointRuleState {
|
|
|
174
236
|
* Time in epoch milliseconds when this object was updated.
|
|
175
237
|
*/
|
|
176
238
|
updatedTime?: pulumi.Input<number>;
|
|
239
|
+
/**
|
|
240
|
+
* The AWS VPC endpoint ID. You can use this ID to identify the VPC endpoint created by Databricks.
|
|
241
|
+
*/
|
|
242
|
+
vpcEndpointId?: pulumi.Input<string>;
|
|
177
243
|
}
|
|
178
244
|
/**
|
|
179
245
|
* The set of arguments for constructing a MwsNccPrivateEndpointRule resource.
|
|
180
246
|
*/
|
|
181
247
|
export interface MwsNccPrivateEndpointRuleArgs {
|
|
248
|
+
accountId?: pulumi.Input<string>;
|
|
182
249
|
/**
|
|
183
250
|
* The current status of this private endpoint. The private endpoint rules are effective only if the connection state is ESTABLISHED. Remember that you must approve new endpoints on your resources in the Azure portal before they take effect.
|
|
184
251
|
* The possible values are:
|
|
@@ -200,15 +267,26 @@ export interface MwsNccPrivateEndpointRuleArgs {
|
|
|
200
267
|
* Time in epoch milliseconds when this object was deactivated.
|
|
201
268
|
*/
|
|
202
269
|
deactivatedAt?: pulumi.Input<number>;
|
|
270
|
+
/**
|
|
271
|
+
* Only used by private endpoints towards a VPC endpoint service behind a customer-managed VPC endpoint service. List of target AWS resource FQDNs accessible via the VPC endpoint service. Conflicts with `resourceNames`.
|
|
272
|
+
*/
|
|
203
273
|
domainNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
274
|
+
/**
|
|
275
|
+
* Activation status. Only used by private endpoints towards an AWS S3 service.
|
|
276
|
+
*/
|
|
277
|
+
enabled?: pulumi.Input<boolean>;
|
|
204
278
|
/**
|
|
205
279
|
* The name of the Azure private endpoint resource, e.g. "databricks-088781b3-77fa-4132-b429-1af0d91bc593-pe-3cb31234"
|
|
206
280
|
*/
|
|
207
281
|
endpointName?: pulumi.Input<string>;
|
|
282
|
+
/**
|
|
283
|
+
* Example `com.amazonaws.vpce.us-east-1.vpce-svc-123abcc1298abc123`. The full target AWS endpoint service name that connects to the destination resources of the private endpoint.
|
|
284
|
+
*/
|
|
285
|
+
endpointService?: pulumi.Input<string>;
|
|
208
286
|
/**
|
|
209
287
|
* The sub-resource type (group ID) of the target resource. Must be one of supported resource types (i.e., `blob`, `dfs`, `sqlServer` , etc. Consult the [Azure documentation](https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-overview#private-link-resource) for full list of supported resources). Note that to connect to workspace root storage (root DBFS), you need two endpoints, one for `blob` and one for `dfs`. Change forces creation of a new resource.
|
|
210
288
|
*/
|
|
211
|
-
groupId
|
|
289
|
+
groupId?: pulumi.Input<string>;
|
|
212
290
|
/**
|
|
213
291
|
* Canonical unique identifier of Network Connectivity Config in Databricks Account. Change forces creation of a new resource.
|
|
214
292
|
*/
|
|
@@ -216,7 +294,11 @@ export interface MwsNccPrivateEndpointRuleArgs {
|
|
|
216
294
|
/**
|
|
217
295
|
* The Azure resource ID of the target resource. Change forces creation of a new resource.
|
|
218
296
|
*/
|
|
219
|
-
resourceId
|
|
297
|
+
resourceId?: pulumi.Input<string>;
|
|
298
|
+
/**
|
|
299
|
+
* Only used by private endpoints towards AWS S3 service. List of globally unique S3 bucket names that will be accessed via the VPC endpoint. The bucket names must be in the same region as the NCC/endpoint service. Conflict with `domainNames`.
|
|
300
|
+
*/
|
|
301
|
+
resourceNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
220
302
|
/**
|
|
221
303
|
* the ID of a private endpoint rule.
|
|
222
304
|
*/
|
|
@@ -225,4 +307,8 @@ export interface MwsNccPrivateEndpointRuleArgs {
|
|
|
225
307
|
* Time in epoch milliseconds when this object was updated.
|
|
226
308
|
*/
|
|
227
309
|
updatedTime?: pulumi.Input<number>;
|
|
310
|
+
/**
|
|
311
|
+
* The AWS VPC endpoint ID. You can use this ID to identify the VPC endpoint created by Databricks.
|
|
312
|
+
*/
|
|
313
|
+
vpcEndpointId?: pulumi.Input<string>;
|
|
228
314
|
}
|
|
@@ -10,10 +10,12 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* > This resource can only be used with an account-level provider!
|
|
12
12
|
*
|
|
13
|
-
* > This feature is
|
|
13
|
+
* > This feature is available on Azure, and in Public Preview on AWS.
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
+
* Create a private endpoint to an Azure storage account
|
|
18
|
+
*
|
|
17
19
|
* ```typescript
|
|
18
20
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
21
|
* import * as databricks from "@pulumi/databricks";
|
|
@@ -32,6 +34,30 @@ const utilities = require("./utilities");
|
|
|
32
34
|
* });
|
|
33
35
|
* ```
|
|
34
36
|
*
|
|
37
|
+
* Create a private endpoint rule to an AWS VPC endpoint and to an S3 bucket
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as databricks from "@pulumi/databricks";
|
|
42
|
+
*
|
|
43
|
+
* const config = new pulumi.Config();
|
|
44
|
+
* const region = config.requireObject<any>("region");
|
|
45
|
+
* const prefix = config.requireObject<any>("prefix");
|
|
46
|
+
* const ncc = new databricks.MwsNetworkConnectivityConfig("ncc", {
|
|
47
|
+
* name: `ncc-for-${prefix}`,
|
|
48
|
+
* region: region,
|
|
49
|
+
* });
|
|
50
|
+
* const storage = new databricks.MwsNccPrivateEndpointRule("storage", {
|
|
51
|
+
* networkConnectivityConfigId: ncc.networkConnectivityConfigId,
|
|
52
|
+
* resourceNames: ["bucket"],
|
|
53
|
+
* });
|
|
54
|
+
* const vpce = new databricks.MwsNccPrivateEndpointRule("vpce", {
|
|
55
|
+
* networkConnectivityConfigId: ncc.networkConnectivityConfigId,
|
|
56
|
+
* endpointService: "com.amazonaws.vpce.us-west-2.vpce-svc-xyz",
|
|
57
|
+
* domainNames: ["subdomain.internal.net"],
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
35
61
|
* ## Related Resources
|
|
36
62
|
*
|
|
37
63
|
* The following resources are used in the context:
|
|
@@ -87,40 +113,44 @@ class MwsNccPrivateEndpointRule extends pulumi.CustomResource {
|
|
|
87
113
|
opts = opts || {};
|
|
88
114
|
if (opts.id) {
|
|
89
115
|
const state = argsOrState;
|
|
116
|
+
resourceInputs["accountId"] = state ? state.accountId : undefined;
|
|
90
117
|
resourceInputs["connectionState"] = state ? state.connectionState : undefined;
|
|
91
118
|
resourceInputs["creationTime"] = state ? state.creationTime : undefined;
|
|
92
119
|
resourceInputs["deactivated"] = state ? state.deactivated : undefined;
|
|
93
120
|
resourceInputs["deactivatedAt"] = state ? state.deactivatedAt : undefined;
|
|
94
121
|
resourceInputs["domainNames"] = state ? state.domainNames : undefined;
|
|
122
|
+
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
95
123
|
resourceInputs["endpointName"] = state ? state.endpointName : undefined;
|
|
124
|
+
resourceInputs["endpointService"] = state ? state.endpointService : undefined;
|
|
96
125
|
resourceInputs["groupId"] = state ? state.groupId : undefined;
|
|
97
126
|
resourceInputs["networkConnectivityConfigId"] = state ? state.networkConnectivityConfigId : undefined;
|
|
98
127
|
resourceInputs["resourceId"] = state ? state.resourceId : undefined;
|
|
128
|
+
resourceInputs["resourceNames"] = state ? state.resourceNames : undefined;
|
|
99
129
|
resourceInputs["ruleId"] = state ? state.ruleId : undefined;
|
|
100
130
|
resourceInputs["updatedTime"] = state ? state.updatedTime : undefined;
|
|
131
|
+
resourceInputs["vpcEndpointId"] = state ? state.vpcEndpointId : undefined;
|
|
101
132
|
}
|
|
102
133
|
else {
|
|
103
134
|
const args = argsOrState;
|
|
104
|
-
if ((!args || args.groupId === undefined) && !opts.urn) {
|
|
105
|
-
throw new Error("Missing required property 'groupId'");
|
|
106
|
-
}
|
|
107
135
|
if ((!args || args.networkConnectivityConfigId === undefined) && !opts.urn) {
|
|
108
136
|
throw new Error("Missing required property 'networkConnectivityConfigId'");
|
|
109
137
|
}
|
|
110
|
-
|
|
111
|
-
throw new Error("Missing required property 'resourceId'");
|
|
112
|
-
}
|
|
138
|
+
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
113
139
|
resourceInputs["connectionState"] = args ? args.connectionState : undefined;
|
|
114
140
|
resourceInputs["creationTime"] = args ? args.creationTime : undefined;
|
|
115
141
|
resourceInputs["deactivated"] = args ? args.deactivated : undefined;
|
|
116
142
|
resourceInputs["deactivatedAt"] = args ? args.deactivatedAt : undefined;
|
|
117
143
|
resourceInputs["domainNames"] = args ? args.domainNames : undefined;
|
|
144
|
+
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
118
145
|
resourceInputs["endpointName"] = args ? args.endpointName : undefined;
|
|
146
|
+
resourceInputs["endpointService"] = args ? args.endpointService : undefined;
|
|
119
147
|
resourceInputs["groupId"] = args ? args.groupId : undefined;
|
|
120
148
|
resourceInputs["networkConnectivityConfigId"] = args ? args.networkConnectivityConfigId : undefined;
|
|
121
149
|
resourceInputs["resourceId"] = args ? args.resourceId : undefined;
|
|
150
|
+
resourceInputs["resourceNames"] = args ? args.resourceNames : undefined;
|
|
122
151
|
resourceInputs["ruleId"] = args ? args.ruleId : undefined;
|
|
123
152
|
resourceInputs["updatedTime"] = args ? args.updatedTime : undefined;
|
|
153
|
+
resourceInputs["vpcEndpointId"] = args ? args.vpcEndpointId : undefined;
|
|
124
154
|
}
|
|
125
155
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
126
156
|
super(MwsNccPrivateEndpointRule.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsNccPrivateEndpointRule.js","sourceRoot":"","sources":["../mwsNccPrivateEndpointRule.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"mwsNccPrivateEndpointRule.js","sourceRoot":"","sources":["../mwsNccPrivateEndpointRule.ts"],"names":[],"mappings":"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"}
|
package/mwsWorkspaces.d.ts
CHANGED
|
@@ -76,9 +76,7 @@ import * as outputs from "./types/output";
|
|
|
76
76
|
* credentialsId: _this.credentialsId,
|
|
77
77
|
* storageConfigurationId: thisMwsStorageConfigurations.storageConfigurationId,
|
|
78
78
|
* networkId: thisMwsNetworks.networkId,
|
|
79
|
-
* token: {},
|
|
80
79
|
* });
|
|
81
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
82
80
|
* ```
|
|
83
81
|
*
|
|
84
82
|
* ### Creating a workspace on AWS with Databricks-Managed VPC
|
|
@@ -170,12 +168,10 @@ import * as outputs from "./types/output";
|
|
|
170
168
|
* awsRegion: "us-east-1",
|
|
171
169
|
* credentialsId: thisMwsCredentials.credentialsId,
|
|
172
170
|
* storageConfigurationId: thisMwsStorageConfigurations.storageConfigurationId,
|
|
173
|
-
* token: {},
|
|
174
171
|
* customTags: {
|
|
175
172
|
* SoldToCode: "1234",
|
|
176
173
|
* },
|
|
177
174
|
* });
|
|
178
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
179
175
|
* ```
|
|
180
176
|
*
|
|
181
177
|
* In order to create a [Databricks Workspace that leverages AWS PrivateLink](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html) please ensure that you have read and understood the [Enable Private Link](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html) documentation and then customise the example above with the relevant examples from mws_vpc_endpoint, mwsPrivateAccessSettings and mws_networks.
|
|
@@ -219,9 +215,7 @@ import * as outputs from "./types/output";
|
|
|
219
215
|
* },
|
|
220
216
|
* },
|
|
221
217
|
* networkId: _this.networkId,
|
|
222
|
-
* token: {},
|
|
223
218
|
* });
|
|
224
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
225
219
|
* ```
|
|
226
220
|
*
|
|
227
221
|
* In order to create a [Databricks Workspace that leverages GCP Private Service Connect](https://docs.gcp.databricks.com/administration-guide/cloud-configurations/gcp/private-service-connect.html) please ensure that you have read and understood the [Enable Private Service Connect](https://docs.gcp.databricks.com/administration-guide/cloud-configurations/gcp/private-service-connect.html) documentation and then customise the example above with the relevant examples from mws_vpc_endpoint, mwsPrivateAccessSettings and mws_networks.
|
|
@@ -291,6 +285,8 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
291
285
|
readonly cloudResourceContainer: pulumi.Output<outputs.MwsWorkspacesCloudResourceContainer | undefined>;
|
|
292
286
|
/**
|
|
293
287
|
* The compute mode for the workspace. When unset, a classic workspace is created, and both `credentialsId` and `storageConfigurationId` must be specified. When set to `SERVERLESS`, the resulting workspace is a serverless workspace, and `credentialsId` and `storageConfigurationId` must not be set. The only allowed value for this is `SERVERLESS`. Changing this field requires recreation of the workspace.
|
|
288
|
+
*
|
|
289
|
+
* > Databricks strongly recommends using OAuth instead of PATs for user account client authentication and authorization due to the improved security
|
|
294
290
|
*/
|
|
295
291
|
readonly computeMode: pulumi.Output<string | undefined>;
|
|
296
292
|
/**
|
|
@@ -326,7 +322,7 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
326
322
|
*/
|
|
327
323
|
readonly gcpWorkspaceSa: pulumi.Output<string>;
|
|
328
324
|
/**
|
|
329
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
325
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
330
326
|
*/
|
|
331
327
|
readonly gkeConfig: pulumi.Output<outputs.MwsWorkspacesGkeConfig | undefined>;
|
|
332
328
|
readonly isNoPublicIpEnabled: pulumi.Output<boolean | undefined>;
|
|
@@ -407,6 +403,8 @@ export interface MwsWorkspacesState {
|
|
|
407
403
|
cloudResourceContainer?: pulumi.Input<inputs.MwsWorkspacesCloudResourceContainer>;
|
|
408
404
|
/**
|
|
409
405
|
* The compute mode for the workspace. When unset, a classic workspace is created, and both `credentialsId` and `storageConfigurationId` must be specified. When set to `SERVERLESS`, the resulting workspace is a serverless workspace, and `credentialsId` and `storageConfigurationId` must not be set. The only allowed value for this is `SERVERLESS`. Changing this field requires recreation of the workspace.
|
|
406
|
+
*
|
|
407
|
+
* > Databricks strongly recommends using OAuth instead of PATs for user account client authentication and authorization due to the improved security
|
|
410
408
|
*/
|
|
411
409
|
computeMode?: pulumi.Input<string>;
|
|
412
410
|
/**
|
|
@@ -442,7 +440,7 @@ export interface MwsWorkspacesState {
|
|
|
442
440
|
*/
|
|
443
441
|
gcpWorkspaceSa?: pulumi.Input<string>;
|
|
444
442
|
/**
|
|
445
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
443
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
446
444
|
*/
|
|
447
445
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
448
446
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
|
@@ -515,6 +513,8 @@ export interface MwsWorkspacesArgs {
|
|
|
515
513
|
cloudResourceContainer?: pulumi.Input<inputs.MwsWorkspacesCloudResourceContainer>;
|
|
516
514
|
/**
|
|
517
515
|
* The compute mode for the workspace. When unset, a classic workspace is created, and both `credentialsId` and `storageConfigurationId` must be specified. When set to `SERVERLESS`, the resulting workspace is a serverless workspace, and `credentialsId` and `storageConfigurationId` must not be set. The only allowed value for this is `SERVERLESS`. Changing this field requires recreation of the workspace.
|
|
516
|
+
*
|
|
517
|
+
* > Databricks strongly recommends using OAuth instead of PATs for user account client authentication and authorization due to the improved security
|
|
518
518
|
*/
|
|
519
519
|
computeMode?: pulumi.Input<string>;
|
|
520
520
|
/**
|
|
@@ -542,7 +542,7 @@ export interface MwsWorkspacesArgs {
|
|
|
542
542
|
externalCustomerInfo?: pulumi.Input<inputs.MwsWorkspacesExternalCustomerInfo>;
|
|
543
543
|
gcpManagedNetworkConfig?: pulumi.Input<inputs.MwsWorkspacesGcpManagedNetworkConfig>;
|
|
544
544
|
/**
|
|
545
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
545
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
546
546
|
*/
|
|
547
547
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
548
548
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
package/mwsWorkspaces.js
CHANGED
|
@@ -80,9 +80,7 @@ const utilities = require("./utilities");
|
|
|
80
80
|
* credentialsId: _this.credentialsId,
|
|
81
81
|
* storageConfigurationId: thisMwsStorageConfigurations.storageConfigurationId,
|
|
82
82
|
* networkId: thisMwsNetworks.networkId,
|
|
83
|
-
* token: {},
|
|
84
83
|
* });
|
|
85
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
86
84
|
* ```
|
|
87
85
|
*
|
|
88
86
|
* ### Creating a workspace on AWS with Databricks-Managed VPC
|
|
@@ -174,12 +172,10 @@ const utilities = require("./utilities");
|
|
|
174
172
|
* awsRegion: "us-east-1",
|
|
175
173
|
* credentialsId: thisMwsCredentials.credentialsId,
|
|
176
174
|
* storageConfigurationId: thisMwsStorageConfigurations.storageConfigurationId,
|
|
177
|
-
* token: {},
|
|
178
175
|
* customTags: {
|
|
179
176
|
* SoldToCode: "1234",
|
|
180
177
|
* },
|
|
181
178
|
* });
|
|
182
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
183
179
|
* ```
|
|
184
180
|
*
|
|
185
181
|
* In order to create a [Databricks Workspace that leverages AWS PrivateLink](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html) please ensure that you have read and understood the [Enable Private Link](https://docs.databricks.com/administration-guide/cloud-configurations/aws/privatelink.html) documentation and then customise the example above with the relevant examples from mws_vpc_endpoint, mwsPrivateAccessSettings and mws_networks.
|
|
@@ -223,9 +219,7 @@ const utilities = require("./utilities");
|
|
|
223
219
|
* },
|
|
224
220
|
* },
|
|
225
221
|
* networkId: _this.networkId,
|
|
226
|
-
* token: {},
|
|
227
222
|
* });
|
|
228
|
-
* export const databricksToken = thisMwsWorkspaces.token.apply(token => token?.tokenValue);
|
|
229
223
|
* ```
|
|
230
224
|
*
|
|
231
225
|
* In order to create a [Databricks Workspace that leverages GCP Private Service Connect](https://docs.gcp.databricks.com/administration-guide/cloud-configurations/gcp/private-service-connect.html) please ensure that you have read and understood the [Enable Private Service Connect](https://docs.gcp.databricks.com/administration-guide/cloud-configurations/gcp/private-service-connect.html) documentation and then customise the example above with the relevant examples from mws_vpc_endpoint, mwsPrivateAccessSettings and mws_networks.
|
package/mwsWorkspaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":"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"}
|
package/onlineStore.d.ts
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Import
|
|
4
|
+
*
|
|
5
|
+
* As of Pulumi v1.5, resources can be imported through configuration.
|
|
6
|
+
*
|
|
7
|
+
* hcl
|
|
8
|
+
*
|
|
9
|
+
* import {
|
|
10
|
+
*
|
|
11
|
+
* id = name
|
|
12
|
+
*
|
|
13
|
+
* to = databricks_online_store.this
|
|
14
|
+
*
|
|
15
|
+
* }
|
|
16
|
+
*
|
|
17
|
+
* If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
|
|
18
|
+
*
|
|
19
|
+
* ```sh
|
|
20
|
+
* $ pulumi import databricks:index/onlineStore:OnlineStore databricks_online_store name
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare class OnlineStore extends pulumi.CustomResource {
|
|
24
|
+
/**
|
|
25
|
+
* Get an existing OnlineStore resource's state with the given name, ID, and optional extra
|
|
26
|
+
* properties used to qualify the lookup.
|
|
27
|
+
*
|
|
28
|
+
* @param name The _unique_ name of the resulting resource.
|
|
29
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
30
|
+
* @param state Any extra arguments used during the lookup.
|
|
31
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
32
|
+
*/
|
|
33
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OnlineStoreState, opts?: pulumi.CustomResourceOptions): OnlineStore;
|
|
34
|
+
/**
|
|
35
|
+
* Returns true if the given object is an instance of OnlineStore. This is designed to work even
|
|
36
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
37
|
+
*/
|
|
38
|
+
static isInstance(obj: any): obj is OnlineStore;
|
|
39
|
+
/**
|
|
40
|
+
* The capacity of the online store. Valid values are "CU_1", "CU_2", "CU_4", "CU_8"
|
|
41
|
+
*/
|
|
42
|
+
readonly capacity: pulumi.Output<string | undefined>;
|
|
43
|
+
/**
|
|
44
|
+
* (string) - The timestamp when the online store was created
|
|
45
|
+
*/
|
|
46
|
+
readonly creationTime: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* (string) - The email of the creator of the online store
|
|
49
|
+
*/
|
|
50
|
+
readonly creator: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* The name of the online store. This is the unique identifier for the online store
|
|
53
|
+
*/
|
|
54
|
+
readonly name: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* (string) - The current state of the online store. Possible values are: `AVAILABLE`, `DELETING`, `FAILING_OVER`, `STARTING`, `STOPPED`, `UPDATING`
|
|
57
|
+
*/
|
|
58
|
+
readonly state: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* Create a OnlineStore resource with the given unique name, arguments, and options.
|
|
61
|
+
*
|
|
62
|
+
* @param name The _unique_ name of the resource.
|
|
63
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
64
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
65
|
+
*/
|
|
66
|
+
constructor(name: string, args?: OnlineStoreArgs, opts?: pulumi.CustomResourceOptions);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Input properties used for looking up and filtering OnlineStore resources.
|
|
70
|
+
*/
|
|
71
|
+
export interface OnlineStoreState {
|
|
72
|
+
/**
|
|
73
|
+
* The capacity of the online store. Valid values are "CU_1", "CU_2", "CU_4", "CU_8"
|
|
74
|
+
*/
|
|
75
|
+
capacity?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* (string) - The timestamp when the online store was created
|
|
78
|
+
*/
|
|
79
|
+
creationTime?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* (string) - The email of the creator of the online store
|
|
82
|
+
*/
|
|
83
|
+
creator?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The name of the online store. This is the unique identifier for the online store
|
|
86
|
+
*/
|
|
87
|
+
name?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* (string) - The current state of the online store. Possible values are: `AVAILABLE`, `DELETING`, `FAILING_OVER`, `STARTING`, `STOPPED`, `UPDATING`
|
|
90
|
+
*/
|
|
91
|
+
state?: pulumi.Input<string>;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* The set of arguments for constructing a OnlineStore resource.
|
|
95
|
+
*/
|
|
96
|
+
export interface OnlineStoreArgs {
|
|
97
|
+
/**
|
|
98
|
+
* The capacity of the online store. Valid values are "CU_1", "CU_2", "CU_4", "CU_8"
|
|
99
|
+
*/
|
|
100
|
+
capacity?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The name of the online store. This is the unique identifier for the online store
|
|
103
|
+
*/
|
|
104
|
+
name?: pulumi.Input<string>;
|
|
105
|
+
}
|