@pulumi/databricks 1.52.0-alpha.1729187150 → 1.52.0-alpha.1729524608

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.
Files changed (57) hide show
  1. package/getAwsBucketPolicy.d.ts +44 -0
  2. package/getAwsBucketPolicy.js +44 -0
  3. package/getAwsBucketPolicy.js.map +1 -1
  4. package/getAwsUnityCatalogPolicy.d.ts +2 -2
  5. package/getAwsUnityCatalogPolicy.js +2 -2
  6. package/getCluster.d.ts +4 -4
  7. package/getCluster.js +4 -4
  8. package/getInstancePool.d.ts +2 -2
  9. package/getInstancePool.js +2 -2
  10. package/getMetastore.d.ts +12 -2
  11. package/getMetastore.js +12 -2
  12. package/getMetastore.js.map +1 -1
  13. package/getNotificationDestinations.d.ts +132 -0
  14. package/getNotificationDestinations.js +96 -0
  15. package/getNotificationDestinations.js.map +1 -0
  16. package/getRegisteredModel.d.ts +114 -0
  17. package/getRegisteredModel.js +76 -0
  18. package/getRegisteredModel.js.map +1 -0
  19. package/getSqlWarehouse.d.ts +4 -4
  20. package/getSqlWarehouse.js +4 -4
  21. package/getViews.d.ts +72 -0
  22. package/getViews.js +72 -0
  23. package/getViews.js.map +1 -1
  24. package/getVolume.d.ts +72 -0
  25. package/getVolume.js +72 -0
  26. package/getVolume.js.map +1 -1
  27. package/index.d.ts +6 -0
  28. package/index.js +10 -4
  29. package/index.js.map +1 -1
  30. package/job.d.ts +12 -0
  31. package/job.js +2 -0
  32. package/job.js.map +1 -1
  33. package/lakehouseMonitor.d.ts +43 -0
  34. package/lakehouseMonitor.js +43 -0
  35. package/lakehouseMonitor.js.map +1 -1
  36. package/modelServing.d.ts +18 -9
  37. package/modelServing.js.map +1 -1
  38. package/mwsCredentials.d.ts +2 -0
  39. package/mwsCredentials.js +2 -0
  40. package/mwsCredentials.js.map +1 -1
  41. package/mwsCustomerManagedKeys.d.ts +3 -2
  42. package/mwsCustomerManagedKeys.js +3 -2
  43. package/mwsCustomerManagedKeys.js.map +1 -1
  44. package/onlineTable.d.ts +8 -0
  45. package/onlineTable.js +2 -0
  46. package/onlineTable.js.map +1 -1
  47. package/package.json +2 -2
  48. package/permissions.d.ts +3 -2
  49. package/permissions.js +3 -2
  50. package/permissions.js.map +1 -1
  51. package/pipeline.d.ts +9 -0
  52. package/pipeline.js.map +1 -1
  53. package/qualityMonitor.d.ts +43 -0
  54. package/qualityMonitor.js +43 -0
  55. package/qualityMonitor.js.map +1 -1
  56. package/types/input.d.ts +282 -15
  57. package/types/output.d.ts +203 -15
