@pulumi/databricks 1.60.0-alpha.1738733486 → 1.60.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.
@@ -0,0 +1,88 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * > This resource can only be used with a workspace-level provider!
6
+ *
7
+ * The `databricks.AibiDashboardEmbeddingAccessPolicySetting` resource allows you to control [embedding of AI/BI Dashboards](https://learn.microsoft.com/en-us/azure/databricks/dashboards/admin/#manage-dashboard-embedding) into other sites.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as databricks from "@pulumi/databricks";
14
+ *
15
+ * const _this = new databricks.AibiDashboardEmbeddingAccessPolicySetting("this", {aibiDashboardEmbeddingAccessPolicy: {
16
+ * accessPolicyType: "ALLOW_APPROVED_DOMAINS",
17
+ * }});
18
+ * ```
19
+ *
20
+ * ## Related Resources
21
+ *
22
+ * The following resources are often used in the same context:
23
+ *
24
+ * - databricks.AibiDashboardEmbeddingApprovedDomainsSetting is used to control approved domains.
25
+ *
26
+ * ## Import
27
+ *
28
+ * This resource can be imported by predefined name `global`:
29
+ *
30
+ * bash
31
+ *
32
+ * ```sh
33
+ * $ pulumi import databricks:index/aibiDashboardEmbeddingAccessPolicySetting:AibiDashboardEmbeddingAccessPolicySetting this global
34
+ * ```
35
+ */
36
+ export declare class AibiDashboardEmbeddingAccessPolicySetting extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing AibiDashboardEmbeddingAccessPolicySetting resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AibiDashboardEmbeddingAccessPolicySettingState, opts?: pulumi.CustomResourceOptions): AibiDashboardEmbeddingAccessPolicySetting;
47
+ /**
48
+ * Returns true if the given object is an instance of AibiDashboardEmbeddingAccessPolicySetting. 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: any): obj is AibiDashboardEmbeddingAccessPolicySetting;
52
+ /**
53
+ * block with following attributes:
54
+ */
55
+ readonly aibiDashboardEmbeddingAccessPolicy: pulumi.Output<outputs.AibiDashboardEmbeddingAccessPolicySettingAibiDashboardEmbeddingAccessPolicy>;
56
+ readonly etag: pulumi.Output<string>;
57
+ readonly settingName: pulumi.Output<string>;
58
+ /**
59
+ * Create a AibiDashboardEmbeddingAccessPolicySetting resource with the given unique name, arguments, and options.
60
+ *
61
+ * @param name The _unique_ name of the resource.
62
+ * @param args The arguments to use to populate this resource's properties.
63
+ * @param opts A bag of options that control this resource's behavior.
64
+ */
65
+ constructor(name: string, args: AibiDashboardEmbeddingAccessPolicySettingArgs, opts?: pulumi.CustomResourceOptions);
66
+ }
67
+ /**
68
+ * Input properties used for looking up and filtering AibiDashboardEmbeddingAccessPolicySetting resources.
69
+ */
70
+ export interface AibiDashboardEmbeddingAccessPolicySettingState {
71
+ /**
72
+ * block with following attributes:
73
+ */
74
+ aibiDashboardEmbeddingAccessPolicy?: pulumi.Input<inputs.AibiDashboardEmbeddingAccessPolicySettingAibiDashboardEmbeddingAccessPolicy>;
75
+ etag?: pulumi.Input<string>;
76
+ settingName?: pulumi.Input<string>;
77
+ }
78
+ /**
79
+ * The set of arguments for constructing a AibiDashboardEmbeddingAccessPolicySetting resource.
80
+ */
81
+ export interface AibiDashboardEmbeddingAccessPolicySettingArgs {
82
+ /**
83
+ * block with following attributes:
84
+ */
85
+ aibiDashboardEmbeddingAccessPolicy: pulumi.Input<inputs.AibiDashboardEmbeddingAccessPolicySettingAibiDashboardEmbeddingAccessPolicy>;
86
+ etag?: pulumi.Input<string>;
87
+ settingName?: pulumi.Input<string>;
88
+ }
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.AibiDashboardEmbeddingAccessPolicySetting = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > This resource can only be used with a workspace-level provider!
10
+ *
11
+ * The `databricks.AibiDashboardEmbeddingAccessPolicySetting` resource allows you to control [embedding of AI/BI Dashboards](https://learn.microsoft.com/en-us/azure/databricks/dashboards/admin/#manage-dashboard-embedding) into other sites.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as databricks from "@pulumi/databricks";
18
+ *
19
+ * const _this = new databricks.AibiDashboardEmbeddingAccessPolicySetting("this", {aibiDashboardEmbeddingAccessPolicy: {
20
+ * accessPolicyType: "ALLOW_APPROVED_DOMAINS",
21
+ * }});
22
+ * ```
23
+ *
24
+ * ## Related Resources
25
+ *
26
+ * The following resources are often used in the same context:
27
+ *
28
+ * - databricks.AibiDashboardEmbeddingApprovedDomainsSetting is used to control approved domains.
29
+ *
30
+ * ## Import
31
+ *
32
+ * This resource can be imported by predefined name `global`:
33
+ *
34
+ * bash
35
+ *
36
+ * ```sh
37
+ * $ pulumi import databricks:index/aibiDashboardEmbeddingAccessPolicySetting:AibiDashboardEmbeddingAccessPolicySetting this global
38
+ * ```
39
+ */
40
+ class AibiDashboardEmbeddingAccessPolicySetting extends pulumi.CustomResource {
41
+ /**
42
+ * Get an existing AibiDashboardEmbeddingAccessPolicySetting resource's state with the given name, ID, and optional extra
43
+ * properties used to qualify the lookup.
44
+ *
45
+ * @param name The _unique_ name of the resulting resource.
46
+ * @param id The _unique_ provider ID of the resource to lookup.
47
+ * @param state Any extra arguments used during the lookup.
48
+ * @param opts Optional settings to control the behavior of the CustomResource.
49
+ */
50
+ static get(name, id, state, opts) {
51
+ return new AibiDashboardEmbeddingAccessPolicySetting(name, state, Object.assign(Object.assign({}, opts), { id: id }));
52
+ }
53
+ /**
54
+ * Returns true if the given object is an instance of AibiDashboardEmbeddingAccessPolicySetting. This is designed to work even
55
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
+ */
57
+ static isInstance(obj) {
58
+ if (obj === undefined || obj === null) {
59
+ return false;
60
+ }
61
+ return obj['__pulumiType'] === AibiDashboardEmbeddingAccessPolicySetting.__pulumiType;
62
+ }
63
+ constructor(name, argsOrState, opts) {
64
+ let resourceInputs = {};
65
+ opts = opts || {};
66
+ if (opts.id) {
67
+ const state = argsOrState;
68
+ resourceInputs["aibiDashboardEmbeddingAccessPolicy"] = state ? state.aibiDashboardEmbeddingAccessPolicy : undefined;
69
+ resourceInputs["etag"] = state ? state.etag : undefined;
70
+ resourceInputs["settingName"] = state ? state.settingName : undefined;
71
+ }
72
+ else {
73
+ const args = argsOrState;
74
+ if ((!args || args.aibiDashboardEmbeddingAccessPolicy === undefined) && !opts.urn) {
75
+ throw new Error("Missing required property 'aibiDashboardEmbeddingAccessPolicy'");
76
+ }
77
+ resourceInputs["aibiDashboardEmbeddingAccessPolicy"] = args ? args.aibiDashboardEmbeddingAccessPolicy : undefined;
78
+ resourceInputs["etag"] = args ? args.etag : undefined;
79
+ resourceInputs["settingName"] = args ? args.settingName : undefined;
80
+ }
81
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
82
+ super(AibiDashboardEmbeddingAccessPolicySetting.__pulumiType, name, resourceInputs, opts);
83
+ }
84
+ }
85
+ exports.AibiDashboardEmbeddingAccessPolicySetting = AibiDashboardEmbeddingAccessPolicySetting;
86
+ /** @internal */
87
+ AibiDashboardEmbeddingAccessPolicySetting.__pulumiType = 'databricks:index/aibiDashboardEmbeddingAccessPolicySetting:AibiDashboardEmbeddingAccessPolicySetting';
88
+ //# sourceMappingURL=aibiDashboardEmbeddingAccessPolicySetting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aibiDashboardEmbeddingAccessPolicySetting.js","sourceRoot":"","sources":["../aibiDashboardEmbeddingAccessPolicySetting.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAa,yCAA0C,SAAQ,MAAM,CAAC,cAAc;IAChF;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsD,EAAE,IAAmC;QACpJ,OAAO,IAAI,yCAAyC,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChG,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,yCAAyC,CAAC,YAAY,CAAC;IAC1F,CAAC;IAiBD,YAAY,IAAY,EAAE,WAA4G,EAAE,IAAmC;QACvK,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyE,CAAC;YACxF,cAAc,CAAC,oCAAoC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kCAAkC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpH,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwE,CAAC;YACtF,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kCAAkC,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/E,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;aACrF;YACD,cAAc,CAAC,oCAAoC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC,CAAC,SAAS,CAAC;YAClH,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,yCAAyC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9F,CAAC;;AA9DL,8FA+DC;AAjDG,gBAAgB;AACO,sDAAY,GAAG,sGAAsG,CAAC"}
@@ -0,0 +1,93 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * > This resource can only be used with a workspace-level provider!
6
+ *
7
+ * The `databricks.AibiDashboardEmbeddingApprovedDomainsSetting` resource allows you to specify the list of domains allowed for [embedding of AI/BI Dashboards](https://learn.microsoft.com/en-us/azure/databricks/dashboards/admin/#manage-dashboard-embedding) into other sites.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as databricks from "@pulumi/databricks";
14
+ *
15
+ * const _this = new databricks.AibiDashboardEmbeddingAccessPolicySetting("this", {aibiDashboardEmbeddingAccessPolicy: {
16
+ * accessPolicyType: "ALLOW_APPROVED_DOMAINS",
17
+ * }});
18
+ * const thisAibiDashboardEmbeddingApprovedDomainsSetting = new databricks.AibiDashboardEmbeddingApprovedDomainsSetting("this", {aibiDashboardEmbeddingApprovedDomains: {
19
+ * approvedDomains: ["test.com"],
20
+ * }}, {
21
+ * dependsOn: [_this],
22
+ * });
23
+ * ```
24
+ *
25
+ * ## Related Resources
26
+ *
27
+ * The following resources are often used in the same context:
28
+ *
29
+ * - databricks.AibiDashboardEmbeddingAccessPolicySetting is used to control embedding policy.
30
+ *
31
+ * ## Import
32
+ *
33
+ * This resource can be imported by predefined name `global`:
34
+ *
35
+ * bash
36
+ *
37
+ * ```sh
38
+ * $ pulumi import databricks:index/aibiDashboardEmbeddingApprovedDomainsSetting:AibiDashboardEmbeddingApprovedDomainsSetting this global
39
+ * ```
40
+ */
41
+ export declare class AibiDashboardEmbeddingApprovedDomainsSetting extends pulumi.CustomResource {
42
+ /**
43
+ * Get an existing AibiDashboardEmbeddingApprovedDomainsSetting resource's state with the given name, ID, and optional extra
44
+ * properties used to qualify the lookup.
45
+ *
46
+ * @param name The _unique_ name of the resulting resource.
47
+ * @param id The _unique_ provider ID of the resource to lookup.
48
+ * @param state Any extra arguments used during the lookup.
49
+ * @param opts Optional settings to control the behavior of the CustomResource.
50
+ */
51
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AibiDashboardEmbeddingApprovedDomainsSettingState, opts?: pulumi.CustomResourceOptions): AibiDashboardEmbeddingApprovedDomainsSetting;
52
+ /**
53
+ * Returns true if the given object is an instance of AibiDashboardEmbeddingApprovedDomainsSetting. This is designed to work even
54
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
55
+ */
56
+ static isInstance(obj: any): obj is AibiDashboardEmbeddingApprovedDomainsSetting;
57
+ /**
58
+ * block with following attributes:
59
+ */
60
+ readonly aibiDashboardEmbeddingApprovedDomains: pulumi.Output<outputs.AibiDashboardEmbeddingApprovedDomainsSettingAibiDashboardEmbeddingApprovedDomains>;
61
+ readonly etag: pulumi.Output<string>;
62
+ readonly settingName: pulumi.Output<string>;
63
+ /**
64
+ * Create a AibiDashboardEmbeddingApprovedDomainsSetting resource with the given unique name, arguments, and options.
65
+ *
66
+ * @param name The _unique_ name of the resource.
67
+ * @param args The arguments to use to populate this resource's properties.
68
+ * @param opts A bag of options that control this resource's behavior.
69
+ */
70
+ constructor(name: string, args: AibiDashboardEmbeddingApprovedDomainsSettingArgs, opts?: pulumi.CustomResourceOptions);
71
+ }
72
+ /**
73
+ * Input properties used for looking up and filtering AibiDashboardEmbeddingApprovedDomainsSetting resources.
74
+ */
75
+ export interface AibiDashboardEmbeddingApprovedDomainsSettingState {
76
+ /**
77
+ * block with following attributes:
78
+ */
79
+ aibiDashboardEmbeddingApprovedDomains?: pulumi.Input<inputs.AibiDashboardEmbeddingApprovedDomainsSettingAibiDashboardEmbeddingApprovedDomains>;
80
+ etag?: pulumi.Input<string>;
81
+ settingName?: pulumi.Input<string>;
82
+ }
83
+ /**
84
+ * The set of arguments for constructing a AibiDashboardEmbeddingApprovedDomainsSetting resource.
85
+ */
86
+ export interface AibiDashboardEmbeddingApprovedDomainsSettingArgs {
87
+ /**
88
+ * block with following attributes:
89
+ */
90
+ aibiDashboardEmbeddingApprovedDomains: pulumi.Input<inputs.AibiDashboardEmbeddingApprovedDomainsSettingAibiDashboardEmbeddingApprovedDomains>;
91
+ etag?: pulumi.Input<string>;
92
+ settingName?: pulumi.Input<string>;
93
+ }
@@ -0,0 +1,93 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.AibiDashboardEmbeddingApprovedDomainsSetting = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > This resource can only be used with a workspace-level provider!
10
+ *
11
+ * The `databricks.AibiDashboardEmbeddingApprovedDomainsSetting` resource allows you to specify the list of domains allowed for [embedding of AI/BI Dashboards](https://learn.microsoft.com/en-us/azure/databricks/dashboards/admin/#manage-dashboard-embedding) into other sites.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as databricks from "@pulumi/databricks";
18
+ *
19
+ * const _this = new databricks.AibiDashboardEmbeddingAccessPolicySetting("this", {aibiDashboardEmbeddingAccessPolicy: {
20
+ * accessPolicyType: "ALLOW_APPROVED_DOMAINS",
21
+ * }});
22
+ * const thisAibiDashboardEmbeddingApprovedDomainsSetting = new databricks.AibiDashboardEmbeddingApprovedDomainsSetting("this", {aibiDashboardEmbeddingApprovedDomains: {
23
+ * approvedDomains: ["test.com"],
24
+ * }}, {
25
+ * dependsOn: [_this],
26
+ * });
27
+ * ```
28
+ *
29
+ * ## Related Resources
30
+ *
31
+ * The following resources are often used in the same context:
32
+ *
33
+ * - databricks.AibiDashboardEmbeddingAccessPolicySetting is used to control embedding policy.
34
+ *
35
+ * ## Import
36
+ *
37
+ * This resource can be imported by predefined name `global`:
38
+ *
39
+ * bash
40
+ *
41
+ * ```sh
42
+ * $ pulumi import databricks:index/aibiDashboardEmbeddingApprovedDomainsSetting:AibiDashboardEmbeddingApprovedDomainsSetting this global
43
+ * ```
44
+ */
45
+ class AibiDashboardEmbeddingApprovedDomainsSetting extends pulumi.CustomResource {
46
+ /**
47
+ * Get an existing AibiDashboardEmbeddingApprovedDomainsSetting resource's state with the given name, ID, and optional extra
48
+ * properties used to qualify the lookup.
49
+ *
50
+ * @param name The _unique_ name of the resulting resource.
51
+ * @param id The _unique_ provider ID of the resource to lookup.
52
+ * @param state Any extra arguments used during the lookup.
53
+ * @param opts Optional settings to control the behavior of the CustomResource.
54
+ */
55
+ static get(name, id, state, opts) {
56
+ return new AibiDashboardEmbeddingApprovedDomainsSetting(name, state, Object.assign(Object.assign({}, opts), { id: id }));
57
+ }
58
+ /**
59
+ * Returns true if the given object is an instance of AibiDashboardEmbeddingApprovedDomainsSetting. This is designed to work even
60
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
61
+ */
62
+ static isInstance(obj) {
63
+ if (obj === undefined || obj === null) {
64
+ return false;
65
+ }
66
+ return obj['__pulumiType'] === AibiDashboardEmbeddingApprovedDomainsSetting.__pulumiType;
67
+ }
68
+ constructor(name, argsOrState, opts) {
69
+ let resourceInputs = {};
70
+ opts = opts || {};
71
+ if (opts.id) {
72
+ const state = argsOrState;
73
+ resourceInputs["aibiDashboardEmbeddingApprovedDomains"] = state ? state.aibiDashboardEmbeddingApprovedDomains : undefined;
74
+ resourceInputs["etag"] = state ? state.etag : undefined;
75
+ resourceInputs["settingName"] = state ? state.settingName : undefined;
76
+ }
77
+ else {
78
+ const args = argsOrState;
79
+ if ((!args || args.aibiDashboardEmbeddingApprovedDomains === undefined) && !opts.urn) {
80
+ throw new Error("Missing required property 'aibiDashboardEmbeddingApprovedDomains'");
81
+ }
82
+ resourceInputs["aibiDashboardEmbeddingApprovedDomains"] = args ? args.aibiDashboardEmbeddingApprovedDomains : undefined;
83
+ resourceInputs["etag"] = args ? args.etag : undefined;
84
+ resourceInputs["settingName"] = args ? args.settingName : undefined;
85
+ }
86
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
87
+ super(AibiDashboardEmbeddingApprovedDomainsSetting.__pulumiType, name, resourceInputs, opts);
88
+ }
89
+ }
90
+ exports.AibiDashboardEmbeddingApprovedDomainsSetting = AibiDashboardEmbeddingApprovedDomainsSetting;
91
+ /** @internal */
92
+ AibiDashboardEmbeddingApprovedDomainsSetting.__pulumiType = 'databricks:index/aibiDashboardEmbeddingApprovedDomainsSetting:AibiDashboardEmbeddingApprovedDomainsSetting';
93
+ //# sourceMappingURL=aibiDashboardEmbeddingApprovedDomainsSetting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aibiDashboardEmbeddingApprovedDomainsSetting.js","sourceRoot":"","sources":["../aibiDashboardEmbeddingApprovedDomainsSetting.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,4CAA6C,SAAQ,MAAM,CAAC,cAAc;IACnF;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyD,EAAE,IAAmC;QACvJ,OAAO,IAAI,4CAA4C,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnG,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,4CAA4C,CAAC,YAAY,CAAC;IAC7F,CAAC;IAiBD,YAAY,IAAY,EAAE,WAAkH,EAAE,IAAmC;QAC7K,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4E,CAAC;YAC3F,cAAc,CAAC,uCAAuC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qCAAqC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1H,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2E,CAAC;YACzF,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,qCAAqC,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClF,MAAM,IAAI,KAAK,CAAC,mEAAmE,CAAC,CAAC;aACxF;YACD,cAAc,CAAC,uCAAuC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qCAAqC,CAAC,CAAC,CAAC,SAAS,CAAC;YACxH,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4CAA4C,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjG,CAAC;;AA9DL,oGA+DC;AAjDG,gBAAgB;AACO,yDAAY,GAAG,4GAA4G,CAAC"}
package/credential.d.ts CHANGED
@@ -61,7 +61,7 @@ import * as outputs from "./types/output";
61
61
  * });
