@pulumi/databricks 1.57.0-alpha.1735914673 → 1.57.0-alpha.1735924227

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 (92) hide show
  1. package/app.d.ts +187 -0
  2. package/app.js +106 -0
  3. package/app.js.map +1 -0
  4. package/cluster.d.ts +9 -0
  5. package/cluster.js +6 -0
  6. package/cluster.js.map +1 -1
  7. package/credential.d.ts +275 -0
  8. package/credential.js +183 -0
  9. package/credential.js.map +1 -0
  10. package/getApp.d.ts +95 -0
  11. package/getApp.js +78 -0
  12. package/getApp.js.map +1 -0
  13. package/getApps.d.ts +66 -0
  14. package/getApps.js +70 -0
  15. package/getApps.js.map +1 -0
  16. package/getAwsAssumeRolePolicy.d.ts +18 -0
  17. package/getAwsAssumeRolePolicy.js +2 -0
  18. package/getAwsAssumeRolePolicy.js.map +1 -1
  19. package/getAwsBucketPolicy.d.ts +18 -0
  20. package/getAwsBucketPolicy.js +2 -0
  21. package/getAwsBucketPolicy.js.map +1 -1
  22. package/getAwsCrossAccountPolicy.d.ts +9 -0
  23. package/getAwsCrossAccountPolicy.js +2 -0
  24. package/getAwsCrossAccountPolicy.js.map +1 -1
  25. package/getAwsUnityCatalogAssumeRolePolicy.d.ts +11 -2
  26. package/getAwsUnityCatalogAssumeRolePolicy.js +2 -0
  27. package/getAwsUnityCatalogAssumeRolePolicy.js.map +1 -1
  28. package/getAwsUnityCatalogPolicy.d.ts +9 -0
  29. package/getAwsUnityCatalogPolicy.js +2 -0
  30. package/getAwsUnityCatalogPolicy.js.map +1 -1
  31. package/getFunctions.d.ts +1 -1
  32. package/getJobs.d.ts +15 -0
  33. package/getJobs.js +8 -0
  34. package/getJobs.js.map +1 -1
  35. package/getMwsNetworkConnectivityConfig.d.ts +160 -0
  36. package/getMwsNetworkConnectivityConfig.js +86 -0
  37. package/getMwsNetworkConnectivityConfig.js.map +1 -0
  38. package/getMwsNetworkConnectivityConfigs.d.ts +115 -0
  39. package/getMwsNetworkConnectivityConfigs.js +98 -0
  40. package/getMwsNetworkConnectivityConfigs.js.map +1 -0
  41. package/getNotificationDestinations.d.ts +1 -10
  42. package/getNotificationDestinations.js +0 -2
  43. package/getNotificationDestinations.js.map +1 -1
  44. package/getRegisteredModel.d.ts +1 -1
  45. package/getRegisteredModelVersions.d.ts +98 -0
  46. package/getRegisteredModelVersions.js +74 -0
  47. package/getRegisteredModelVersions.js.map +1 -0
  48. package/getServingEndpoints.d.ts +116 -0
  49. package/getServingEndpoints.js +104 -0
  50. package/getServingEndpoints.js.map +1 -0
  51. package/grant.d.ts +26 -0
  52. package/grant.js +25 -0
  53. package/grant.js.map +1 -1
  54. package/grants.d.ts +29 -1
  55. package/grants.js +28 -1
  56. package/grants.js.map +1 -1
  57. package/index.d.ts +24 -0
  58. package/index.js +33 -5
  59. package/index.js.map +1 -1
  60. package/mwsCustomerManagedKeys.d.ts +11 -1
  61. package/mwsCustomerManagedKeys.js +11 -1
  62. package/mwsCustomerManagedKeys.js.map +1 -1
  63. package/mwsNccPrivateEndpointRule.d.ts +3 -3
  64. package/mwsNetworks.d.ts +11 -1
  65. package/mwsNetworks.js +11 -1
  66. package/mwsNetworks.js.map +1 -1
  67. package/mwsPrivateAccessSettings.d.ts +5 -1
  68. package/mwsPrivateAccessSettings.js +5 -1
  69. package/mwsPrivateAccessSettings.js.map +1 -1
  70. package/mwsStorageConfigurations.d.ts +11 -1
  71. package/mwsStorageConfigurations.js +11 -1
  72. package/mwsStorageConfigurations.js.map +1 -1
  73. package/mwsWorkspaces.d.ts +21 -1
  74. package/mwsWorkspaces.js +21 -1
  75. package/mwsWorkspaces.js.map +1 -1
  76. package/notificationDestination.d.ts +10 -0
  77. package/notificationDestination.js +10 -0
  78. package/notificationDestination.js.map +1 -1
  79. package/package.json +2 -2
  80. package/permissions.d.ts +36 -0
  81. package/permissions.js +34 -0
  82. package/permissions.js.map +1 -1
  83. package/query.d.ts +3 -3
  84. package/storageCredential.d.ts +3 -1
  85. package/storageCredential.js +3 -1
  86. package/storageCredential.js.map +1 -1
  87. package/types/input.d.ts +1037 -72
  88. package/types/output.d.ts +1100 -62
  89. package/workspaceBinding.d.ts +4 -4
  90. package/workspaceBinding.js +1 -1
  91. package/workspaceConf.d.ts +1 -1
  92. package/workspaceConf.js +1 -1