@@ -0,0 +1,114 @@
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
+ * This resource allows you to get information about [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html) in Databricks.
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 = databricks.getRegisteredModel({
16
+ * fullName: "main.default.my_model",
17
+ * });
18
+ * ```
19
+ *
20
+ * ## Related Resources
21
+ *
22
+ * The following resources are often used in the same context:
23
+ *
24
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
25
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
26
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
27
+ */
28
+ export declare function getRegisteredModel(args: GetRegisteredModelArgs, opts?: pulumi.InvokeOptions): Promise<GetRegisteredModelResult>;
29
+ /**
30
+ * A collection of arguments for invoking getRegisteredModel.
31
+ */
32
+ export interface GetRegisteredModelArgs {
33
+ /**
34
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
35
+ */
36
+ fullName: string;
37
+ /**
38
+ * flag to specify if list of aliases should be included into output.
39
+ */
40
+ includeAliases?: boolean;
41
+ /**
42
+ * flag to specify if include registered models in the response for which the principal can only access selective metadata for.
43
+ */
44
+ includeBrowse?: boolean;
45
+ /**
46
+ * block with information about the model in Unity Catalog:
47
+ */
48
+ modelInfos?: inputs.GetRegisteredModelModelInfo[];
49
+ }
50
+ /**
51
+ * A collection of values returned by getRegisteredModel.
52
+ */
53
+ export interface GetRegisteredModelResult {
54
+ /**
55
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
56
+ */
57
+ readonly fullName: string;
58
+ /**
59
+ * The provider-assigned unique ID for this managed resource.
60
+ */
61
+ readonly id: string;
62
+ readonly includeAliases?: boolean;
63
+ readonly includeBrowse?: boolean;
64
+ /**
65
+ * block with information about the model in Unity Catalog:
66
+ */
67
+ readonly modelInfos?: outputs.GetRegisteredModelModelInfo[];
68
+ }
69
+ /**
70
+ * > This resource can only be used with a workspace-level provider!
71
+ *
72
+ * This resource allows you to get information about [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html) in Databricks.
73
+ *
74
+ * ## Example Usage
75
+ *
76
+ * ```typescript
77
+ * import * as pulumi from "@pulumi/pulumi";
78
+ * import * as databricks from "@pulumi/databricks";
79
+ *
80
+ * const this = databricks.getRegisteredModel({
81
+ * fullName: "main.default.my_model",
82
+ * });
83
+ * ```
84
+ *
85
+ * ## Related Resources
86
+ *
87
+ * The following resources are often used in the same context:
88
+ *
89
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
90
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
91
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
92
+ */
93
+ export declare function getRegisteredModelOutput(args: GetRegisteredModelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegisteredModelResult>;
94
+ /**
95
+ * A collection of arguments for invoking getRegisteredModel.
96
+ */
97
+ export interface GetRegisteredModelOutputArgs {
98
+ /**
99
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
100
+ */
101
+ fullName: pulumi.Input<string>;
102
+ /**
103
+ * flag to specify if list of aliases should be included into output.
104
+ */
105
+ includeAliases?: pulumi.Input<boolean>;
106
+ /**
107
+ * flag to specify if include registered models in the response for which the principal can only access selective metadata for.
108
+ */
109
+ includeBrowse?: pulumi.Input<boolean>;
110
+ /**
111
+ * block with information about the model in Unity Catalog:
112
+ */
113
+ modelInfos?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelModelInfoArgs>[]>;
114
+ }
@@ -0,0 +1,76 @@
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.getRegisteredModelOutput = exports.getRegisteredModel = 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
+ * This resource allows you to get information about [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html) in Databricks.
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 = databricks.getRegisteredModel({
20
+ * fullName: "main.default.my_model",
21
+ * });
22
+ * ```
23
+ *
24
+ * ## Related Resources
25
+ *
26
+ * The following resources are often used in the same context:
27
+ *
28
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
29
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
30
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
31
+ */
32
+ function getRegisteredModel(args, opts) {
33
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
34
+ return pulumi.runtime.invoke("databricks:index/getRegisteredModel:getRegisteredModel", {
35
+ "fullName": args.fullName,
36
+ "includeAliases": args.includeAliases,
37
+ "includeBrowse": args.includeBrowse,
38
+ "modelInfos": args.modelInfos,
39
+ }, opts);
40
+ }
41
+ exports.getRegisteredModel = getRegisteredModel;
42
+ /**
43
+ * > This resource can only be used with a workspace-level provider!
44
+ *
45
+ * This resource allows you to get information about [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html) in Databricks.
46
+ *
47
+ * ## Example Usage
48
+ *
49
+ * ```typescript
50
+ * import * as pulumi from "@pulumi/pulumi";
51
+ * import * as databricks from "@pulumi/databricks";
52
+ *
53
+ * const this = databricks.getRegisteredModel({
54
+ * fullName: "main.default.my_model",
55
+ * });
56
+ * ```
57
+ *
58
+ * ## Related Resources
59
+ *
60
+ * The following resources are often used in the same context:
61
+ *
62
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
63
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
64
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
65
+ */
66
+ function getRegisteredModelOutput(args, opts) {
67
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
68
+ return pulumi.runtime.invokeOutput("databricks:index/getRegisteredModel:getRegisteredModel", {
69
+ "fullName": args.fullName,
70
+ "includeAliases": args.includeAliases,
71
+ "includeBrowse": args.includeBrowse,
72
+ "modelInfos": args.modelInfos,
73
+ }, opts);
74
+ }
75
+ exports.getRegisteredModelOutput = getRegisteredModelOutput;
76
+ //# sourceMappingURL=getRegisteredModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getRegisteredModel.js","sourceRoot":"","sources":["../getRegisteredModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC;AA2CD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4DAQC"}
@@ -15,9 +15,9 @@ import * as outputs from "./types/output";
15
15
  * import * as databricks from "@pulumi/databricks";
