@pulumi/databricks 1.89.0-alpha.1772689956 → 1.89.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/app.d.ts +3 -0
- package/app.js +2 -0
- package/app.js.map +1 -1
- package/{appsSpace.d.ts → appSpace.d.ts} +26 -37
- package/{appsSpace.js → appSpace.js} +11 -15
- package/appSpace.js.map +1 -0
- package/config/vars.d.ts +2 -0
- package/config/vars.js +12 -0
- package/config/vars.js.map +1 -1
- package/dataClassificationCatalogConfig.d.ts +144 -0
- package/dataClassificationCatalogConfig.js +104 -0
- package/dataClassificationCatalogConfig.js.map +1 -0
- package/endpoint.d.ts +14 -2
- package/endpoint.js +2 -2
- package/endpoint.js.map +1 -1
- package/featureEngineeringFeature.d.ts +12 -0
- package/featureEngineeringFeature.js.map +1 -1
- package/featureEngineeringMaterializedFeature.d.ts +7 -3
- package/featureEngineeringMaterializedFeature.js +1 -1
- package/featureEngineeringMaterializedFeature.js.map +1 -1
- package/{getAppsSpace.d.ts → getAppSpace.d.ts} +13 -21
- package/{getAppsSpace.js → getAppSpace.js} +8 -8
- package/getAppSpace.js.map +1 -0
- package/{getAppsSpaces.d.ts → getAppSpaces.d.ts} +12 -12
- package/{getAppsSpaces.js → getAppSpaces.js} +8 -8
- package/getAppSpaces.js.map +1 -0
- package/getDataClassificationCatalogConfig.d.ts +107 -0
- package/getDataClassificationCatalogConfig.js +76 -0
- package/getDataClassificationCatalogConfig.js.map +1 -0
- package/getEndpoints.d.ts +24 -0
- package/getEndpoints.js +16 -0
- package/getEndpoints.js.map +1 -1
- package/getFeatureEngineeringFeature.d.ts +7 -4
- package/getFeatureEngineeringFeature.js.map +1 -1
- package/getKnowledgeAssistant.d.ts +99 -0
- package/getKnowledgeAssistant.js +30 -0
- package/getKnowledgeAssistant.js.map +1 -0
- package/getKnowledgeAssistantKnowledgeSource.d.ts +96 -0
- package/getKnowledgeAssistantKnowledgeSource.js +30 -0
- package/getKnowledgeAssistantKnowledgeSource.js.map +1 -0
- package/getKnowledgeAssistantKnowledgeSources.d.ts +54 -0
- package/getKnowledgeAssistantKnowledgeSources.js +32 -0
- package/getKnowledgeAssistantKnowledgeSources.js.map +1 -0
- package/getKnowledgeAssistants.d.ts +53 -0
- package/getKnowledgeAssistants.js +32 -0
- package/getKnowledgeAssistants.js.map +1 -0
- package/getPostgresDatabase.d.ts +75 -0
- package/getPostgresDatabase.js +30 -0
- package/getPostgresDatabase.js.map +1 -0
- package/getPostgresDatabases.d.ts +64 -0
- package/getPostgresDatabases.js +32 -0
- package/getPostgresDatabases.js.map +1 -0
- package/getWorkspaceEntityTagAssignment.d.ts +13 -3
- package/getWorkspaceEntityTagAssignment.js +10 -0
- package/getWorkspaceEntityTagAssignment.js.map +1 -1
- package/getWorkspaceEntityTagAssignments.d.ts +11 -3
- package/getWorkspaceEntityTagAssignments.js +8 -0
- package/getWorkspaceEntityTagAssignments.js.map +1 -1
- package/index.d.ts +42 -9
- package/index.js +61 -19
- package/index.js.map +1 -1
- package/knowledgeAssistant.d.ts +174 -0
- package/knowledgeAssistant.js +78 -0
- package/knowledgeAssistant.js.map +1 -0
- package/knowledgeAssistantKnowledgeSource.d.ts +165 -0
- package/knowledgeAssistantKnowledgeSource.js +86 -0
- package/knowledgeAssistantKnowledgeSource.js.map +1 -0
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/postgresDatabase.d.ts +147 -0
- package/postgresDatabase.js +69 -0
- package/postgresDatabase.js.map +1 -0
- package/provider.d.ts +4 -0
- package/provider.js +2 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +337 -103
- package/types/output.d.ts +1304 -656
- package/workspaceEntityTagAssignment.d.ts +9 -3
- package/workspaceEntityTagAssignment.js +6 -0
- package/workspaceEntityTagAssignment.js.map +1 -1
- package/appsSpace.js.map +0 -1
- package/getAppsSpace.js.map +0 -1
- package/getAppsSpaces.js.map +0 -1
package/app.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export declare class App extends pulumi.CustomResource {
|
|
|
135
135
|
*/
|
|
136
136
|
readonly servicePrincipalName: pulumi.Output<string>;
|
|
137
137
|
readonly space: pulumi.Output<string | undefined>;
|
|
138
|
+
readonly telemetryExportDestinations: pulumi.Output<outputs.AppTelemetryExportDestination[] | undefined>;
|
|
138
139
|
/**
|
|
139
140
|
* The update time of the app.
|
|
140
141
|
*/
|
|
@@ -234,6 +235,7 @@ export interface AppState {
|
|
|
234
235
|
*/
|
|
235
236
|
servicePrincipalName?: pulumi.Input<string>;
|
|
236
237
|
space?: pulumi.Input<string>;
|
|
238
|
+
telemetryExportDestinations?: pulumi.Input<pulumi.Input<inputs.AppTelemetryExportDestination>[]>;
|
|
237
239
|
/**
|
|
238
240
|
* The update time of the app.
|
|
239
241
|
*/
|
|
@@ -280,6 +282,7 @@ export interface AppArgs {
|
|
|
280
282
|
*/
|
|
281
283
|
resources?: pulumi.Input<pulumi.Input<inputs.AppResource>[]>;
|
|
282
284
|
space?: pulumi.Input<string>;
|
|
285
|
+
telemetryExportDestinations?: pulumi.Input<pulumi.Input<inputs.AppTelemetryExportDestination>[]>;
|
|
283
286
|
usagePolicyId?: pulumi.Input<string>;
|
|
284
287
|
/**
|
|
285
288
|
* A list of api scopes granted to the user access token.
|
package/app.js
CHANGED
|
@@ -106,6 +106,7 @@ class App extends pulumi.CustomResource {
|
|
|
106
106
|
resourceInputs["servicePrincipalId"] = state?.servicePrincipalId;
|
|
107
107
|
resourceInputs["servicePrincipalName"] = state?.servicePrincipalName;
|
|
108
108
|
resourceInputs["space"] = state?.space;
|
|
109
|
+
resourceInputs["telemetryExportDestinations"] = state?.telemetryExportDestinations;
|
|
109
110
|
resourceInputs["updateTime"] = state?.updateTime;
|
|
110
111
|
resourceInputs["updater"] = state?.updater;
|
|
111
112
|
resourceInputs["url"] = state?.url;
|
|
@@ -123,6 +124,7 @@ class App extends pulumi.CustomResource {
|
|
|
123
124
|
resourceInputs["providerConfig"] = args?.providerConfig;
|
|
124
125
|
resourceInputs["resources"] = args?.resources;
|
|
125
126
|
resourceInputs["space"] = args?.space;
|
|
127
|
+
resourceInputs["telemetryExportDestinations"] = args?.telemetryExportDestinations;
|
|
126
128
|
resourceInputs["usagePolicyId"] = args?.usagePolicyId;
|
|
127
129
|
resourceInputs["userApiScopes"] = args?.userApiScopes;
|
|
128
130
|
resourceInputs["activeDeployment"] = undefined /*out*/;
|
package/app.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.js","sourceRoot":"","sources":["../app.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAa,GAAI,SAAQ,MAAM,CAAC,cAAc;IAC1C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgB,EAAE,IAAmC;QAC9G,OAAO,IAAI,GAAG,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1D,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,GAAG,CAAC,YAAY,CAAC;IACpD,CAAC;
|
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../app.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,9 +4,9 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
6
6
|
*/
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class AppSpace extends pulumi.CustomResource {
|
|
8
8
|
/**
|
|
9
|
-
* Get an existing
|
|
9
|
+
* Get an existing AppSpace resource's state with the given name, ID, and optional extra
|
|
10
10
|
* properties used to qualify the lookup.
|
|
11
11
|
*
|
|
12
12
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -14,12 +14,12 @@ export declare class AppsSpace extends pulumi.CustomResource {
|
|
|
14
14
|
* @param state Any extra arguments used during the lookup.
|
|
15
15
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
16
|
*/
|
|
17
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?:
|
|
17
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppSpaceState, opts?: pulumi.CustomResourceOptions): AppSpace;
|
|
18
18
|
/**
|
|
19
|
-
* Returns true if the given object is an instance of
|
|
19
|
+
* Returns true if the given object is an instance of AppSpace. This is designed to work even
|
|
20
20
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
21
21
|
*/
|
|
22
|
-
static isInstance(obj: any): obj is
|
|
22
|
+
static isInstance(obj: any): obj is AppSpace;
|
|
23
23
|
/**
|
|
24
24
|
* (string) - The creation time of the app space. Formatted timestamp in ISO 6801
|
|
25
25
|
*/
|
|
@@ -41,26 +41,18 @@ export declare class AppsSpace extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly effectiveUserApiScopes: pulumi.Output<string[]>;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
45
45
|
* It must be unique within the workspace
|
|
46
46
|
*/
|
|
47
47
|
readonly name: pulumi.Output<string>;
|
|
48
|
-
/**
|
|
49
|
-
* (string) - The OAuth2 app client ID for the app space
|
|
50
|
-
*/
|
|
51
|
-
readonly oauth2AppClientId: pulumi.Output<string>;
|
|
52
|
-
/**
|
|
53
|
-
* (string) - The OAuth2 app integration ID for the app space
|
|
54
|
-
*/
|
|
55
|
-
readonly oauth2AppIntegrationId: pulumi.Output<string>;
|
|
56
48
|
/**
|
|
57
49
|
* Configure the provider for management through account provider.
|
|
58
50
|
*/
|
|
59
|
-
readonly providerConfig: pulumi.Output<outputs.
|
|
51
|
+
readonly providerConfig: pulumi.Output<outputs.AppSpaceProviderConfig | undefined>;
|
|
60
52
|
/**
|
|
61
53
|
* Resources for the app space. Resources configured at the space level are available to all apps in the space
|
|
62
54
|
*/
|
|
63
|
-
readonly resources: pulumi.Output<outputs.
|
|
55
|
+
readonly resources: pulumi.Output<outputs.AppSpaceResource[] | undefined>;
|
|
64
56
|
/**
|
|
65
57
|
* (string) - The service principal client ID for the app space
|
|
66
58
|
*/
|
|
@@ -76,7 +68,7 @@ export declare class AppsSpace extends pulumi.CustomResource {
|
|
|
76
68
|
/**
|
|
77
69
|
* (SpaceStatus) - The status of the app space
|
|
78
70
|
*/
|
|
79
|
-
readonly status: pulumi.Output<outputs.
|
|
71
|
+
readonly status: pulumi.Output<outputs.AppSpaceStatus>;
|
|
80
72
|
/**
|
|
81
73
|
* (string) - The update time of the app space. Formatted timestamp in ISO 6801
|
|
82
74
|
*/
|
|
@@ -94,18 +86,18 @@ export declare class AppsSpace extends pulumi.CustomResource {
|
|
|
94
86
|
*/
|
|
95
87
|
readonly userApiScopes: pulumi.Output<string[] | undefined>;
|
|
96
88
|
/**
|
|
97
|
-
* Create a
|
|
89
|
+
* Create a AppSpace resource with the given unique name, arguments, and options.
|
|
98
90
|
*
|
|
99
91
|
* @param name The _unique_ name of the resource.
|
|
100
92
|
* @param args The arguments to use to populate this resource's properties.
|
|
101
93
|
* @param opts A bag of options that control this resource's behavior.
|
|
102
94
|
*/
|
|
103
|
-
constructor(name: string, args?:
|
|
95
|
+
constructor(name: string, args?: AppSpaceArgs, opts?: pulumi.CustomResourceOptions);
|
|
104
96
|
}
|
|
105
97
|
/**
|
|
106
|
-
* Input properties used for looking up and filtering
|
|
98
|
+
* Input properties used for looking up and filtering AppSpace resources.
|
|
107
99
|
*/
|
|
108
|
-
export interface
|
|
100
|
+
export interface AppSpaceState {
|
|
109
101
|
/**
|
|
110
102
|
* (string) - The creation time of the app space. Formatted timestamp in ISO 6801
|
|
111
103
|
*/
|
|
@@ -127,26 +119,18 @@ export interface AppsSpaceState {
|
|
|
127
119
|
*/
|
|
128
120
|
effectiveUserApiScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
129
121
|
/**
|
|
130
|
-
*
|
|
122
|
+
* The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
131
123
|
* It must be unique within the workspace
|
|
132
124
|
*/
|
|
133
125
|
name?: pulumi.Input<string>;
|
|
134
|
-
/**
|
|
135
|
-
* (string) - The OAuth2 app client ID for the app space
|
|
136
|
-
*/
|
|
137
|
-
oauth2AppClientId?: pulumi.Input<string>;
|
|
138
|
-
/**
|
|
139
|
-
* (string) - The OAuth2 app integration ID for the app space
|
|
140
|
-
*/
|
|
141
|
-
oauth2AppIntegrationId?: pulumi.Input<string>;
|
|
142
126
|
/**
|
|
143
127
|
* Configure the provider for management through account provider.
|
|
144
128
|
*/
|
|
145
|
-
providerConfig?: pulumi.Input<inputs.
|
|
129
|
+
providerConfig?: pulumi.Input<inputs.AppSpaceProviderConfig>;
|
|
146
130
|
/**
|
|
147
131
|
* Resources for the app space. Resources configured at the space level are available to all apps in the space
|
|
148
132
|
*/
|
|
149
|
-
resources?: pulumi.Input<pulumi.Input<inputs.
|
|
133
|
+
resources?: pulumi.Input<pulumi.Input<inputs.AppSpaceResource>[]>;
|
|
150
134
|
/**
|
|
151
135
|
* (string) - The service principal client ID for the app space
|
|
152
136
|
*/
|
|
@@ -162,7 +146,7 @@ export interface AppsSpaceState {
|
|
|
162
146
|
/**
|
|
163
147
|
* (SpaceStatus) - The status of the app space
|
|
164
148
|
*/
|
|
165
|
-
status?: pulumi.Input<inputs.
|
|
149
|
+
status?: pulumi.Input<inputs.AppSpaceStatus>;
|
|
166
150
|
/**
|
|
167
151
|
* (string) - The update time of the app space. Formatted timestamp in ISO 6801
|
|
168
152
|
*/
|
|
@@ -181,21 +165,26 @@ export interface AppsSpaceState {
|
|
|
181
165
|
userApiScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
182
166
|
}
|
|
183
167
|
/**
|
|
184
|
-
* The set of arguments for constructing a
|
|
168
|
+
* The set of arguments for constructing a AppSpace resource.
|
|
185
169
|
*/
|
|
186
|
-
export interface
|
|
170
|
+
export interface AppSpaceArgs {
|
|
187
171
|
/**
|
|
188
172
|
* The description of the app space
|
|
189
173
|
*/
|
|
190
174
|
description?: pulumi.Input<string>;
|
|
175
|
+
/**
|
|
176
|
+
* The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
177
|
+
* It must be unique within the workspace
|
|
178
|
+
*/
|
|
179
|
+
name?: pulumi.Input<string>;
|
|
191
180
|
/**
|
|
192
181
|
* Configure the provider for management through account provider.
|
|
193
182
|
*/
|
|
194
|
-
providerConfig?: pulumi.Input<inputs.
|
|
183
|
+
providerConfig?: pulumi.Input<inputs.AppSpaceProviderConfig>;
|
|
195
184
|
/**
|
|
196
185
|
* Resources for the app space. Resources configured at the space level are available to all apps in the space
|
|
197
186
|
*/
|
|
198
|
-
resources?: pulumi.Input<pulumi.Input<inputs.
|
|
187
|
+
resources?: pulumi.Input<pulumi.Input<inputs.AppSpaceResource>[]>;
|
|
199
188
|
/**
|
|
200
189
|
* The usage policy ID for managing cost at the space level
|
|
201
190
|
*/
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.AppSpace = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* [](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
10
10
|
*/
|
|
11
|
-
class
|
|
11
|
+
class AppSpace extends pulumi.CustomResource {
|
|
12
12
|
/**
|
|
13
|
-
* Get an existing
|
|
13
|
+
* Get an existing AppSpace resource's state with the given name, ID, and optional extra
|
|
14
14
|
* properties used to qualify the lookup.
|
|
15
15
|
*
|
|
16
16
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -19,17 +19,17 @@ class AppsSpace extends pulumi.CustomResource {
|
|
|
19
19
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
20
|
*/
|
|
21
21
|
static get(name, id, state, opts) {
|
|
22
|
-
return new
|
|
22
|
+
return new AppSpace(name, state, { ...opts, id: id });
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* Returns true if the given object is an instance of
|
|
25
|
+
* Returns true if the given object is an instance of AppSpace. This is designed to work even
|
|
26
26
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
27
|
*/
|
|
28
28
|
static isInstance(obj) {
|
|
29
29
|
if (obj === undefined || obj === null) {
|
|
30
30
|
return false;
|
|
31
31
|
}
|
|
32
|
-
return obj['__pulumiType'] ===
|
|
32
|
+
return obj['__pulumiType'] === AppSpace.__pulumiType;
|
|
33
33
|
}
|
|
34
34
|
constructor(name, argsOrState, opts) {
|
|
35
35
|
let resourceInputs = {};
|
|
@@ -42,8 +42,6 @@ class AppsSpace extends pulumi.CustomResource {
|
|
|
42
42
|
resourceInputs["effectiveUsagePolicyId"] = state?.effectiveUsagePolicyId;
|
|
43
43
|
resourceInputs["effectiveUserApiScopes"] = state?.effectiveUserApiScopes;
|
|
44
44
|
resourceInputs["name"] = state?.name;
|
|
45
|
-
resourceInputs["oauth2AppClientId"] = state?.oauth2AppClientId;
|
|
46
|
-
resourceInputs["oauth2AppIntegrationId"] = state?.oauth2AppIntegrationId;
|
|
47
45
|
resourceInputs["providerConfig"] = state?.providerConfig;
|
|
48
46
|
resourceInputs["resources"] = state?.resources;
|
|
49
47
|
resourceInputs["servicePrincipalClientId"] = state?.servicePrincipalClientId;
|
|
@@ -58,6 +56,7 @@ class AppsSpace extends pulumi.CustomResource {
|
|
|
58
56
|
else {
|
|
59
57
|
const args = argsOrState;
|
|
60
58
|
resourceInputs["description"] = args?.description;
|
|
59
|
+
resourceInputs["name"] = args?.name;
|
|
61
60
|
resourceInputs["providerConfig"] = args?.providerConfig;
|
|
62
61
|
resourceInputs["resources"] = args?.resources;
|
|
63
62
|
resourceInputs["usagePolicyId"] = args?.usagePolicyId;
|
|
@@ -66,9 +65,6 @@ class AppsSpace extends pulumi.CustomResource {
|
|
|
66
65
|
resourceInputs["creator"] = undefined /*out*/;
|
|
67
66
|
resourceInputs["effectiveUsagePolicyId"] = undefined /*out*/;
|
|
68
67
|
resourceInputs["effectiveUserApiScopes"] = undefined /*out*/;
|
|
69
|
-
resourceInputs["name"] = undefined /*out*/;
|
|
70
|
-
resourceInputs["oauth2AppClientId"] = undefined /*out*/;
|
|
71
|
-
resourceInputs["oauth2AppIntegrationId"] = undefined /*out*/;
|
|
72
68
|
resourceInputs["servicePrincipalClientId"] = undefined /*out*/;
|
|
73
69
|
resourceInputs["servicePrincipalId"] = undefined /*out*/;
|
|
74
70
|
resourceInputs["servicePrincipalName"] = undefined /*out*/;
|
|
@@ -77,10 +73,10 @@ class AppsSpace extends pulumi.CustomResource {
|
|
|
77
73
|
resourceInputs["updater"] = undefined /*out*/;
|
|
78
74
|
}
|
|
79
75
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
80
|
-
super(
|
|
76
|
+
super(AppSpace.__pulumiType, name, resourceInputs, opts);
|
|
81
77
|
}
|
|
82
78
|
}
|
|
83
|
-
exports.
|
|
79
|
+
exports.AppSpace = AppSpace;
|
|
84
80
|
/** @internal */
|
|
85
|
-
|
|
86
|
-
//# sourceMappingURL=
|
|
81
|
+
AppSpace.__pulumiType = 'databricks:index/appSpace:AppSpace';
|
|
82
|
+
//# sourceMappingURL=appSpace.js.map
|
package/appSpace.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"appSpace.js","sourceRoot":"","sources":["../appSpace.ts"],"names":[],"mappings":"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"}
|
package/config/vars.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare const azureUseMsi: boolean | undefined;
|
|
|
12
12
|
export declare const azureWorkspaceResourceId: string | undefined;
|
|
13
13
|
export declare const clientId: string | undefined;
|
|
14
14
|
export declare const clientSecret: string | undefined;
|
|
15
|
+
export declare const cloud: string | undefined;
|
|
15
16
|
export declare const clusterId: string | undefined;
|
|
16
17
|
export declare const configFile: string | undefined;
|
|
17
18
|
export declare const databricksCliPath: string | undefined;
|
|
@@ -19,6 +20,7 @@ export declare const databricksIdTokenFilepath: string | undefined;
|
|
|
19
20
|
export declare const debugHeaders: boolean | undefined;
|
|
20
21
|
export declare const debugTruncateBytes: number | undefined;
|
|
21
22
|
export declare const disableOauthRefreshToken: boolean | undefined;
|
|
23
|
+
export declare const discoveryUrl: string | undefined;
|
|
22
24
|
export declare const experimentalIsUnifiedHost: boolean | undefined;
|
|
23
25
|
export declare const googleCredentials: string | undefined;
|
|
24
26
|
export declare const googleServiceAccount: string | undefined;
|
package/config/vars.js
CHANGED
|
@@ -88,6 +88,12 @@ Object.defineProperty(exports, "clientSecret", {
|
|
|
88
88
|
},
|
|
89
89
|
enumerable: true,
|
|
90
90
|
});
|
|
91
|
+
Object.defineProperty(exports, "cloud", {
|
|
92
|
+
get() {
|
|
93
|
+
return __config.get("cloud");
|
|
94
|
+
},
|
|
95
|
+
enumerable: true,
|
|
96
|
+
});
|
|
91
97
|
Object.defineProperty(exports, "clusterId", {
|
|
92
98
|
get() {
|
|
93
99
|
return __config.get("clusterId");
|
|
@@ -130,6 +136,12 @@ Object.defineProperty(exports, "disableOauthRefreshToken", {
|
|
|
130
136
|
},
|
|
131
137
|
enumerable: true,
|
|
132
138
|
});
|
|
139
|
+
Object.defineProperty(exports, "discoveryUrl", {
|
|
140
|
+
get() {
|
|
141
|
+
return __config.get("discoveryUrl");
|
|
142
|
+
},
|
|
143
|
+
enumerable: true,
|
|
144
|
+
});
|
|
133
145
|
Object.defineProperty(exports, "experimentalIsUnifiedHost", {
|
|
134
146
|
get() {
|
|
135
147
|
return __config.getObject("experimentalIsUnifiedHost");
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;AAEjF,yCAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;AAGjD,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,4BAA4B,EAAE;IACzD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;IACtD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,0BAA0B,EAAE;IACvD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;IACpD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,eAAe,EAAE;IAC5C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;IACzC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;IAC7C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,kBAAkB,EAAE;IAC/C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAC;IAC5C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,iBAAiB,EAAE;IAC9C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;IAC3C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,eAAe,EAAE;IAC5C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;IACzC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,aAAa,EAAE;IAC1C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,aAAa,CAAC,CAAC;IACtD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,0BAA0B,EAAE;IACvD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;IACpD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACjC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;IAC7C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,2BAA2B,EAAE;IACxD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;IACrD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,cAAc,CAAC,CAAC;IACvD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,oBAAoB,EAAE;IACjD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,oBAAoB,CAAC,CAAC;IAC5D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,0BAA0B,EAAE;IACvD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,0BAA0B,CAAC,CAAC;IACnE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,2BAA2B,EAAE;IACxD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,2BAA2B,CAAC,CAAC;IACpE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;IAC7C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,sBAAsB,EAAE;IACnD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC;IAChD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE;IACnC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IAChC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,oBAAoB,EAAE;IACjD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,oBAAoB,CAAC,CAAC;IAC5D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,oBAAoB,EAAE;IACjD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IAC9C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,mBAAmB,CAAC,CAAC;IAC3D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,WAAW,CAAC,CAAC;IACnD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,qBAAqB,EAAE;IAClD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,qBAAqB,CAAC,CAAC;IAC7D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,QAAQ,CAAC,CAAC;IAClD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,qBAAqB,EAAE;IAClD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;IAC/C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,YAAY,CAAC,CAAC;IACrD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACjC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,aAAa,EAAE;IAC1C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IACvC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,aAAa,EAAE;IAC1C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IACvC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
|
@@ -0,0 +1,144 @@
|
|
|
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
|
+
* This resource allows you to manage the Data Classification configuration for Unity Catalog catalogs.
|
|
8
|
+
*
|
|
9
|
+
* Data Classification automatically identifies and tags sensitive data (personally identifiable information, or PII) in Unity Catalog tables. Creating this resource enables Data Classification for the specified catalog, while deleting it disables Data Classification.
|
|
10
|
+
*
|
|
11
|
+
* To manage Data Classification configuration, you must either:
|
|
12
|
+
* 1. be an owner of the catalog, OR
|
|
13
|
+
* 2. have **USE_CATALOG** and **MANAGE** permissions on the catalog
|
|
14
|
+
*
|
|
15
|
+
* > **Note** This resource can only be used with a workspace-level provider.
|
|
16
|
+
*
|
|
17
|
+
* ## Example Usage
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as databricks from "@pulumi/databricks";
|
|
22
|
+
*
|
|
23
|
+
* // Enable Data Classification for a set of schemas in a catalog
|
|
24
|
+
* const example = new databricks.DataClassificationCatalogConfig("example", {
|
|
25
|
+
* name: "catalogs/prod_catalog/config",
|
|
26
|
+
* includedSchemas: {
|
|
27
|
+
* names: [
|
|
28
|
+
* "sales",
|
|
29
|
+
* "marketing",
|
|
30
|
+
* "customer_data",
|
|
31
|
+
* ],
|
|
32
|
+
* },
|
|
33
|
+
* autoTagConfigs: [
|
|
34
|
+
* {
|
|
35
|
+
* classificationTag: "class.credit_card",
|
|
36
|
+
* autoTaggingMode: "AUTO_TAGGING_ENABLED",
|
|
37
|
+
* },
|
|
38
|
+
* {
|
|
39
|
+
* classificationTag: "class.email",
|
|
40
|
+
* autoTaggingMode: "AUTO_TAGGING_ENABLED",
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* });
|
|
44
|
+
* // Enable Data Classification for the entire catalog (all current and future schemas)
|
|
45
|
+
* const allSchemas = new databricks.DataClassificationCatalogConfig("all_schemas", {name: "catalogs/staging_catalog/config"});
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
export declare class DataClassificationCatalogConfig extends pulumi.CustomResource {
|
|
49
|
+
/**
|
|
50
|
+
* Get an existing DataClassificationCatalogConfig resource's state with the given name, ID, and optional extra
|
|
51
|
+
* properties used to qualify the lookup.
|
|
52
|
+
*
|
|
53
|
+
* @param name The _unique_ name of the resulting resource.
|
|
54
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
55
|
+
* @param state Any extra arguments used during the lookup.
|
|
56
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
57
|
+
*/
|
|
58
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DataClassificationCatalogConfigState, opts?: pulumi.CustomResourceOptions): DataClassificationCatalogConfig;
|
|
59
|
+
/**
|
|
60
|
+
* Returns true if the given object is an instance of DataClassificationCatalogConfig. This is designed to work even
|
|
61
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
62
|
+
*/
|
|
63
|
+
static isInstance(obj: any): obj is DataClassificationCatalogConfig;
|
|
64
|
+
/**
|
|
65
|
+
* List of auto-tagging configurations for this catalog.
|
|
66
|
+
* Empty list means no auto-tagging is enabled
|
|
67
|
+
*/
|
|
68
|
+
readonly autoTagConfigs: pulumi.Output<outputs.DataClassificationCatalogConfigAutoTagConfig[] | undefined>;
|
|
69
|
+
/**
|
|
70
|
+
* Schemas to include in the scan. Empty list is not supported as it results in a no-op
|
|
71
|
+
* scan. If `includedSchemas` is not set, all schemas are scanned
|
|
72
|
+
*/
|
|
73
|
+
readonly includedSchemas: pulumi.Output<outputs.DataClassificationCatalogConfigIncludedSchemas | undefined>;
|
|
74
|
+
/**
|
|
75
|
+
* (string) - Resource name in the format: catalogs/{catalog_name}/config
|
|
76
|
+
*/
|
|
77
|
+
readonly name: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* Parent resource in the format: catalogs/{catalog_name}
|
|
80
|
+
*/
|
|
81
|
+
readonly parent: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Configure the provider for management through account provider.
|
|
84
|
+
*/
|
|
85
|
+
readonly providerConfig: pulumi.Output<outputs.DataClassificationCatalogConfigProviderConfig | undefined>;
|
|
86
|
+
/**
|
|
87
|
+
* Create a DataClassificationCatalogConfig resource with the given unique name, arguments, and options.
|
|
88
|
+
*
|
|
89
|
+
* @param name The _unique_ name of the resource.
|
|
90
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
91
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
92
|
+
*/
|
|
93
|
+
constructor(name: string, args: DataClassificationCatalogConfigArgs, opts?: pulumi.CustomResourceOptions);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Input properties used for looking up and filtering DataClassificationCatalogConfig resources.
|
|
97
|
+
*/
|
|
98
|
+
export interface DataClassificationCatalogConfigState {
|
|
99
|
+
/**
|
|
100
|
+
* List of auto-tagging configurations for this catalog.
|
|
101
|
+
* Empty list means no auto-tagging is enabled
|
|
102
|
+
*/
|
|
103
|
+
autoTagConfigs?: pulumi.Input<pulumi.Input<inputs.DataClassificationCatalogConfigAutoTagConfig>[]>;
|
|
104
|
+
/**
|
|
105
|
+
* Schemas to include in the scan. Empty list is not supported as it results in a no-op
|
|
106
|
+
* scan. If `includedSchemas` is not set, all schemas are scanned
|
|
107
|
+
*/
|
|
108
|
+
includedSchemas?: pulumi.Input<inputs.DataClassificationCatalogConfigIncludedSchemas>;
|
|
109
|
+
/**
|
|
110
|
+
* (string) - Resource name in the format: catalogs/{catalog_name}/config
|
|
111
|
+
*/
|
|
112
|
+
name?: pulumi.Input<string>;
|
|
113
|
+
/**
|
|
114
|
+
* Parent resource in the format: catalogs/{catalog_name}
|
|
115
|
+
*/
|
|
116
|
+
parent?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* Configure the provider for management through account provider.
|
|
119
|
+
*/
|
|
120
|
+
providerConfig?: pulumi.Input<inputs.DataClassificationCatalogConfigProviderConfig>;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* The set of arguments for constructing a DataClassificationCatalogConfig resource.
|
|
124
|
+
*/
|
|
125
|
+
export interface DataClassificationCatalogConfigArgs {
|
|
126
|
+
/**
|
|
127
|
+
* List of auto-tagging configurations for this catalog.
|
|
128
|
+
* Empty list means no auto-tagging is enabled
|
|
129
|
+
*/
|
|
130
|
+
autoTagConfigs?: pulumi.Input<pulumi.Input<inputs.DataClassificationCatalogConfigAutoTagConfig>[]>;
|
|
131
|
+
/**
|
|
132
|
+
* Schemas to include in the scan. Empty list is not supported as it results in a no-op
|
|
133
|
+
* scan. If `includedSchemas` is not set, all schemas are scanned
|
|
134
|
+
*/
|
|
135
|
+
includedSchemas?: pulumi.Input<inputs.DataClassificationCatalogConfigIncludedSchemas>;
|
|
136
|
+
/**
|
|
137
|
+
* Parent resource in the format: catalogs/{catalog_name}
|
|
138
|
+
*/
|
|
139
|
+
parent: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Configure the provider for management through account provider.
|
|
142
|
+
*/
|
|
143
|
+
providerConfig?: pulumi.Input<inputs.DataClassificationCatalogConfigProviderConfig>;
|
|
144
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
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.DataClassificationCatalogConfig = 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
|
+
* This resource allows you to manage the Data Classification configuration for Unity Catalog catalogs.
|
|
12
|
+
*
|
|
13
|
+
* Data Classification automatically identifies and tags sensitive data (personally identifiable information, or PII) in Unity Catalog tables. Creating this resource enables Data Classification for the specified catalog, while deleting it disables Data Classification.
|
|
14
|
+
*
|
|
15
|
+
* To manage Data Classification configuration, you must either:
|
|
16
|
+
* 1. be an owner of the catalog, OR
|
|
17
|
+
* 2. have **USE_CATALOG** and **MANAGE** permissions on the catalog
|
|
18
|
+
*
|
|
19
|
+
* > **Note** This resource can only be used with a workspace-level provider.
|
|
20
|
+
*
|
|
21
|
+
* ## Example Usage
|
|
22
|
+
*
|
|
23
|
+
* ```typescript
|
|
24
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
25
|
+
* import * as databricks from "@pulumi/databricks";
|
|
26
|
+
*
|
|
27
|
+
* // Enable Data Classification for a set of schemas in a catalog
|
|
28
|
+
* const example = new databricks.DataClassificationCatalogConfig("example", {
|
|
29
|
+
* name: "catalogs/prod_catalog/config",
|
|
30
|
+
* includedSchemas: {
|
|
31
|
+
* names: [
|
|
32
|
+
* "sales",
|
|
33
|
+
* "marketing",
|
|
34
|
+
* "customer_data",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* autoTagConfigs: [
|
|
38
|
+
* {
|
|
39
|
+
* classificationTag: "class.credit_card",
|
|
40
|
+
* autoTaggingMode: "AUTO_TAGGING_ENABLED",
|
|
41
|
+
* },
|
|
42
|
+
* {
|
|
43
|
+
* classificationTag: "class.email",
|
|
44
|
+
* autoTaggingMode: "AUTO_TAGGING_ENABLED",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* });
|
|
48
|
+
* // Enable Data Classification for the entire catalog (all current and future schemas)
|
|
49
|
+
* const allSchemas = new databricks.DataClassificationCatalogConfig("all_schemas", {name: "catalogs/staging_catalog/config"});
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
class DataClassificationCatalogConfig extends pulumi.CustomResource {
|
|
53
|
+
/**
|
|
54
|
+
* Get an existing DataClassificationCatalogConfig resource's state with the given name, ID, and optional extra
|
|
55
|
+
* properties used to qualify the lookup.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resulting resource.
|
|
58
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
59
|
+
* @param state Any extra arguments used during the lookup.
|
|
60
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
61
|
+
*/
|
|
62
|
+
static get(name, id, state, opts) {
|
|
63
|
+
return new DataClassificationCatalogConfig(name, state, { ...opts, id: id });
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of DataClassificationCatalogConfig. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj) {
|
|
70
|
+
if (obj === undefined || obj === null) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return obj['__pulumiType'] === DataClassificationCatalogConfig.__pulumiType;
|
|
74
|
+
}
|
|
75
|
+
constructor(name, argsOrState, opts) {
|
|
76
|
+
let resourceInputs = {};
|
|
77
|
+
opts = opts || {};
|
|
78
|
+
if (opts.id) {
|
|
79
|
+
const state = argsOrState;
|
|
80
|
+
resourceInputs["autoTagConfigs"] = state?.autoTagConfigs;
|
|
81
|
+
resourceInputs["includedSchemas"] = state?.includedSchemas;
|
|
82
|
+
resourceInputs["name"] = state?.name;
|
|
83
|
+
resourceInputs["parent"] = state?.parent;
|
|
84
|
+
resourceInputs["providerConfig"] = state?.providerConfig;
|
|
85
|
+
}
|
|
86
|
+
else {
|
|
87
|
+
const args = argsOrState;
|
|
88
|
+
if (args?.parent === undefined && !opts.urn) {
|
|
89
|
+
throw new Error("Missing required property 'parent'");
|
|
90
|
+
}
|
|
91
|
+
resourceInputs["autoTagConfigs"] = args?.autoTagConfigs;
|
|
92
|
+
resourceInputs["includedSchemas"] = args?.includedSchemas;
|
|
93
|
+
resourceInputs["parent"] = args?.parent;
|
|
94
|
+
resourceInputs["providerConfig"] = args?.providerConfig;
|
|
95
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
96
|
+
}
|
|
97
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
98
|
+
super(DataClassificationCatalogConfig.__pulumiType, name, resourceInputs, opts);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.DataClassificationCatalogConfig = DataClassificationCatalogConfig;
|
|
102
|
+
/** @internal */
|
|
103
|
+
DataClassificationCatalogConfig.__pulumiType = 'databricks:index/dataClassificationCatalogConfig:DataClassificationCatalogConfig';
|
|
104
|
+
//# sourceMappingURL=dataClassificationCatalogConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataClassificationCatalogConfig.js","sourceRoot":"","sources":["../dataClassificationCatalogConfig.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,+BAAgC,SAAQ,MAAM,CAAC,cAAc;IACtE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4C,EAAE,IAAmC;QAC1I,OAAO,IAAI,+BAA+B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtF,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,+BAA+B,CAAC,YAAY,CAAC;IAChF,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAwF,EAAE,IAAmC;QACnJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+D,CAAC;YAC9E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;SAC5D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8D,CAAC;YAC5E,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,+BAA+B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpF,CAAC;;AAlFL,0EAmFC;AArEG,gBAAgB;AACO,4CAAY,GAAG,kFAAkF,CAAC"}
|