@@ -0,0 +1,160 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * > **Note** This data source can only be used with an account-level provider!
6
+ *
7
+ * Retrieves information about databricks.MwsNetworkConnectivityConfig in Databricks Account.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * Fetching information about a network connectivity configuration in Databricks Account
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as databricks from "@pulumi/databricks";
16
+ *
17
+ * const this = databricks.getMwsNetworkConnectivityConfig({
18
+ * name: "ncc",
19
+ * });
20
+ * export const config = _this;
21
+ * ```
22
+ *
23
+ * ## Related Resources
24
+ *
25
+ * The following resources are used in the same context:
26
+ *
27
+ * * databricks.getMwsNetworkConnectivityConfigs to get names of all network connectivity configurations.
28
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
29
+ */
30
+ export declare function getMwsNetworkConnectivityConfig(args: GetMwsNetworkConnectivityConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetMwsNetworkConnectivityConfigResult>;
31
+ /**
32
+ * A collection of arguments for invoking getMwsNetworkConnectivityConfig.
33
+ */
34
+ export interface GetMwsNetworkConnectivityConfigArgs {
35
+ /**
36
+ * The Databricks account ID associated with this network configuration.
37
+ */
38
+ accountId?: string;
39
+ /**
40
+ * Time in epoch milliseconds when this object was created.
41
+ */
42
+ creationTime?: number;
43
+ /**
44
+ * Array of egress configuration objects.
45
+ */
46
+ egressConfig?: inputs.GetMwsNetworkConnectivityConfigEgressConfig;
47
+ /**
48
+ * Name of the network connectivity configuration.
49
+ */
50
+ name: string;
51
+ /**
52
+ * The Databricks network connectivity configuration ID.
53
+ */
54
+ networkConnectivityConfigId?: string;
55
+ /**
56
+ * The region of the network connectivity configuration.
57
+ */
58
+ region?: string;
59
+ /**
60
+ * Time in epoch milliseconds when the network was updated.
61
+ */
62
+ updatedTime?: number;
63
+ }
64
+ /**
65
+ * A collection of values returned by getMwsNetworkConnectivityConfig.
66
+ */
67
+ export interface GetMwsNetworkConnectivityConfigResult {
68
+ /**
69
+ * The Databricks account ID associated with this network configuration.
70
+ */
71
+ readonly accountId: string;
72
+ /**
73
+ * Time in epoch milliseconds when this object was created.
74
+ */
75
+ readonly creationTime: number;
76
+ /**
77
+ * Array of egress configuration objects.
78
+ */
79
+ readonly egressConfig: outputs.GetMwsNetworkConnectivityConfigEgressConfig;
80
+ /**
81
+ * The provider-assigned unique ID for this managed resource.
82
+ */
83
+ readonly id: string;
84
+ /**
85
+ * The name of the network connectivity configuration.
86
+ */
87
+ readonly name: string;
88
+ /**
89
+ * The Databricks network connectivity configuration ID.
90
+ */
91
+ readonly networkConnectivityConfigId: string;
92
+ /**
93
+ * The region of the network connectivity configuration.
94
+ */
95
+ readonly region: string;
96
+ /**
97
+ * Time in epoch milliseconds when the network was updated.
98
+ */
99
+ readonly updatedTime: number;
100
+ }
101
+ /**
102
+ * > **Note** This data source can only be used with an account-level provider!
103
+ *
104
+ * Retrieves information about databricks.MwsNetworkConnectivityConfig in Databricks Account.
105
+ *
106
+ * ## Example Usage
107
+ *
108
+ * Fetching information about a network connectivity configuration in Databricks Account
109
+ *
110
+ * ```typescript
111
+ * import * as pulumi from "@pulumi/pulumi";
112
+ * import * as databricks from "@pulumi/databricks";
113
+ *
114
+ * const this = databricks.getMwsNetworkConnectivityConfig({
115
+ * name: "ncc",
116
+ * });
117
+ * export const config = _this;
118
+ * ```
119
+ *
120
+ * ## Related Resources
121
+ *
122
+ * The following resources are used in the same context:
123
+ *
124
+ * * databricks.getMwsNetworkConnectivityConfigs to get names of all network connectivity configurations.
125
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
126
+ */
127
+ export declare function getMwsNetworkConnectivityConfigOutput(args: GetMwsNetworkConnectivityConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMwsNetworkConnectivityConfigResult>;
128
+ /**
129
+ * A collection of arguments for invoking getMwsNetworkConnectivityConfig.
130
+ */
131
+ export interface GetMwsNetworkConnectivityConfigOutputArgs {
132
+ /**
133
+ * The Databricks account ID associated with this network configuration.
134
+ */
135
+ accountId?: pulumi.Input<string>;
136
+ /**
137
+ * Time in epoch milliseconds when this object was created.
138
+ */
139
+ creationTime?: pulumi.Input<number>;
140
+ /**
141
+ * Array of egress configuration objects.
142
+ */
143
+ egressConfig?: pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigArgs>;
144
+ /**
145
+ * Name of the network connectivity configuration.
146
+ */
147
+ name: pulumi.Input<string>;
148
+ /**
149
+ * The Databricks network connectivity configuration ID.
150
+ */
151
+ networkConnectivityConfigId?: pulumi.Input<string>;
152
+ /**
153
+ * The region of the network connectivity configuration.
154
+ */
155
+ region?: pulumi.Input<string>;
156
+ /**
157
+ * Time in epoch milliseconds when the network was updated.
158
+ */
159
+ updatedTime?: pulumi.Input<number>;
160
+ }
@@ -0,0 +1,86 @@
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.getMwsNetworkConnectivityConfigOutput = exports.getMwsNetworkConnectivityConfig = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > **Note** This data source can only be used with an account-level provider!
10
+ *
11
+ * Retrieves information about databricks.MwsNetworkConnectivityConfig in Databricks Account.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * Fetching information about a network connectivity configuration in Databricks Account
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as databricks from "@pulumi/databricks";
20
+ *
21
+ * const this = databricks.getMwsNetworkConnectivityConfig({
22
+ * name: "ncc",
23
+ * });
24
+ * export const config = _this;
25
+ * ```
26
+ *
27
+ * ## Related Resources
28
+ *
29
+ * The following resources are used in the same context:
30
+ *
31
+ * * databricks.getMwsNetworkConnectivityConfigs to get names of all network connectivity configurations.
32
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
33
+ */
34
+ function getMwsNetworkConnectivityConfig(args, opts) {
35
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
36
+ return pulumi.runtime.invoke("databricks:index/getMwsNetworkConnectivityConfig:getMwsNetworkConnectivityConfig", {
37
+ "accountId": args.accountId,
38
+ "creationTime": args.creationTime,
39
+ "egressConfig": args.egressConfig,
40
+ "name": args.name,
41
+ "networkConnectivityConfigId": args.networkConnectivityConfigId,
42
+ "region": args.region,
43
+ "updatedTime": args.updatedTime,
44
+ }, opts);
45
+ }
46
+ exports.getMwsNetworkConnectivityConfig = getMwsNetworkConnectivityConfig;
47
+ /**
48
+ * > **Note** This data source can only be used with an account-level provider!
49
+ *
50
+ * Retrieves information about databricks.MwsNetworkConnectivityConfig in Databricks Account.
51
+ *
52
+ * ## Example Usage
53
+ *
54
+ * Fetching information about a network connectivity configuration in Databricks Account
55
+ *
56
+ * ```typescript
57
+ * import * as pulumi from "@pulumi/pulumi";
58
+ * import * as databricks from "@pulumi/databricks";
59
+ *
60
+ * const this = databricks.getMwsNetworkConnectivityConfig({
61
+ * name: "ncc",
62
+ * });
63
+ * export const config = _this;
64
+ * ```
65
+ *
66
+ * ## Related Resources
67
+ *
68
+ * The following resources are used in the same context:
69
+ *
70
+ * * databricks.getMwsNetworkConnectivityConfigs to get names of all network connectivity configurations.
71
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
72
+ */
73
+ function getMwsNetworkConnectivityConfigOutput(args, opts) {
74
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
75
+ return pulumi.runtime.invokeOutput("databricks:index/getMwsNetworkConnectivityConfig:getMwsNetworkConnectivityConfig", {
76
+ "accountId": args.accountId,
77
+ "creationTime": args.creationTime,
78
+ "egressConfig": args.egressConfig,
79
+ "name": args.name,
80
+ "networkConnectivityConfigId": args.networkConnectivityConfigId,
81
+ "region": args.region,
82
+ "updatedTime": args.updatedTime,
83
+ }, opts);
84
+ }
85
+ exports.getMwsNetworkConnectivityConfigOutput = getMwsNetworkConnectivityConfigOutput;
86
+ //# sourceMappingURL=getMwsNetworkConnectivityConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getMwsNetworkConnectivityConfig.js","sourceRoot":"","sources":["../getMwsNetworkConnectivityConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kFAAkF,EAAE;QAC7G,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0EAWC;AAyED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,qCAAqC,CAAC,IAA+C,EAAE,IAAiC;IACpI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kFAAkF,EAAE;QACnH,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,sFAWC"}
@@ -0,0 +1,115 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * > **Note** This data source can only be used with an account-level provider!
4
+ *
5
+ * Lists all databricks.MwsNetworkConnectivityConfig in Databricks Account.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * List all network connectivity configurations in Databricks Account
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as databricks from "@pulumi/databricks";
14
+ *
15
+ * const this = databricks.getMwsNetworkConnectivityConfigs({});
16
+ * export const all = _this;
17
+ * ```
18
+ *
19
+ * List network connectivity configurations from a specific region in Databricks Account
20
+ *
21
+ * ```typescript
22
+ * import * as pulumi from "@pulumi/pulumi";
23
+ * import * as databricks from "@pulumi/databricks";
24
+ *
25
+ * const this = databricks.getMwsNetworkConnectivityConfigs({
26
+ * region: "us-east-1",
27
+ * });
28
+ * export const filtered = _this;
29
+ * ```
30
+ *
31
+ * ## Related Resources
32
+ *
33
+ * The following resources are used in the same context:
34
+ *
35
+ * * databricks.MwsNetworkConnectivityConfig to get information about a single network connectivity configuration.
36
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
37
+ */
38
+ export declare function getMwsNetworkConnectivityConfigs(args?: GetMwsNetworkConnectivityConfigsArgs, opts?: pulumi.InvokeOptions): Promise<GetMwsNetworkConnectivityConfigsResult>;
39
+ /**
40
+ * A collection of arguments for invoking getMwsNetworkConnectivityConfigs.
41
+ */
42
+ export interface GetMwsNetworkConnectivityConfigsArgs {
43
+ /**
44
+ * List of names of databricks_mws_network_connectivity_config
45
+ */
46
+ names?: string[];
47
+ /**
48
+ * Filter network connectivity configurations by region.
49
+ */
50
+ region?: string;
51
+ }
52
+ /**
53
+ * A collection of values returned by getMwsNetworkConnectivityConfigs.
54
+ */
55
+ export interface GetMwsNetworkConnectivityConfigsResult {
56
+ /**
57
+ * The provider-assigned unique ID for this managed resource.
58
+ */
59
+ readonly id: string;
60
+ /**
61
+ * List of names of databricks_mws_network_connectivity_config
62
+ */
63
+ readonly names: string[];
64
+ readonly region?: string;
65
+ }
66
+ /**
67
+ * > **Note** This data source can only be used with an account-level provider!
68
+ *
69
+ * Lists all databricks.MwsNetworkConnectivityConfig in Databricks Account.
70
+ *
71
+ * ## Example Usage
72
+ *
73
+ * List all network connectivity configurations in Databricks Account
74
+ *
75
+ * ```typescript
76
+ * import * as pulumi from "@pulumi/pulumi";
77
+ * import * as databricks from "@pulumi/databricks";
78
+ *
79
+ * const this = databricks.getMwsNetworkConnectivityConfigs({});
80
+ * export const all = _this;
81
+ * ```
82
+ *
83
+ * List network connectivity configurations from a specific region in Databricks Account
84
+ *
85
+ * ```typescript
86
+ * import * as pulumi from "@pulumi/pulumi";
87
+ * import * as databricks from "@pulumi/databricks";
88
+ *
89
+ * const this = databricks.getMwsNetworkConnectivityConfigs({
90
+ * region: "us-east-1",
91
+ * });
92
+ * export const filtered = _this;
93
+ * ```
94
+ *
95
+ * ## Related Resources
96
+ *
97
+ * The following resources are used in the same context:
98
+ *
99
+ * * databricks.MwsNetworkConnectivityConfig to get information about a single network connectivity configuration.
100
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
101
+ */
102
+ export declare function getMwsNetworkConnectivityConfigsOutput(args?: GetMwsNetworkConnectivityConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMwsNetworkConnectivityConfigsResult>;
103
+ /**
104
+ * A collection of arguments for invoking getMwsNetworkConnectivityConfigs.
105
+ */
106
+ export interface GetMwsNetworkConnectivityConfigsOutputArgs {
107
+ /**
108
+ * List of names of databricks_mws_network_connectivity_config
109
+ */
110
+ names?: pulumi.Input<pulumi.Input<string>[]>;
111
+ /**
112
+ * Filter network connectivity configurations by region.
113
+ */
114
+ region?: pulumi.Input<string>;
115
+ }
@@ -0,0 +1,98 @@
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.getMwsNetworkConnectivityConfigsOutput = exports.getMwsNetworkConnectivityConfigs = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > **Note** This data source can only be used with an account-level provider!
10
+ *
11
+ * Lists all databricks.MwsNetworkConnectivityConfig in Databricks Account.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * List all network connectivity configurations in Databricks Account
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as databricks from "@pulumi/databricks";
20
+ *
21
+ * const this = databricks.getMwsNetworkConnectivityConfigs({});
22
+ * export const all = _this;
23
+ * ```
24
+ *
25
+ * List network connectivity configurations from a specific region in Databricks Account
26
+ *
27
+ * ```typescript
28
+ * import * as pulumi from "@pulumi/pulumi";
29
+ * import * as databricks from "@pulumi/databricks";
30
+ *
31
+ * const this = databricks.getMwsNetworkConnectivityConfigs({
32
+ * region: "us-east-1",
33
+ * });
34
+ * export const filtered = _this;
35
+ * ```
36
+ *
37
+ * ## Related Resources
38
+ *
39
+ * The following resources are used in the same context:
40
+ *
41
+ * * databricks.MwsNetworkConnectivityConfig to get information about a single network connectivity configuration.
42
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
43
+ */
44
+ function getMwsNetworkConnectivityConfigs(args, opts) {
45
+ args = args || {};
46
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
47
+ return pulumi.runtime.invoke("databricks:index/getMwsNetworkConnectivityConfigs:getMwsNetworkConnectivityConfigs", {
48
+ "names": args.names,
49
+ "region": args.region,
50
+ }, opts);
51
+ }
52
+ exports.getMwsNetworkConnectivityConfigs = getMwsNetworkConnectivityConfigs;
53
+ /**
54
+ * > **Note** This data source can only be used with an account-level provider!
55
+ *
56
+ * Lists all databricks.MwsNetworkConnectivityConfig in Databricks Account.
57
+ *
58
+ * ## Example Usage
59
+ *
60
+ * List all network connectivity configurations in Databricks Account
61
+ *
62
+ * ```typescript
63
+ * import * as pulumi from "@pulumi/pulumi";
64
+ * import * as databricks from "@pulumi/databricks";
65
+ *
66
+ * const this = databricks.getMwsNetworkConnectivityConfigs({});
67
+ * export const all = _this;
68
+ * ```
69
+ *
70
+ * List network connectivity configurations from a specific region in Databricks Account
71
+ *
72
+ * ```typescript
73
+ * import * as pulumi from "@pulumi/pulumi";
74
+ * import * as databricks from "@pulumi/databricks";
75
+ *
76
+ * const this = databricks.getMwsNetworkConnectivityConfigs({
77
+ * region: "us-east-1",
78
+ * });
79
+ * export const filtered = _this;
80
+ * ```
81
+ *
82
+ * ## Related Resources
83
+ *
84
+ * The following resources are used in the same context:
85
+ *
86
+ * * databricks.MwsNetworkConnectivityConfig to get information about a single network connectivity configuration.
87
+ * * databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.
88
+ */
89
+ function getMwsNetworkConnectivityConfigsOutput(args, opts) {
90
+ args = args || {};
91
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
92
+ return pulumi.runtime.invokeOutput("databricks:index/getMwsNetworkConnectivityConfigs:getMwsNetworkConnectivityConfigs", {
93
+ "names": args.names,
94
+ "region": args.region,
95
+ }, opts);
96
+ }
97
+ exports.getMwsNetworkConnectivityConfigsOutput = getMwsNetworkConnectivityConfigsOutput;
98
+ //# sourceMappingURL=getMwsNetworkConnectivityConfigs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getMwsNetworkConnectivityConfigs.js","sourceRoot":"","sources":["../getMwsNetworkConnectivityConfigs.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,gCAAgC,CAAC,IAA2C,EAAE,IAA2B;IACrH,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oFAAoF,EAAE;QAC/G,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4EAOC;AA8BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,sCAAsC,CAAC,IAAiD,EAAE,IAAiC;IACvI,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oFAAoF,EAAE;QACrH,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wFAOC"}
@@ -1,5 +1,4 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
- import * as inputs from "./types/input";
3
2
  import * as outputs from "./types/output";