16
16
  *
17
17
  * const all = databricks.getSqlWarehouses({});
18
- * const allGetSqlWarehouse = .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
18
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
19
19
  * id: __value,
20
- * }) }));
20
+ * }) })));
21
21
  * ```
22
22
  *
23
23
  * * Search for a specific SQL Warehouse by name:
@@ -228,9 +228,9 @@ export interface GetSqlWarehouseResult {
228
228
  * import * as databricks from "@pulumi/databricks";
229
229
  *
230
230
  * const all = databricks.getSqlWarehouses({});
231
- * const allGetSqlWarehouse = .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
231
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
232
232
  * id: __value,
233
- * }) }));
233
+ * }) })));
234
234
  * ```
235
235
  *
236
236
  * * Search for a specific SQL Warehouse by name:
@@ -19,9 +19,9 @@ const utilities = require("./utilities");
19
19
  * import * as databricks from "@pulumi/databricks";
20
20
  *
21
21
  * const all = databricks.getSqlWarehouses({});
22
- * const allGetSqlWarehouse = .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
22
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
23
23
  * id: __value,
24
- * }) }));
24
+ * }) })));
25
25
  * ```
26
26
  *
27
27
  * * Search for a specific SQL Warehouse by name:
@@ -87,9 +87,9 @@ exports.getSqlWarehouse = getSqlWarehouse;
87
87
  * import * as databricks from "@pulumi/databricks";
88
88
  *
89
89
  * const all = databricks.getSqlWarehouses({});
90
- * const allGetSqlWarehouse = .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
90
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
91
91
  * id: __value,
92
- * }) }));
92
+ * }) })));
93
93
  * ```
94
94
  *
95
95
  * * Search for a specific SQL Warehouse by name:
package/getViews.d.ts CHANGED
@@ -3,6 +3,42 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
4
4
  *
5
5
  * Retrieves a list of view full names in Unity Catalog, that were created by Pulumi or manually. Use databricks.getTables for retrieving a list of tables.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as databricks from "@pulumi/databricks";