62
62
  * ```
63
63
  *
64
- * For GCP (only applicable when purpose is `STORAGE`)
64
+ * For GCP
65
65
  *
66
66
  * ```typescript
67
67
  * import * as pulumi from "@pulumi/pulumi";
@@ -70,7 +70,7 @@ import * as outputs from "./types/output";
70
70
  * const externalGcpSa = new databricks.Credential("external_gcp_sa", {
71
71
  * name: "gcp_sa_credential",
72
72
  * databricksGcpServiceAccount: {},
73
- * purpose: "STORAGE",
73
+ * purpose: "SERVICE",
74
74
  * comment: "GCP SA credential managed by TF",
75
75
  * });
76
76
  * const externalCreds = new databricks.Grants("external_creds", {
package/credential.js CHANGED
@@ -65,7 +65,7 @@ const utilities = require("./utilities");
65
65
  * });
66
66
  * ```
67
67
  *
68
- * For GCP (only applicable when purpose is `STORAGE`)
68
+ * For GCP
69
69
  *
70
70
  * ```typescript
71
71
  * import * as pulumi from "@pulumi/pulumi";
@@ -74,7 +74,7 @@ const utilities = require("./utilities");
74
74
  * const externalGcpSa = new databricks.Credential("external_gcp_sa", {
75
75
  * name: "gcp_sa_credential",
76
76
  * databricksGcpServiceAccount: {},
77
- * purpose: "STORAGE",
77
+ * purpose: "SERVICE",
78
78
  * comment: "GCP SA credential managed by TF",
79
79
  * });