4
3
  /**
5
4
  * This data source allows you to retrieve information about [Notification Destinations](https://docs.databricks.com/api/workspace/notificationdestinations). Notification Destinations are used to send notifications for query alerts and jobs to external systems such as email, Slack, Microsoft Teams, PagerDuty, or generic webhooks.
@@ -44,10 +43,6 @@ export interface GetNotificationDestinationsArgs {
44
43
  * A **case-insensitive** substring to filter Notification Destinations by their display name.
45
44
  */
46
45
  displayNameContains?: string;
47
- /**
48
- * A list of Notification Destinations matching the specified criteria. Each element contains the following attributes:
49
- */
50
- notificationDestinations?: inputs.GetNotificationDestinationsNotificationDestination[];
51
46
  /**
52
47
  * The type of the Notification Destination to filter by. Valid values are:
53
48
  * * `EMAIL` - Filters Notification Destinations of type Email.
@@ -70,7 +65,7 @@ export interface GetNotificationDestinationsResult {
70
65
  /**
71
66
  * A list of Notification Destinations matching the specified criteria. Each element contains the following attributes:
72
67
  */
73
- readonly notificationDestinations?: outputs.GetNotificationDestinationsNotificationDestination[];
68
+ readonly notificationDestinations: outputs.GetNotificationDestinationsNotificationDestination[];
74
69
  readonly type?: string;
