@pulumi/databricks 1.85.0 → 1.86.0-alpha.1771301280
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/app.d.ts +3 -0
- package/app.js +2 -0
- package/app.js.map +1 -1
- package/appsSpace.d.ts +207 -0
- package/appsSpace.js +86 -0
- package/appsSpace.js.map +1 -0
- package/clusterPolicy.d.ts +3 -0
- package/clusterPolicy.js +2 -0
- package/clusterPolicy.js.map +1 -1
- package/dbfsFile.d.ts +14 -0
- package/dbfsFile.js +2 -0
- package/dbfsFile.js.map +1 -1
- package/endpoint.d.ts +159 -0
- package/endpoint.js +102 -0
- package/endpoint.js.map +1 -0
- package/entitlements.d.ts +14 -0
- package/entitlements.js +2 -0
- package/entitlements.js.map +1 -1
- package/entityTagAssignment.d.ts +24 -0
- package/entityTagAssignment.js +6 -0
- package/entityTagAssignment.js.map +1 -1
- package/getAppsSpace.d.ts +117 -0
- package/getAppsSpace.js +30 -0
- package/getAppsSpace.js.map +1 -0
- package/getAppsSpaces.d.ts +49 -0
- package/getAppsSpaces.js +32 -0
- package/getAppsSpaces.js.map +1 -0
- package/getDatabaseInstances.d.ts +2 -2
- package/getEndpoint.d.ts +94 -0
- package/getEndpoint.js +46 -0
- package/getEndpoint.js.map +1 -0
- package/getEndpoints.d.ts +54 -0
- package/getEndpoints.js +48 -0
- package/getEndpoints.js.map +1 -0
- package/getEntityTagAssignment.d.ts +12 -0
- package/getEntityTagAssignment.js.map +1 -1
- package/getPostgresProjects.d.ts +2 -2
- package/index.d.ts +18 -0
- package/index.js +30 -8
- package/index.js.map +1 -1
- package/instancePool.d.ts +3 -0
- package/instancePool.js +2 -0
- package/instancePool.js.map +1 -1
- package/instanceProfile.d.ts +14 -0
- package/instanceProfile.js +2 -0
- package/instanceProfile.js.map +1 -1
- package/metastoreProvider.d.ts +14 -0
- package/metastoreProvider.js +2 -0
- package/metastoreProvider.js.map +1 -1
- package/mount.d.ts +6 -0
- package/mount.js +5 -0
- package/mount.js.map +1 -1
- package/mwsWorkspaces.d.ts +3 -3
- package/notificationDestination.d.ts +12 -0
- package/notificationDestination.js +2 -0
- package/notificationDestination.js.map +1 -1
- package/oboToken.d.ts +14 -0
- package/oboToken.js +2 -0
- package/oboToken.js.map +1 -1
- package/package.json +2 -2
- package/permissions.d.ts +3 -0
- package/permissions.js +2 -0
- package/permissions.js.map +1 -1
- package/pipeline.d.ts +3 -0
- package/pipeline.js +2 -0
- package/pipeline.js.map +1 -1
- package/repo.d.ts +3 -0
- package/repo.js +2 -0
- package/repo.js.map +1 -1
- package/secretScope.d.ts +12 -0
- package/secretScope.js +2 -0
- package/secretScope.js.map +1 -1
- package/servicePrincipalSecret.d.ts +14 -0
- package/servicePrincipalSecret.js +2 -0
- package/servicePrincipalSecret.js.map +1 -1
- package/sqlDashboard.d.ts +14 -0
- package/sqlDashboard.js +2 -0
- package/sqlDashboard.js.map +1 -1
- package/sqlGlobalConfig.d.ts +14 -0
- package/sqlGlobalConfig.js +2 -0
- package/sqlGlobalConfig.js.map +1 -1
- package/sqlQuery.d.ts +3 -0
- package/sqlQuery.js +2 -0
- package/sqlQuery.js.map +1 -1
- package/sqlVisualization.d.ts +14 -0
- package/sqlVisualization.js +2 -0
- package/sqlVisualization.js.map +1 -1
- package/sqlWidget.d.ts +12 -0
- package/sqlWidget.js +2 -0
- package/sqlWidget.js.map +1 -1
- package/table.d.ts +3 -0
- package/table.js +2 -0
- package/table.js.map +1 -1
- package/token.d.ts +17 -3
- package/token.js +2 -0
- package/token.js.map +1 -1
- package/types/input.d.ts +312 -6
- package/types/output.d.ts +863 -21
- package/workspaceConf.d.ts +14 -0
- package/workspaceConf.js +2 -0
- package/workspaceConf.js.map +1 -1
package/endpoint.js
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.Endpoint = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
10
|
+
*
|
|
11
|
+
* Endpoint resource manages network connectivity endpoints for private access to Databricks workspaces.
|
|
12
|
+
*
|
|
13
|
+
* > **Note** This resource can only be used with an account-level provider!
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ### Example for Azure cloud
|
|
18
|
+
* This is an example for creating an endpoint in Azure cloud:
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as databricks from "@pulumi/databricks";
|
|
22
|
+
*
|
|
23
|
+
* const _this = new databricks.Endpoint("this", {
|
|
24
|
+
* accountId: "eae3abf6-1496-494e-9983-4660a5ad5aab",
|
|
25
|
+
* endpointName: "my-private-endpoint",
|
|
26
|
+
* region: "westus",
|
|
27
|
+
* azurePrivateEndpointInfo: {
|
|
28
|
+
* privateEndpointName: "my-pe",
|
|
29
|
+
* privateEndpointResourceGuid: "12345678-1234-1234-1234-123456789abc",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
class Endpoint extends pulumi.CustomResource {
|
|
35
|
+
/**
|
|
36
|
+
* Get an existing Endpoint 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, id, state, opts) {
|
|
45
|
+
return new Endpoint(name, state, { ...opts, id: id });
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Returns true if the given object is an instance of Endpoint. This is designed to work even
|
|
49
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
50
|
+
*/
|
|
51
|
+
static isInstance(obj) {
|
|
52
|
+
if (obj === undefined || obj === null) {
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
return obj['__pulumiType'] === Endpoint.__pulumiType;
|
|
56
|
+
}
|
|
57
|
+
constructor(name, argsOrState, opts) {
|
|
58
|
+
let resourceInputs = {};
|
|
59
|
+
opts = opts || {};
|
|
60
|
+
if (opts.id) {
|
|
61
|
+
const state = argsOrState;
|
|
62
|
+
resourceInputs["accountId"] = state?.accountId;
|
|
63
|
+
resourceInputs["azurePrivateEndpointInfo"] = state?.azurePrivateEndpointInfo;
|
|
64
|
+
resourceInputs["createTime"] = state?.createTime;
|
|
65
|
+
resourceInputs["displayName"] = state?.displayName;
|
|
66
|
+
resourceInputs["endpointId"] = state?.endpointId;
|
|
67
|
+
resourceInputs["name"] = state?.name;
|
|
68
|
+
resourceInputs["parent"] = state?.parent;
|
|
69
|
+
resourceInputs["region"] = state?.region;
|
|
70
|
+
resourceInputs["state"] = state?.state;
|
|
71
|
+
resourceInputs["useCase"] = state?.useCase;
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
const args = argsOrState;
|
|
75
|
+
if (args?.displayName === undefined && !opts.urn) {
|
|
76
|
+
throw new Error("Missing required property 'displayName'");
|
|
77
|
+
}
|
|
78
|
+
if (args?.parent === undefined && !opts.urn) {
|
|
79
|
+
throw new Error("Missing required property 'parent'");
|
|
80
|
+
}
|
|
81
|
+
if (args?.region === undefined && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'region'");
|
|
83
|
+
}
|
|
84
|
+
resourceInputs["azurePrivateEndpointInfo"] = args?.azurePrivateEndpointInfo;
|
|
85
|
+
resourceInputs["displayName"] = args?.displayName;
|
|
86
|
+
resourceInputs["parent"] = args?.parent;
|
|
87
|
+
resourceInputs["region"] = args?.region;
|
|
88
|
+
resourceInputs["accountId"] = undefined /*out*/;
|
|
89
|
+
resourceInputs["createTime"] = undefined /*out*/;
|
|
90
|
+
resourceInputs["endpointId"] = undefined /*out*/;
|
|
91
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
92
|
+
resourceInputs["state"] = undefined /*out*/;
|
|
93
|
+
resourceInputs["useCase"] = undefined /*out*/;
|
|
94
|
+
}
|
|
95
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
96
|
+
super(Endpoint.__pulumiType, name, resourceInputs, opts);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.Endpoint = Endpoint;
|
|
100
|
+
/** @internal */
|
|
101
|
+
Endpoint.__pulumiType = 'databricks:index/endpoint:Endpoint';
|
|
102
|
+
//# sourceMappingURL=endpoint.js.map
|
package/endpoint.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../endpoint.ts"],"names":[],"mappings":"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"}
|
package/entitlements.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* This resource allows you to set entitlements to existing databricks_users, databricks.Group or databricks_service_principal.
|
|
4
6
|
*
|
|
@@ -100,6 +102,10 @@ export declare class Entitlements extends pulumi.CustomResource {
|
|
|
100
102
|
* Canonical unique identifier for the group.
|
|
101
103
|
*/
|
|
102
104
|
readonly groupId: pulumi.Output<string | undefined>;
|
|
105
|
+
/**
|
|
106
|
+
* Configure the provider for management through account provider. This block consists of the following fields:
|
|
107
|
+
*/
|
|
108
|
+
readonly providerConfig: pulumi.Output<outputs.EntitlementsProviderConfig | undefined>;
|
|
103
109
|
/**
|
|
104
110
|
* Canonical unique identifier for the service principal.
|
|
105
111
|
*
|
|
@@ -147,6 +153,10 @@ export interface EntitlementsState {
|
|
|
147
153
|
* Canonical unique identifier for the group.
|
|
148
154
|
*/
|
|
149
155
|
groupId?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Configure the provider for management through account provider. This block consists of the following fields:
|
|
158
|
+
*/
|
|
159
|
+
providerConfig?: pulumi.Input<inputs.EntitlementsProviderConfig>;
|
|
150
160
|
/**
|
|
151
161
|
* Canonical unique identifier for the service principal.
|
|
152
162
|
*
|
|
@@ -186,6 +196,10 @@ export interface EntitlementsArgs {
|
|
|
186
196
|
* Canonical unique identifier for the group.
|
|
187
197
|
*/
|
|
188
198
|
groupId?: pulumi.Input<string>;
|
|
199
|
+
/**
|
|
200
|
+
* Configure the provider for management through account provider. This block consists of the following fields:
|
|
201
|
+
*/
|
|
202
|
+
providerConfig?: pulumi.Input<inputs.EntitlementsProviderConfig>;
|
|
189
203
|
/**
|
|
190
204
|
* Canonical unique identifier for the service principal.
|
|
191
205
|
*
|
package/entitlements.js
CHANGED
|
@@ -106,6 +106,7 @@ class Entitlements extends pulumi.CustomResource {
|
|
|
106
106
|
resourceInputs["allowInstancePoolCreate"] = state?.allowInstancePoolCreate;
|
|
107
107
|
resourceInputs["databricksSqlAccess"] = state?.databricksSqlAccess;
|
|
108
108
|
resourceInputs["groupId"] = state?.groupId;
|
|
109
|
+
resourceInputs["providerConfig"] = state?.providerConfig;
|
|
109
110
|
resourceInputs["servicePrincipalId"] = state?.servicePrincipalId;
|
|
110
111
|
resourceInputs["userId"] = state?.userId;
|
|
111
112
|
resourceInputs["workspaceAccess"] = state?.workspaceAccess;
|
|
@@ -117,6 +118,7 @@ class Entitlements extends pulumi.CustomResource {
|
|
|
117
118
|
resourceInputs["allowInstancePoolCreate"] = args?.allowInstancePoolCreate;
|
|
118
119
|
resourceInputs["databricksSqlAccess"] = args?.databricksSqlAccess;
|
|
119
120
|
resourceInputs["groupId"] = args?.groupId;
|
|
121
|
+
resourceInputs["providerConfig"] = args?.providerConfig;
|
|
120
122
|
resourceInputs["servicePrincipalId"] = args?.servicePrincipalId;
|
|
121
123
|
resourceInputs["userId"] = args?.userId;
|
|
122
124
|
resourceInputs["workspaceAccess"] = args?.workspaceAccess;
|
package/entitlements.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entitlements.js","sourceRoot":"","sources":["../entitlements.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"entitlements.js","sourceRoot":"","sources":["../entitlements.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAiDD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,EAAE,mBAAmB,CAAC;YACnE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;SAChE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,EAAE,uBAAuB,CAAC;YAC1E,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,EAAE,mBAAmB,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AAvGL,oCAwGC;AA1FG,gBAAgB;AACO,yBAAY,GAAG,4CAA4C,CAAC"}
|
package/entityTagAssignment.d.ts
CHANGED
|
@@ -74,6 +74,10 @@ export declare class EntityTagAssignment extends pulumi.CustomResource {
|
|
|
74
74
|
* Configure the provider for management through account provider.
|
|
75
75
|
*/
|
|
76
76
|
readonly providerConfig: pulumi.Output<outputs.EntityTagAssignmentProviderConfig | undefined>;
|
|
77
|
+
/**
|
|
78
|
+
* (string) - The source type of the tag assignment, e.g., user-assigned or system-assigned. Possible values are: `TAG_ASSIGNMENT_SOURCE_TYPE_SYSTEM_DATA_CLASSIFICATION`
|
|
79
|
+
*/
|
|
80
|
+
readonly sourceType: pulumi.Output<string>;
|
|
77
81
|
/**
|
|
78
82
|
* The key of the tag
|
|
79
83
|
*/
|
|
@@ -82,6 +86,14 @@ export declare class EntityTagAssignment extends pulumi.CustomResource {
|
|
|
82
86
|
* The value of the tag
|
|
83
87
|
*/
|
|
84
88
|
readonly tagValue: pulumi.Output<string | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* (string) - The timestamp when the tag assignment was last updated
|
|
91
|
+
*/
|
|
92
|
+
readonly updateTime: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* (string) - The user or principal who updated the tag assignment
|
|
95
|
+
*/
|
|
96
|
+
readonly updatedBy: pulumi.Output<string>;
|
|
85
97
|
/**
|
|
86
98
|
* Create a EntityTagAssignment resource with the given unique name, arguments, and options.
|
|
87
99
|
*
|
|
@@ -107,6 +119,10 @@ export interface EntityTagAssignmentState {
|
|
|
107
119
|
* Configure the provider for management through account provider.
|
|
108
120
|
*/
|
|
109
121
|
providerConfig?: pulumi.Input<inputs.EntityTagAssignmentProviderConfig>;
|
|
122
|
+
/**
|
|
123
|
+
* (string) - The source type of the tag assignment, e.g., user-assigned or system-assigned. Possible values are: `TAG_ASSIGNMENT_SOURCE_TYPE_SYSTEM_DATA_CLASSIFICATION`
|
|
124
|
+
*/
|
|
125
|
+
sourceType?: pulumi.Input<string>;
|
|
110
126
|
/**
|
|
111
127
|
* The key of the tag
|
|
112
128
|
*/
|
|
@@ -115,6 +131,14 @@ export interface EntityTagAssignmentState {
|
|
|
115
131
|
* The value of the tag
|
|
116
132
|
*/
|
|
117
133
|
tagValue?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* (string) - The timestamp when the tag assignment was last updated
|
|
136
|
+
*/
|
|
137
|
+
updateTime?: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* (string) - The user or principal who updated the tag assignment
|
|
140
|
+
*/
|
|
141
|
+
updatedBy?: pulumi.Input<string>;
|
|
118
142
|
}
|
|
119
143
|
/**
|
|
120
144
|
* The set of arguments for constructing a EntityTagAssignment resource.
|
package/entityTagAssignment.js
CHANGED
|
@@ -81,8 +81,11 @@ class EntityTagAssignment extends pulumi.CustomResource {
|
|
|
81
81
|
resourceInputs["entityName"] = state?.entityName;
|
|
82
82
|
resourceInputs["entityType"] = state?.entityType;
|
|
83
83
|
resourceInputs["providerConfig"] = state?.providerConfig;
|
|
84
|
+
resourceInputs["sourceType"] = state?.sourceType;
|
|
84
85
|
resourceInputs["tagKey"] = state?.tagKey;
|
|
85
86
|
resourceInputs["tagValue"] = state?.tagValue;
|
|
87
|
+
resourceInputs["updateTime"] = state?.updateTime;
|
|
88
|
+
resourceInputs["updatedBy"] = state?.updatedBy;
|
|
86
89
|
}
|
|
87
90
|
else {
|
|
88
91
|
const args = argsOrState;
|
|
@@ -100,6 +103,9 @@ class EntityTagAssignment extends pulumi.CustomResource {
|
|
|
100
103
|
resourceInputs["providerConfig"] = args?.providerConfig;
|
|
101
104
|
resourceInputs["tagKey"] = args?.tagKey;
|
|
102
105
|
resourceInputs["tagValue"] = args?.tagValue;
|
|
106
|
+
resourceInputs["sourceType"] = undefined /*out*/;
|
|
107
|
+
resourceInputs["updateTime"] = undefined /*out*/;
|
|
108
|
+
resourceInputs["updatedBy"] = undefined /*out*/;
|
|
103
109
|
}
|
|
104
110
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
105
111
|
super(EntityTagAssignment.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entityTagAssignment.js","sourceRoot":"","sources":["../entityTagAssignment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;
|
|
1
|
+
{"version":3,"file":"entityTagAssignment.js","sourceRoot":"","sources":["../entityTagAssignment.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
6
|
+
*/
|
|
7
|
+
export declare function getAppsSpace(args: GetAppsSpaceArgs, opts?: pulumi.InvokeOptions): Promise<GetAppsSpaceResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getAppsSpace.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetAppsSpaceArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
14
|
+
* It must be unique within the workspace
|
|
15
|
+
*/
|
|
16
|
+
name: string;
|
|
17
|
+
/**
|
|
18
|
+
* Configure the provider for management through account provider.
|
|
19
|
+
*/
|
|
20
|
+
providerConfig?: inputs.GetAppsSpaceProviderConfig;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A collection of values returned by getAppsSpace.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetAppsSpaceResult {
|
|
26
|
+
/**
|
|
27
|
+
* (string) - The creation time of the app space. Formatted timestamp in ISO 6801
|
|
28
|
+
*/
|
|
29
|
+
readonly createTime: string;
|
|
30
|
+
/**
|
|
31
|
+
* (string) - The email of the user that created the app space
|
|
32
|
+
*/
|
|
33
|
+
readonly creator: string;
|
|
34
|
+
/**
|
|
35
|
+
* (string) - Description of the App Resource
|
|
36
|
+
*/
|
|
37
|
+
readonly description: string;
|
|
38
|
+
/**
|
|
39
|
+
* (string) - The effective usage policy ID used by apps in the space
|
|
40
|
+
*/
|
|
41
|
+
readonly effectiveUsagePolicyId: string;
|
|
42
|
+
/**
|
|
43
|
+
* (list of string) - The effective api scopes granted to the user access token
|
|
44
|
+
*/
|
|
45
|
+
readonly effectiveUserApiScopes: string[];
|
|
46
|
+
/**
|
|
47
|
+
* (string) - Id of the SQL warehouse to grant permission on
|
|
48
|
+
*/
|
|
49
|
+
readonly id: string;
|
|
50
|
+
/**
|
|
51
|
+
* (string) - Name of the serving endpoint to grant permission on
|
|
52
|
+
*/
|
|
53
|
+
readonly name: string;
|
|
54
|
+
/**
|
|
55
|
+
* (string) - The OAuth2 app client ID for the app space
|
|
56
|
+
*/
|
|
57
|
+
readonly oauth2AppClientId: string;
|
|
58
|
+
/**
|
|
59
|
+
* (string) - The OAuth2 app integration ID for the app space
|
|
60
|
+
*/
|
|
61
|
+
readonly oauth2AppIntegrationId: string;
|
|
62
|
+
readonly providerConfig?: outputs.GetAppsSpaceProviderConfig;
|
|
63
|
+
/**
|
|
64
|
+
* (list of AppResource) - Resources for the app space. Resources configured at the space level are available to all apps in the space
|
|
65
|
+
*/
|
|
66
|
+
readonly resources: outputs.GetAppsSpaceResource[];
|
|
67
|
+
/**
|
|
68
|
+
* (string) - The service principal client ID for the app space
|
|
69
|
+
*/
|
|
70
|
+
readonly servicePrincipalClientId: string;
|
|
71
|
+
/**
|
|
72
|
+
* (integer) - The service principal ID for the app space
|
|
73
|
+
*/
|
|
74
|
+
readonly servicePrincipalId: number;
|
|
75
|
+
/**
|
|
76
|
+
* (string) - The service principal name for the app space
|
|
77
|
+
*/
|
|
78
|
+
readonly servicePrincipalName: string;
|
|
79
|
+
/**
|
|
80
|
+
* (SpaceStatus) - The status of the app space
|
|
81
|
+
*/
|
|
82
|
+
readonly status: outputs.GetAppsSpaceStatus;
|
|
83
|
+
/**
|
|
84
|
+
* (string) - The update time of the app space. Formatted timestamp in ISO 6801
|
|
85
|
+
*/
|
|
86
|
+
readonly updateTime: string;
|
|
87
|
+
/**
|
|
88
|
+
* (string) - The email of the user that last updated the app space
|
|
89
|
+
*/
|
|
90
|
+
readonly updater: string;
|
|
91
|
+
/**
|
|
92
|
+
* (string) - The usage policy ID for managing cost at the space level
|
|
93
|
+
*/
|
|
94
|
+
readonly usagePolicyId: string;
|
|
95
|
+
/**
|
|
96
|
+
* (list of string) - OAuth scopes for apps in the space
|
|
97
|
+
*/
|
|
98
|
+
readonly userApiScopes: string[];
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
102
|
+
*/
|
|
103
|
+
export declare function getAppsSpaceOutput(args: GetAppsSpaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppsSpaceResult>;
|
|
104
|
+
/**
|
|
105
|
+
* A collection of arguments for invoking getAppsSpace.
|
|
106
|
+
*/
|
|
107
|
+
export interface GetAppsSpaceOutputArgs {
|
|
108
|
+
/**
|
|
109
|
+
* The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
110
|
+
* It must be unique within the workspace
|
|
111
|
+
*/
|
|
112
|
+
name: pulumi.Input<string>;
|
|
113
|
+
/**
|
|
114
|
+
* Configure the provider for management through account provider.
|
|
115
|
+
*/
|
|
116
|
+
providerConfig?: pulumi.Input<inputs.GetAppsSpaceProviderConfigArgs>;
|
|
117
|
+
}
|
package/getAppsSpace.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getAppsSpaceOutput = exports.getAppsSpace = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
10
|
+
*/
|
|
11
|
+
function getAppsSpace(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("databricks:index/getAppsSpace:getAppsSpace", {
|
|
14
|
+
"name": args.name,
|
|
15
|
+
"providerConfig": args.providerConfig,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getAppsSpace = getAppsSpace;
|
|
19
|
+
/**
|
|
20
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
21
|
+
*/
|
|
22
|
+
function getAppsSpaceOutput(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invokeOutput("databricks:index/getAppsSpace:getAppsSpace", {
|
|
25
|
+
"name": args.name,
|
|
26
|
+
"providerConfig": args.providerConfig,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getAppsSpaceOutput = getAppsSpaceOutput;
|
|
30
|
+
//# sourceMappingURL=getAppsSpace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAppsSpace.js","sourceRoot":"","sources":["../getAppsSpace.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AA+FD;;GAEG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
6
|
+
*/
|
|
7
|
+
export declare function getAppsSpaces(args?: GetAppsSpacesArgs, opts?: pulumi.InvokeOptions): Promise<GetAppsSpacesResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getAppsSpaces.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetAppsSpacesArgs {
|
|
12
|
+
/**
|
|
13
|
+
* Upper bound for items returned
|
|
14
|
+
*/
|
|
15
|
+
pageSize?: number;
|
|
16
|
+
/**
|
|
17
|
+
* Configure the provider for management through account provider.
|
|
18
|
+
*/
|
|
19
|
+
providerConfig?: inputs.GetAppsSpacesProviderConfig;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* A collection of values returned by getAppsSpaces.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetAppsSpacesResult {
|
|
25
|
+
/**
|
|
26
|
+
* The provider-assigned unique ID for this managed resource.
|
|
27
|
+
*/
|
|
28
|
+
readonly id: string;
|
|
29
|
+
readonly pageSize?: number;
|
|
30
|
+
readonly providerConfig?: outputs.GetAppsSpacesProviderConfig;
|
|
31
|
+
readonly spaces: outputs.GetAppsSpacesSpace[];
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
35
|
+
*/
|
|
36
|
+
export declare function getAppsSpacesOutput(args?: GetAppsSpacesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppsSpacesResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getAppsSpaces.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetAppsSpacesOutputArgs {
|
|
41
|
+
/**
|
|
42
|
+
* Upper bound for items returned
|
|
43
|
+
*/
|
|
44
|
+
pageSize?: pulumi.Input<number>;
|
|
45
|
+
/**
|
|
46
|
+
* Configure the provider for management through account provider.
|
|
47
|
+
*/
|
|
48
|
+
providerConfig?: pulumi.Input<inputs.GetAppsSpacesProviderConfigArgs>;
|
|
49
|
+
}
|
package/getAppsSpaces.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getAppsSpacesOutput = exports.getAppsSpaces = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
10
|
+
*/
|
|
11
|
+
function getAppsSpaces(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("databricks:index/getAppsSpaces:getAppsSpaces", {
|
|
15
|
+
"pageSize": args.pageSize,
|
|
16
|
+
"providerConfig": args.providerConfig,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getAppsSpaces = getAppsSpaces;
|
|
20
|
+
/**
|
|
21
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
22
|
+
*/
|
|
23
|
+
function getAppsSpacesOutput(args, opts) {
|
|
24
|
+
args = args || {};
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invokeOutput("databricks:index/getAppsSpaces:getAppsSpaces", {
|
|
27
|
+
"pageSize": args.pageSize,
|
|
28
|
+
"providerConfig": args.providerConfig,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getAppsSpacesOutput = getAppsSpacesOutput;
|
|
32
|
+
//# sourceMappingURL=getAppsSpaces.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAppsSpaces.js","sourceRoot":"","sources":["../getAppsSpaces.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AA4BD;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAAiC;IACjG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC"}
|
|
@@ -25,7 +25,7 @@ export declare function getDatabaseInstances(args?: GetDatabaseInstancesArgs, op
|
|
|
25
25
|
*/
|
|
26
26
|
export interface GetDatabaseInstancesArgs {
|
|
27
27
|
/**
|
|
28
|
-
* Upper bound for items returned
|
|
28
|
+
* Upper bound for items returned. The maximum value is 100
|
|
29
29
|
*/
|
|
30
30
|
pageSize?: number;
|
|
31
31
|
/**
|
|
@@ -69,7 +69,7 @@ export declare function getDatabaseInstancesOutput(args?: GetDatabaseInstancesOu
|
|
|
69
69
|
*/
|
|
70
70
|
export interface GetDatabaseInstancesOutputArgs {
|
|
71
71
|
/**
|
|
72
|
-
* Upper bound for items returned
|
|
72
|
+
* Upper bound for items returned. The maximum value is 100
|
|
73
73
|
*/
|
|
74
74
|
pageSize?: pulumi.Input<number>;
|
|
75
75
|
/**
|
package/getEndpoint.d.ts
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
5
|
+
*
|
|
6
|
+
* Endpoint datasource retrieves information about a single network connectivity endpoint for private access to Databricks workspaces.
|
|
7
|
+
*
|
|
8
|
+
* > **Note** This resource can only be used with an account-level provider!
|
|
9
|
+
*
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ### Example for Azure cloud
|
|
13
|
+
* This is an example for getting an endpoint in Azure cloud:
|
|
14
|
+
*/
|
|
15
|
+
export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointResult>;
|
|
16
|
+
/**
|
|
17
|
+
* A collection of arguments for invoking getEndpoint.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetEndpointArgs {
|
|
20
|
+
/**
|
|
21
|
+
* The resource name of the endpoint, which uniquely identifies the endpoint
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* A collection of values returned by getEndpoint.
|
|
27
|
+
*/
|
|
28
|
+
export interface GetEndpointResult {
|
|
29
|
+
/**
|
|
30
|
+
* (string) - The Databricks Account in which the endpoint object exists
|
|
31
|
+
*/
|
|
32
|
+
readonly accountId: string;
|
|
33
|
+
/**
|
|
34
|
+
* (AzurePrivateEndpointInfo) - Info for an Azure private endpoint
|
|
35
|
+
*/
|
|
36
|
+
readonly azurePrivateEndpointInfo: outputs.GetEndpointAzurePrivateEndpointInfo;
|
|
37
|
+
/**
|
|
38
|
+
* (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
|
|
39
|
+
*/
|
|
40
|
+
readonly createTime: string;
|
|
41
|
+
/**
|
|
42
|
+
* (string) - The human-readable display name of this endpoint.
|
|
43
|
+
* The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens,
|
|
44
|
+
* with the first character a letter, the last a letter or a number, and a 63 character maximum
|
|
45
|
+
*/
|
|
46
|
+
readonly displayName: string;
|
|
47
|
+
/**
|
|
48
|
+
* (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
|
|
49
|
+
*/
|
|
50
|
+
readonly endpointId: string;
|
|
51
|
+
/**
|
|
52
|
+
* The provider-assigned unique ID for this managed resource.
|
|
53
|
+
*/
|
|
54
|
+
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* (string) - The resource name of the endpoint, which uniquely identifies the endpoint
|
|
57
|
+
*/
|
|
58
|
+
readonly name: string;
|
|
59
|
+
/**
|
|
60
|
+
* (string) - The cloud provider region where this endpoint is located
|
|
61
|
+
*/
|
|
62
|
+
readonly region: string;
|
|
63
|
+
/**
|
|
64
|
+
* (string) - The state of the endpoint. The endpoint can only be used if the state is `APPROVED`. Possible values are: `APPROVED`, `DISCONNECTED`, `FAILED`, `PENDING`
|
|
65
|
+
*/
|
|
66
|
+
readonly state: string;
|
|
67
|
+
/**
|
|
68
|
+
* (string) - The use case that determines the type of network connectivity this endpoint provides.
|
|
69
|
+
* This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: `SERVICE_DIRECT`
|
|
70
|
+
*/
|
|
71
|
+
readonly useCase: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
75
|
+
*
|
|
76
|
+
* Endpoint datasource retrieves information about a single network connectivity endpoint for private access to Databricks workspaces.
|
|
77
|
+
*
|
|
78
|
+
* > **Note** This resource can only be used with an account-level provider!
|
|
79
|
+
*
|
|
80
|
+
* ## Example Usage
|
|
81
|
+
*
|
|
82
|
+
* ### Example for Azure cloud
|
|
83
|
+
* This is an example for getting an endpoint in Azure cloud:
|
|
84
|
+
*/
|
|
85
|
+
export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEndpointResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getEndpoint.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetEndpointOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* The resource name of the endpoint, which uniquely identifies the endpoint
|
|
92
|
+
*/
|
|
93
|
+
name: pulumi.Input<string>;
|
|
94
|
+
}
|