80
80
  * const externalCreds = new databricks.Grants("external_creds", {
@@ -85,6 +85,7 @@ export declare class CustomAppIntegration extends pulumi.CustomResource {
85
85
  */
86
86
  readonly scopes: pulumi.Output<string[] | undefined>;
87
87
  readonly tokenAccessPolicy: pulumi.Output<outputs.CustomAppIntegrationTokenAccessPolicy | undefined>;
88
+ readonly userAuthorizedScopes: pulumi.Output<string[] | undefined>;
88
89
  /**
89
90
  * Create a CustomAppIntegration resource with the given unique name, arguments, and options.
90
91
  *
@@ -130,6 +131,7 @@ export interface CustomAppIntegrationState {
130
131
  */
131
132
  scopes?: pulumi.Input<pulumi.Input<string>[]>;
132
133
  tokenAccessPolicy?: pulumi.Input<inputs.CustomAppIntegrationTokenAccessPolicy>;
134
+ userAuthorizedScopes?: pulumi.Input<pulumi.Input<string>[]>;
133
135
  }
134
136
  /**
135
137
  * The set of arguments for constructing a CustomAppIntegration resource.
@@ -167,4 +169,5 @@ export interface CustomAppIntegrationArgs {
167
169
  */
168
170
  scopes?: pulumi.Input<pulumi.Input<string>[]>;
169
171
  tokenAccessPolicy?: pulumi.Input<inputs.CustomAppIntegrationTokenAccessPolicy>;
172
+ userAuthorizedScopes?: pulumi.Input<pulumi.Input<string>[]>;
170
173
  }
@@ -80,6 +80,7 @@ class CustomAppIntegration extends pulumi.CustomResource {
80
80
  resourceInputs["redirectUrls"] = state ? state.redirectUrls : undefined;
81
81
  resourceInputs["scopes"] = state ? state.scopes : undefined;
82
82
  resourceInputs["tokenAccessPolicy"] = state ? state.tokenAccessPolicy : undefined;
83
+ resourceInputs["userAuthorizedScopes"] = state ? state.userAuthorizedScopes : undefined;
83
84
  }
84
85
  else {
85
86
  const args = argsOrState;
@@ -94,6 +95,7 @@ class CustomAppIntegration extends pulumi.CustomResource {
94
95
  resourceInputs["redirectUrls"] = args ? args.redirectUrls : undefined;
95
96
  resourceInputs["scopes"] = args ? args.scopes : undefined;
96
97
  resourceInputs["tokenAccessPolicy"] = args ? args.tokenAccessPolicy : undefined;
98
+ resourceInputs["userAuthorizedScopes"] = args ? args.userAuthorizedScopes : undefined;
97
99
  }
98
100
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
99
101
  const secretOpts = { additionalSecretOutputs: ["clientSecret"] };
@@ -1 +1 @@
1
- {"version":3,"file":"customAppIntegration.js","sourceRoot":"","sources":["../customAppIntegration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"customAppIntegration.js","sourceRoot":"","sources":["../customAppIntegration.ts"],"names":[],"mappings":"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"}
package/index.d.ts CHANGED
@@ -1,6 +1,12 @@
1
1
  export { AccessControlRuleSetArgs, AccessControlRuleSetState } from "./accessControlRuleSet";
2
2
  export type AccessControlRuleSet = import("./accessControlRuleSet").AccessControlRuleSet;
3
3
  export declare const AccessControlRuleSet: typeof import("./accessControlRuleSet").AccessControlRuleSet;
4
+ export { AibiDashboardEmbeddingAccessPolicySettingArgs, AibiDashboardEmbeddingAccessPolicySettingState } from "./aibiDashboardEmbeddingAccessPolicySetting";
5
+ export type AibiDashboardEmbeddingAccessPolicySetting = import("./aibiDashboardEmbeddingAccessPolicySetting").AibiDashboardEmbeddingAccessPolicySetting;
6
+ export declare const AibiDashboardEmbeddingAccessPolicySetting: typeof import("./aibiDashboardEmbeddingAccessPolicySetting").AibiDashboardEmbeddingAccessPolicySetting;
7
+ export { AibiDashboardEmbeddingApprovedDomainsSettingArgs, AibiDashboardEmbeddingApprovedDomainsSettingState } from "./aibiDashboardEmbeddingApprovedDomainsSetting";
8
+ export type AibiDashboardEmbeddingApprovedDomainsSetting = import("./aibiDashboardEmbeddingApprovedDomainsSetting").AibiDashboardEmbeddingApprovedDomainsSetting;
9
+ export declare const AibiDashboardEmbeddingApprovedDomainsSetting: typeof import("./aibiDashboardEmbeddingApprovedDomainsSetting").AibiDashboardEmbeddingApprovedDomainsSetting;
4
10
  export { AlertArgs, AlertState } from "./alert";
5
11
  export type Alert = import("./alert").Alert;
6
12
  export declare const Alert: typeof import("./alert").Alert;
package/index.js CHANGED
@@ -2,15 +2,19 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.getCurrentMetastoreOutput = exports.getCurrentMetastore = exports.getCurrentConfigOutput = exports.getCurrentConfig = exports.getClustersOutput = exports.getClusters = exports.getClusterPolicyOutput = exports.getClusterPolicy = exports.getClusterOutput = exports.getCluster = exports.getCatalogsOutput = exports.getCatalogs = exports.getCatalogOutput = exports.getCatalog = exports.getAwsUnityCatalogPolicyOutput = exports.getAwsUnityCatalogPolicy = exports.getAwsUnityCatalogAssumeRolePolicyOutput = exports.getAwsUnityCatalogAssumeRolePolicy = exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = exports.getAwsBucketPolicyOutput = exports.getAwsBucketPolicy = exports.getAwsAssumeRolePolicyOutput = exports.getAwsAssumeRolePolicy = exports.getAppsOutput = exports.getApps = exports.getAppOutput = exports.getApp = exports.File = exports.ExternalLocation = exports.Entitlements = exports.EnhancedSecurityMonitoringWorkspaceSetting = exports.Directory = exports.DefaultNamespaceSetting = exports.DbfsFile = exports.Dashboard = exports.CustomAppIntegration = exports.Credential = exports.Connection = exports.ComplianceSecurityProfileWorkspaceSetting = exports.ClusterPolicy = exports.Cluster = exports.CatalogWorkspaceBinding = exports.Catalog = exports.Budget = exports.AutomaticClusterUpdateWorkspaceSetting = exports.ArtifactAllowlist = exports.App = exports.Alert = exports.AccessControlRuleSet = void 0;
6
- exports.getNotificationDestinationsOutput = exports.getNotificationDestinations = exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = exports.getMwsNetworkConnectivityConfigsOutput = exports.getMwsNetworkConnectivityConfigs = exports.getMwsNetworkConnectivityConfigOutput = exports.getMwsNetworkConnectivityConfig = exports.getMwsCredentialsOutput = exports.getMwsCredentials = exports.getMlflowModelsOutput = exports.getMlflowModels = exports.getMlflowModelOutput = exports.getMlflowModel = exports.getMlflowExperimentOutput = exports.getMlflowExperiment = exports.getMetastoresOutput = exports.getMetastores = exports.getMetastoreOutput = exports.getMetastore = exports.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getInstanceProfilesOutput = exports.getInstanceProfiles = exports.getInstancePoolOutput = exports.getInstancePool = exports.getGroupOutput = exports.getGroup = exports.getFunctionsOutput = exports.getFunctions = exports.getExternalLocationsOutput = exports.getExternalLocations = exports.getExternalLocationOutput = exports.getExternalLocation = exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUserOutput = exports.getCurrentUser = void 0;
7
- exports.GroupInstanceProfile = exports.Group = exports.Grants = exports.Grant = exports.GlobalInitScript = exports.GitCredential = exports.getZonesOutput = exports.getZones = exports.getVolumesOutput = exports.getVolumes = exports.getVolumeOutput = exports.getVolume = exports.getViewsOutput = exports.getViews = exports.getUserOutput = exports.getUser = exports.getTablesOutput = exports.getTables = exports.getTableOutput = exports.getTable = exports.getStorageCredentialsOutput = exports.getStorageCredentials = exports.getStorageCredentialOutput = exports.getStorageCredential = exports.getSqlWarehousesOutput = exports.getSqlWarehouses = exports.getSqlWarehouseOutput = exports.getSqlWarehouse = exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServingEndpointsOutput = exports.getServingEndpoints = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getRegisteredModelVersionsOutput = exports.getRegisteredModelVersions = exports.getRegisteredModelOutput = exports.getRegisteredModel = exports.getPipelinesOutput = exports.getPipelines = void 0;
8
- exports.ServicePrincipalSecret = exports.ServicePrincipalRole = exports.ServicePrincipal = exports.SecretScope = exports.SecretAcl = exports.Secret = exports.Schema = exports.RestrictWorkspaceAdminsSetting = exports.Repo = exports.RegisteredModel = exports.Recipient = exports.Query = exports.QualityMonitor = exports.Provider = exports.Pipeline = exports.Permissions = exports.PermissionAssignment = exports.OnlineTable = exports.OboToken = exports.NotificationDestination = exports.Notebook = exports.MwsWorkspaces = exports.MwsVpcEndpoint = exports.MwsStorageConfigurations = exports.MwsPrivateAccessSettings = exports.MwsPermissionAssignment = exports.MwsNetworks = exports.MwsNetworkConnectivityConfig = exports.MwsNccPrivateEndpointRule = exports.MwsNccBinding = exports.MwsLogDelivery = exports.MwsCustomerManagedKeys = exports.MwsCredentials = exports.Mount = exports.ModelServing = exports.MlflowWebhook = exports.MlflowModel = exports.MlflowExperiment = exports.MetastoreProvider = exports.MetastoreDataAccess = exports.MetastoreAssignment = exports.Metastore = exports.Library = exports.LakehouseMonitor = exports.Job = exports.IpAccessList = exports.InstanceProfile = exports.InstancePool = exports.GroupRole = exports.GroupMember = void 0;
9
- exports.types = exports.config = exports.WorkspaceFile = exports.WorkspaceConf = exports.WorkspaceBinding = exports.Volume = exports.VectorSearchIndex = exports.VectorSearchEndpoint = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = exports.SystemSchema = exports.StorageCredential = exports.SqlWidget = exports.SqlVisualization = exports.SqlTable = exports.SqlQuery = exports.SqlPermissions = exports.SqlGlobalConfig = exports.SqlEndpoint = exports.SqlDashboard = exports.SqlAlert = exports.Share = void 0;
5
+ exports.getCurrentConfigOutput = exports.getCurrentConfig = exports.getClustersOutput = exports.getClusters = exports.getClusterPolicyOutput = exports.getClusterPolicy = exports.getClusterOutput = exports.getCluster = exports.getCatalogsOutput = exports.getCatalogs = exports.getCatalogOutput = exports.getCatalog = exports.getAwsUnityCatalogPolicyOutput = exports.getAwsUnityCatalogPolicy = exports.getAwsUnityCatalogAssumeRolePolicyOutput = exports.getAwsUnityCatalogAssumeRolePolicy = exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = exports.getAwsBucketPolicyOutput = exports.getAwsBucketPolicy = exports.getAwsAssumeRolePolicyOutput = exports.getAwsAssumeRolePolicy = exports.getAppsOutput = exports.getApps = exports.getAppOutput = exports.getApp = exports.File = exports.ExternalLocation = exports.Entitlements = exports.EnhancedSecurityMonitoringWorkspaceSetting = exports.Directory = exports.DefaultNamespaceSetting = exports.DbfsFile = exports.Dashboard = exports.CustomAppIntegration = exports.Credential = exports.Connection = exports.ComplianceSecurityProfileWorkspaceSetting = exports.ClusterPolicy = exports.Cluster = exports.CatalogWorkspaceBinding = exports.Catalog = exports.Budget = exports.AutomaticClusterUpdateWorkspaceSetting = exports.ArtifactAllowlist = exports.App = exports.Alert = exports.AibiDashboardEmbeddingApprovedDomainsSetting = exports.AibiDashboardEmbeddingAccessPolicySetting = exports.AccessControlRuleSet = void 0;
6
+ exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = exports.getMwsNetworkConnectivityConfigsOutput = exports.getMwsNetworkConnectivityConfigs = exports.getMwsNetworkConnectivityConfigOutput = exports.getMwsNetworkConnectivityConfig = exports.getMwsCredentialsOutput = exports.getMwsCredentials = exports.getMlflowModelsOutput = exports.getMlflowModels = exports.getMlflowModelOutput = exports.getMlflowModel = exports.getMlflowExperimentOutput = exports.getMlflowExperiment = exports.getMetastoresOutput = exports.getMetastores = exports.getMetastoreOutput = exports.getMetastore = exports.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getInstanceProfilesOutput = exports.getInstanceProfiles = exports.getInstancePoolOutput = exports.getInstancePool = exports.getGroupOutput = exports.getGroup = exports.getFunctionsOutput = exports.getFunctions = exports.getExternalLocationsOutput = exports.getExternalLocations = exports.getExternalLocationOutput = exports.getExternalLocation = exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUserOutput = exports.getCurrentUser = exports.getCurrentMetastoreOutput = exports.getCurrentMetastore = void 0;
7
+ exports.Grants = exports.Grant = exports.GlobalInitScript = exports.GitCredential = exports.getZonesOutput = exports.getZones = exports.getVolumesOutput = exports.getVolumes = exports.getVolumeOutput = exports.getVolume = exports.getViewsOutput = exports.getViews = exports.getUserOutput = exports.getUser = exports.getTablesOutput = exports.getTables = exports.getTableOutput = exports.getTable = exports.getStorageCredentialsOutput = exports.getStorageCredentials = exports.getStorageCredentialOutput = exports.getStorageCredential = exports.getSqlWarehousesOutput = exports.getSqlWarehouses = exports.getSqlWarehouseOutput = exports.getSqlWarehouse = exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServingEndpointsOutput = exports.getServingEndpoints = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getRegisteredModelVersionsOutput = exports.getRegisteredModelVersions = exports.getRegisteredModelOutput = exports.getRegisteredModel = exports.getPipelinesOutput = exports.getPipelines = exports.getNotificationDestinationsOutput = exports.getNotificationDestinations = void 0;
8
+ exports.ServicePrincipal = exports.SecretScope = exports.SecretAcl = exports.Secret = exports.Schema = exports.RestrictWorkspaceAdminsSetting = exports.Repo = exports.RegisteredModel = exports.Recipient = exports.Query = exports.QualityMonitor = exports.Provider = exports.Pipeline = exports.Permissions = exports.PermissionAssignment = exports.OnlineTable = exports.OboToken = exports.NotificationDestination = exports.Notebook = exports.MwsWorkspaces = exports.MwsVpcEndpoint = exports.MwsStorageConfigurations = exports.MwsPrivateAccessSettings = exports.MwsPermissionAssignment = exports.MwsNetworks = exports.MwsNetworkConnectivityConfig = exports.MwsNccPrivateEndpointRule = exports.MwsNccBinding = exports.MwsLogDelivery = exports.MwsCustomerManagedKeys = exports.MwsCredentials = exports.Mount = exports.ModelServing = exports.MlflowWebhook = exports.MlflowModel = exports.MlflowExperiment = exports.MetastoreProvider = exports.MetastoreDataAccess = exports.MetastoreAssignment = exports.Metastore = exports.Library = exports.LakehouseMonitor = exports.Job = exports.IpAccessList = exports.InstanceProfile = exports.InstancePool = exports.GroupRole = exports.GroupMember = exports.GroupInstanceProfile = exports.Group = void 0;
9
+ exports.types = exports.config = exports.WorkspaceFile = exports.WorkspaceConf = exports.WorkspaceBinding = exports.Volume = exports.VectorSearchIndex = exports.VectorSearchEndpoint = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = exports.SystemSchema = exports.StorageCredential = exports.SqlWidget = exports.SqlVisualization = exports.SqlTable = exports.SqlQuery = exports.SqlPermissions = exports.SqlGlobalConfig = exports.SqlEndpoint = exports.SqlDashboard = exports.SqlAlert = exports.Share = exports.ServicePrincipalSecret = exports.ServicePrincipalRole = void 0;
10
10
  const pulumi = require("@pulumi/pulumi");
11
11
  const utilities = require("./utilities");
12
12
  exports.AccessControlRuleSet = null;
13
13
  utilities.lazyLoad(exports, ["AccessControlRuleSet"], () => require("./accessControlRuleSet"));
14
+ exports.AibiDashboardEmbeddingAccessPolicySetting = null;
15
+ utilities.lazyLoad(exports, ["AibiDashboardEmbeddingAccessPolicySetting"], () => require("./aibiDashboardEmbeddingAccessPolicySetting"));
16
+ exports.AibiDashboardEmbeddingApprovedDomainsSetting = null;
17
+ utilities.lazyLoad(exports, ["AibiDashboardEmbeddingApprovedDomainsSetting"], () => require("./aibiDashboardEmbeddingApprovedDomainsSetting"));
14
18
  exports.Alert = null;
15
19
  utilities.lazyLoad(exports, ["Alert"], () => require("./alert"));
16
20
  exports.App = null;
@@ -405,6 +409,10 @@ const _module = {
405
409
  switch (type) {
406
410
  case "databricks:index/accessControlRuleSet:AccessControlRuleSet":
407
411
  return new exports.AccessControlRuleSet(name, undefined, { urn });
412
+ case "databricks:index/aibiDashboardEmbeddingAccessPolicySetting:AibiDashboardEmbeddingAccessPolicySetting":
413
+ return new exports.AibiDashboardEmbeddingAccessPolicySetting(name, undefined, { urn });
414
+ case "databricks:index/aibiDashboardEmbeddingApprovedDomainsSetting:AibiDashboardEmbeddingApprovedDomainsSetting":
415
+ return new exports.AibiDashboardEmbeddingApprovedDomainsSetting(name, undefined, { urn });
408
416
  case "databricks:index/alert:Alert":
409
417
  return new exports.Alert(name, undefined, { urn });
410
418
  case "databricks:index/app:App":
@@ -609,6 +617,8 @@ const _module = {
609
617
  },
610
618
  };
611
619
  pulumi.runtime.registerResourceModule("databricks", "index/accessControlRuleSet", _module);
620
+ pulumi.runtime.registerResourceModule("databricks", "index/aibiDashboardEmbeddingAccessPolicySetting", _module);
621
+ pulumi.runtime.registerResourceModule("databricks", "index/aibiDashboardEmbeddingApprovedDomainsSetting", _module);
612
622
  pulumi.runtime.registerResourceModule("databricks", "index/alert", _module);
613
623
  pulumi.runtime.registerResourceModule("databricks", "index/app", _module);
614
624
  pulumi.runtime.registerResourceModule("databricks", "index/artifactAllowlist", _module);