75
70
  }
76
71
  /**
@@ -116,10 +111,6 @@ export interface GetNotificationDestinationsOutputArgs {
116
111
  * A **case-insensitive** substring to filter Notification Destinations by their display name.
117
112
  */
118
113
  displayNameContains?: pulumi.Input<string>;
119
- /**
120
- * A list of Notification Destinations matching the specified criteria. Each element contains the following attributes:
121
- */
122
- notificationDestinations?: pulumi.Input<pulumi.Input<inputs.GetNotificationDestinationsNotificationDestinationArgs>[]>;
123
114
  /**
124
115
  * The type of the Notification Destination to filter by. Valid values are:
125
116
  * * `EMAIL` - Filters Notification Destinations of type Email.
@@ -44,7 +44,6 @@ function getNotificationDestinations(args, opts) {
44
44
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
45
  return pulumi.runtime.invoke("databricks:index/getNotificationDestinations:getNotificationDestinations", {
46
46
  "displayNameContains": args.displayNameContains,
47
- "notificationDestinations": args.notificationDestinations,
48
47
  "type": args.type,
49
48
  }, opts);
50
49
  }
@@ -88,7 +87,6 @@ function getNotificationDestinationsOutput(args, opts) {
88
87
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
89
88
  return pulumi.runtime.invokeOutput("databricks:index/getNotificationDestinations:getNotificationDestinations", {
90
89
  "displayNameContains": args.displayNameContains,
91
- "notificationDestinations": args.notificationDestinations,
92
90
  "type": args.type,
93
91
  }, opts);
94
92
  }
@@ -1 +1 @@
1
- {"version":3,"file":"getNotificationDestinations.js","sourceRoot":"","sources":["../getNotificationDestinations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAA2B;IAC3G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0EAA0E,EAAE;QACrG,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kEAQC;AAwCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,iCAAiC,CAAC,IAA4C,EAAE,IAAiC;IAC7H,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0EAA0E,EAAE;QAC3G,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8EAQC"}
1
+ {"version":3,"file":"getNotificationDestinations.js","sourceRoot":"","sources":["../getNotificationDestinations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAA2B;IAC3G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0EAA0E,EAAE;QACrG,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kEAOC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,iCAAiC,CAAC,IAA4C,EAAE,IAAiC;IAC7H,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0EAA0E,EAAE;QAC3G,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8EAOC"}
@@ -64,7 +64,7 @@ export interface GetRegisteredModelResult {
64
64
  /**
65
65
  * block with information about the model in Unity Catalog:
66
66
  */