14
+ *
15
+ * export = async () => {
16
+ * const things = await databricks.getViews({
17
+ * catalogName: "sandbox",
18
+ * schemaName: "things",
19
+ * });
20
+ * const thingsGrants: databricks.Grants[] = [];
21
+ * for (const range of things.ids.map((v, k) => ({key: k, value: v}))) {
22
+ * thingsGrants.push(new databricks.Grants(`things-${range.key}`, {
23
+ * table: range.value,
24
+ * grants: [{
25
+ * principal: "sensitive",
26
+ * privileges: [
27
+ * "SELECT",
28
+ * "MODIFY",
29
+ * ],
30
+ * }],
31
+ * }));
32
+ * }
33
+ * }
34
+ * ```
35
+ *
36
+ * ## Related Resources
37
+ *
38
+ * The following resources are used in the same context:
39
+ *
40
+ * * databricks.Schema to manage schemas within Unity Catalog.
41
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
6
42
  */
7
43
  export declare function getViews(args: GetViewsArgs, opts?: pulumi.InvokeOptions): Promise<GetViewsResult>;
8
44
  /**
@@ -41,6 +77,42 @@ export interface GetViewsResult {
41
77
  * > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
42
78
  *
43
79
  * Retrieves a list of view full names in Unity Catalog, that were created by Pulumi or manually. Use databricks.getTables for retrieving a list of tables.
80
+ *
81
+ * ## Example Usage
82
+ *
83
+ * Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
84
+ *
85
+ * ```typescript
86
+ * import * as pulumi from "@pulumi/pulumi";
87
+ * import * as databricks from "@pulumi/databricks";
88
+ *
89
+ * export = async () => {
90
+ * const things = await databricks.getViews({
91
+ * catalogName: "sandbox",
92
+ * schemaName: "things",
93
+ * });
94
+ * const thingsGrants: databricks.Grants[] = [];
95
+ * for (const range of things.ids.map((v, k) => ({key: k, value: v}))) {
96
+ * thingsGrants.push(new databricks.Grants(`things-${range.key}`, {
97
+ * table: range.value,
98
+ * grants: [{
99
+ * principal: "sensitive",
100
+ * privileges: [
101
+ * "SELECT",
102
+ * "MODIFY",
103
+ * ],
104
+ * }],
105
+ * }));
106
+ * }
107
+ * }
108
+ * ```
109
+ *
110
+ * ## Related Resources
111
+ *
112
+ * The following resources are used in the same context:
113
+ *
114
+ * * databricks.Schema to manage schemas within Unity Catalog.
115
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
44
116
  */
45
117
  export declare function getViewsOutput(args: GetViewsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetViewsResult>;
46
118
  /**
package/getViews.js CHANGED
@@ -9,6 +9,42 @@ const utilities = require("./utilities");
9
9
  * > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
10
10
  *
11
11
  * Retrieves a list of view full names in Unity Catalog, that were created by Pulumi or manually. Use databricks.getTables for retrieving a list of tables.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as databricks from "@pulumi/databricks";
20
+ *
21
+ * export = async () => {
22
+ * const things = await databricks.getViews({
23
+ * catalogName: "sandbox",
24
+ * schemaName: "things",
25
+ * });
26
+ * const thingsGrants: databricks.Grants[] = [];
27
+ * for (const range of things.ids.map((v, k) => ({key: k, value: v}))) {
28
+ * thingsGrants.push(new databricks.Grants(`things-${range.key}`, {
29
+ * table: range.value,
30
+ * grants: [{
31
+ * principal: "sensitive",
32
+ * privileges: [
33
+ * "SELECT",
34
+ * "MODIFY",
35
+ * ],
36
+ * }],
37
+ * }));
38
+ * }
39
+ * }
40
+ * ```
41
+ *
42
+ * ## Related Resources
43
+ *
44
+ * The following resources are used in the same context:
45
+ *
46
+ * * databricks.Schema to manage schemas within Unity Catalog.
47
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
12
48
  */