67
- readonly modelInfos?: outputs.GetRegisteredModelModelInfo[];
67
+ readonly modelInfos: outputs.GetRegisteredModelModelInfo[];
68
68
  }
69
69
  /**
70
70
  * > This resource can only be used with a workspace-level provider!
@@ -0,0 +1,98 @@
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 versions of [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html).
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.getRegisteredModelVersions({
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 data source to retrieve information about a model within Unity Catalog.
25
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
26
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
27
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
28
+ */
29
+ export declare function getRegisteredModelVersions(args: GetRegisteredModelVersionsArgs, opts?: pulumi.InvokeOptions): Promise<GetRegisteredModelVersionsResult>;
30
+ /**
31
+ * A collection of arguments for invoking getRegisteredModelVersions.
32
+ */
33
+ export interface GetRegisteredModelVersionsArgs {
34
+ /**
35
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
36
+ */
37
+ fullName: string;
38
+ /**
39
+ * list of objects describing the model versions. Each object consists of following attributes:
40
+ */
41
+ modelVersions?: inputs.GetRegisteredModelVersionsModelVersion[];
42
+ }
43
+ /**
44
+ * A collection of values returned by getRegisteredModelVersions.
45
+ */
46
+ export interface GetRegisteredModelVersionsResult {
47
+ /**
48
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
49
+ */
50
+ readonly fullName: string;
51
+ /**
52
+ * The provider-assigned unique ID for this managed resource.
53
+ */
54
+ readonly id: string;
55
+ /**
56
+ * list of objects describing the model versions. Each object consists of following attributes:
57
+ */
58
+ readonly modelVersions: outputs.GetRegisteredModelVersionsModelVersion[];
59
+ }
60
+ /**
61
+ * > This resource can only be used with a workspace-level provider!
62
+ *
63
+ * This resource allows you to get information about versions of [Model in Unity Catalog](https://docs.databricks.com/en/mlflow/models-in-uc.html).
64
+ *
65
+ * ## Example Usage
66
+ *
67
+ * ```typescript
68
+ * import * as pulumi from "@pulumi/pulumi";
69
+ * import * as databricks from "@pulumi/databricks";
70
+ *
71
+ * const this = databricks.getRegisteredModelVersions({
72
+ * fullName: "main.default.my_model",
73
+ * });
74
+ * ```
75
+ *
76
+ * ## Related Resources
77
+ *
78
+ * The following resources are often used in the same context:
79
+ *
80
+ * * databricks.RegisteredModel data source to retrieve information about a model within Unity Catalog.
81
+ * * databricks.RegisteredModel resource to manage models within Unity Catalog.
82
+ * * databricks.ModelServing to serve this model on a Databricks serving endpoint.
83
+ * * databricks.MlflowExperiment to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
84
+ */
85
+ export declare function getRegisteredModelVersionsOutput(args: GetRegisteredModelVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRegisteredModelVersionsResult>;
86
+ /**
87
+ * A collection of arguments for invoking getRegisteredModelVersions.
88
+ */
89
+ export interface GetRegisteredModelVersionsOutputArgs {
90
+ /**
91
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
92
+ */
93
+ fullName: pulumi.Input<string>;
94
+ /**
95
+ * list of objects describing the model versions. Each object consists of following attributes:
96
+ */
97
+ modelVersions?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionArgs>[]>;
98
+ }