13
49
  function getViews(args, opts) {
14
50
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -23,6 +59,42 @@ exports.getViews = getViews;
23
59
  * > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
24
60
  *
25
61
  * Retrieves a list of view full names in Unity Catalog, that were created by Pulumi or manually. Use databricks.getTables for retrieving a list of tables.
62
+ *
63
+ * ## Example Usage
64
+ *
65
+ * Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
66
+ *
67
+ * ```typescript
68
+ * import * as pulumi from "@pulumi/pulumi";
69
+ * import * as databricks from "@pulumi/databricks";
70
+ *
71
+ * export = async () => {
72
+ * const things = await databricks.getViews({
73
+ * catalogName: "sandbox",
74
+ * schemaName: "things",
75
+ * });
76
+ * const thingsGrants: databricks.Grants[] = [];
77
+ * for (const range of things.ids.map((v, k) => ({key: k, value: v}))) {
78
+ * thingsGrants.push(new databricks.Grants(`things-${range.key}`, {
79
+ * table: range.value,
80
+ * grants: [{
81
+ * principal: "sensitive",
82
+ * privileges: [
83
+ * "SELECT",
84
+ * "MODIFY",
85
+ * ],
86
+ * }],
87
+ * }));
88
+ * }
89
+ * }
90
+ * ```
91
+ *
92
+ * ## Related Resources
93
+ *
94
+ * The following resources are used in the same context:
95
+ *
96
+ * * databricks.Schema to manage schemas within Unity Catalog.
97
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
26
98
  */
27
99
  function getViewsOutput(args, opts) {
28
100
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
package/getViews.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getViews.js","sourceRoot":"","sources":["../getViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAmCD;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
1
+ {"version":3,"file":"getViews.js","sourceRoot":"","sources":["../getViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAmCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
package/getVolume.d.ts CHANGED
@@ -4,6 +4,42 @@ import * as outputs from "./types/output";
4
4
  /**
5
5
  * Retrieves details about databricks.Volume that was created by Pulumi or manually.
6
6
  * A volume can be identified by its three-level (fully qualified) name (in the form of: `catalogName`.`schemaName`.`volumeName`) as input. This can be retrieved programmatically using databricks.getVolumes data source.
7
+ *
8
+ * ## Example Usage
9
+ *
10
+ * * Retrieve details of all volumes in in a _things_ databricks.Schema of a _sandbox_ databricks_catalog:
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as databricks from "@pulumi/databricks";
15
+ *
16
+ * const all = databricks.getVolumes({
17
+ * catalogName: "sandbox",
18
+ * schemaName: "things",
19
+ * });
20
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
21
+ * name: __value,
22
+ * }) })));
23
+ * ```
24
+ *
25
+ * * Search for a specific volume by its fully qualified name
26
+ *
27
+ * ```typescript
28
+ * import * as pulumi from "@pulumi/pulumi";
29
+ * import * as databricks from "@pulumi/databricks";
30
+ *
31
+ * const this = databricks.getVolume({
32
+ * name: "catalog.schema.volume",
33
+ * });
34
+ * ```
35
+ *
36
+ * ## Related Resources
37
+ *
38
+ * The following resources are used in the same context:
39
+ *
40
+ * * databricks.Volume to manage volumes within Unity Catalog.
41
+ * * databricks.Schema to manage schemas within Unity Catalog.
42
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
7
43
  */
8
44
  export declare function getVolume(args: GetVolumeArgs, opts?: pulumi.InvokeOptions): Promise<GetVolumeResult>;
9
45
  /**
@@ -43,6 +79,42 @@ export interface GetVolumeResult {
43
79
  /**
44
80
  * Retrieves details about databricks.Volume that was created by Pulumi or manually.
45
81
  * A volume can be identified by its three-level (fully qualified) name (in the form of: `catalogName`.`schemaName`.`volumeName`) as input. This can be retrieved programmatically using databricks.getVolumes data source.
82
+ *
83
+ * ## Example Usage
84
+ *
85
+ * * Retrieve details of all volumes in in a _things_ databricks.Schema of a _sandbox_ databricks_catalog:
86
+ *
87
+ * ```typescript
88
+ * import * as pulumi from "@pulumi/pulumi";
89
+ * import * as databricks from "@pulumi/databricks";
90
+ *
91
+ * const all = databricks.getVolumes({
92
+ * catalogName: "sandbox",
93
+ * schemaName: "things",
94
+ * });
95
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
96
+ * name: __value,
97
+ * }) })));
98
+ * ```
99
+ *
100
+ * * Search for a specific volume by its fully qualified name
101
+ *
102
+ * ```typescript
103
+ * import * as pulumi from "@pulumi/pulumi";
104
+ * import * as databricks from "@pulumi/databricks";
105
+ *
106
+ * const this = databricks.getVolume({
107
+ * name: "catalog.schema.volume",
108
+ * });
109
+ * ```
110
+ *
111
+ * ## Related Resources
112
+ *
113
+ * The following resources are used in the same context:
114
+ *
115
+ * * databricks.Volume to manage volumes within Unity Catalog.
116
+ * * databricks.Schema to manage schemas within Unity Catalog.
117
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
46
118
  */
47
119
  export declare function getVolumeOutput(args: GetVolumeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVolumeResult>;
48
120
  /**
package/getVolume.js CHANGED
@@ -8,6 +8,42 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * Retrieves details about databricks.Volume that was created by Pulumi or manually.
10
10
  * A volume can be identified by its three-level (fully qualified) name (in the form of: `catalogName`.`schemaName`.`volumeName`) as input. This can be retrieved programmatically using databricks.getVolumes data source.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * * Retrieve details of all volumes in in a _things_ databricks.Schema of a _sandbox_ databricks_catalog:
15
+ *
16
+ * ```typescript
17
+ * import * as pulumi from "@pulumi/pulumi";
18
+ * import * as databricks from "@pulumi/databricks";
19
+ *
20
+ * const all = databricks.getVolumes({
21
+ * catalogName: "sandbox",
22
+ * schemaName: "things",
23
+ * });
24
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
25
+ * name: __value,
26
+ * }) })));
27
+ * ```
28
+ *
29
+ * * Search for a specific volume by its fully qualified name
30
+ *
31
+ * ```typescript
32
+ * import * as pulumi from "@pulumi/pulumi";
33
+ * import * as databricks from "@pulumi/databricks";
34
+ *
35
+ * const this = databricks.getVolume({
36
+ * name: "catalog.schema.volume",
37
+ * });
38
+ * ```
39
+ *
40
+ * ## Related Resources
41
+ *
42
+ * The following resources are used in the same context:
43
+ *
44
+ * * databricks.Volume to manage volumes within Unity Catalog.
45
+ * * databricks.Schema to manage schemas within Unity Catalog.
46
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
11
47
  */
12
48
  function getVolume(args, opts) {
13
49
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -21,6 +57,42 @@ exports.getVolume = getVolume;
21
57
  /**
22
58
  * Retrieves details about databricks.Volume that was created by Pulumi or manually.
23
59
  * A volume can be identified by its three-level (fully qualified) name (in the form of: `catalogName`.`schemaName`.`volumeName`) as input. This can be retrieved programmatically using databricks.getVolumes data source.
60
+ *
61
+ * ## Example Usage
62
+ *
63
+ * * Retrieve details of all volumes in in a _things_ databricks.Schema of a _sandbox_ databricks_catalog:
64
+ *
65
+ * ```typescript
66
+ * import * as pulumi from "@pulumi/pulumi";
67
+ * import * as databricks from "@pulumi/databricks";
68
+ *
69
+ * const all = databricks.getVolumes({
70
+ * catalogName: "sandbox",
71
+ * schemaName: "things",
72
+ * });
73
+ * const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
74
+ * name: __value,
75
+ * }) })));
76
+ * ```
77
+ *
78
+ * * Search for a specific volume by its fully qualified name
79
+ *
80
+ * ```typescript
81
+ * import * as pulumi from "@pulumi/pulumi";
82
+ * import * as databricks from "@pulumi/databricks";
83
+ *
84
+ * const this = databricks.getVolume({
85
+ * name: "catalog.schema.volume",
86
+ * });
87
+ * ```
88
+ *
89
+ * ## Related Resources
90
+ *
91
+ * The following resources are used in the same context:
92
+ *
93
+ * * databricks.Volume to manage volumes within Unity Catalog.
94
+ * * databricks.Schema to manage schemas within Unity Catalog.
95
+ * * databricks.Catalog to manage catalogs within Unity Catalog.
24
96
  */
25
97
  function getVolumeOutput(args, opts) {
26
98
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
package/getVolume.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;GAGG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AAqCD;;;GAGG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC"}
1
+ {"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AAqCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC"}
package/index.d.ts CHANGED
@@ -151,9 +151,15 @@ export declare const getNotebookOutput: typeof import("./getNotebook").getNotebo
151
151
  export { GetNotebookPathsArgs, GetNotebookPathsResult, GetNotebookPathsOutputArgs } from "./getNotebookPaths";
152
152
  export declare const getNotebookPaths: typeof import("./getNotebookPaths").getNotebookPaths;
153
153
  export declare const getNotebookPathsOutput: typeof import("./getNotebookPaths").getNotebookPathsOutput;
154
+ export { GetNotificationDestinationsArgs, GetNotificationDestinationsResult, GetNotificationDestinationsOutputArgs } from "./getNotificationDestinations";
155
+ export declare const getNotificationDestinations: typeof import("./getNotificationDestinations").getNotificationDestinations;
156
+ export declare const getNotificationDestinationsOutput: typeof import("./getNotificationDestinations").getNotificationDestinationsOutput;
154
157
  export { GetPipelinesArgs, GetPipelinesResult, GetPipelinesOutputArgs } from "./getPipelines";
155
158
  export declare const getPipelines: typeof import("./getPipelines").getPipelines;
156
159
  export declare const getPipelinesOutput: typeof import("./getPipelines").getPipelinesOutput;
160
+ export { GetRegisteredModelArgs, GetRegisteredModelResult, GetRegisteredModelOutputArgs } from "./getRegisteredModel";
161
+ export declare const getRegisteredModel: typeof import("./getRegisteredModel").getRegisteredModel;
162
+ export declare const getRegisteredModelOutput: typeof import("./getRegisteredModel").getRegisteredModelOutput;
157
163
  export { GetSchemaArgs, GetSchemaResult, GetSchemaOutputArgs } from "./getSchema";
158
164
  export declare const getSchema: typeof import("./getSchema").getSchema;
159
165
  export declare const getSchemaOutput: typeof import("./getSchema").getSchemaOutput;
package/index.js CHANGED
@@ -3,10 +3,10 @@
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
5
  exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUserOutput = exports.getCurrentUser = 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.File = exports.ExternalLocation = exports.Entitlements = exports.EnhancedSecurityMonitoringWorkspaceSetting = exports.Directory = exports.DefaultNamespaceSetting = exports.DbfsFile = exports.Dashboard = exports.Connection = exports.ComplianceSecurityProfileWorkspaceSetting = exports.ClusterPolicy = exports.Cluster = exports.CatalogWorkspaceBinding = exports.Catalog = exports.Budget = exports.AutomaticClusterUpdateWorkspaceSetting = exports.ArtifactAllowlist = exports.AccessControlRuleSet = void 0;
6
- exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getPipelinesOutput = exports.getPipelines = exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = 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.getExternalLocationsOutput = exports.getExternalLocations = exports.getExternalLocationOutput = exports.getExternalLocation = void 0;
7
- 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 = 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 = void 0;
8
- 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 = exports.ServicePrincipal = exports.SecretScope = exports.SecretAcl = exports.Secret = exports.Schema = exports.RestrictWorkspaceAdminsSetting = exports.Repo = exports.RegisteredModel = exports.Recipient = 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 = void 0;
9
- exports.types = exports.config = void 0;
6
+ exports.getShareOutput = exports.getShare = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getRegisteredModelOutput = exports.getRegisteredModel = exports.getPipelinesOutput = exports.getPipelines = exports.getNotificationDestinationsOutput = exports.getNotificationDestinations = exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = 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.getExternalLocationsOutput = exports.getExternalLocations = exports.getExternalLocationOutput = exports.getExternalLocation = void 0;
7
+ 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 = 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 = void 0;
8
+ 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 = exports.ServicePrincipal = exports.SecretScope = exports.SecretAcl = exports.Secret = exports.Schema = exports.RestrictWorkspaceAdminsSetting = exports.Repo = exports.RegisteredModel = exports.Recipient = 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 = void 0;
9
+ exports.types = exports.config = exports.WorkspaceFile = exports.WorkspaceConf = exports.WorkspaceBinding = exports.Volume = void 0;
10
10
  const pulumi = require("@pulumi/pulumi");
11
11
  const utilities = require("./utilities");
12
12
  exports.AccessControlRuleSet = null;
@@ -144,9 +144,15 @@ utilities.lazyLoad(exports, ["getNotebook", "getNotebookOutput"], () => require(
144
144
  exports.getNotebookPaths = null;
145
145
  exports.getNotebookPathsOutput = null;
146
146
  utilities.lazyLoad(exports, ["getNotebookPaths", "getNotebookPathsOutput"], () => require("./getNotebookPaths"));
147
+ exports.getNotificationDestinations = null;
148
+ exports.getNotificationDestinationsOutput = null;
149
+ utilities.lazyLoad(exports, ["getNotificationDestinations", "getNotificationDestinationsOutput"], () => require("./getNotificationDestinations"));
147
150
  exports.getPipelines = null;
148
151
  exports.getPipelinesOutput = null;
149
152
  utilities.lazyLoad(exports, ["getPipelines", "getPipelinesOutput"], () => require("./getPipelines"));
153
+ exports.getRegisteredModel = null;
154
+ exports.getRegisteredModelOutput = null;
155
+ utilities.lazyLoad(exports, ["getRegisteredModel", "getRegisteredModelOutput"], () => require("./getRegisteredModel"));
150
156
  exports.getSchema = null;
151
157
  exports.getSchemaOutput = null;
152
158
  utilities.lazyLoad(exports, ["getSchema", "getSchemaOutput"], () => require("./getSchema"));