@pulumi/databricks 1.12.0-alpha.1683609757 → 1.12.0-alpha.1683648237

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.
@@ -60,9 +60,13 @@ export declare class ClusterPolicy extends pulumi.CustomResource {
60
60
  */
61
61
  static isInstance(obj: any): obj is ClusterPolicy;
62
62
  /**
63
- * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition).
63
+ * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition). Cannot be used with `policyFamilyId`
64
64
  */
65
- readonly definition: pulumi.Output<string>;
65
+ readonly definition: pulumi.Output<string | undefined>;
66
+ /**
67
+ * Additional human-readable description of the cluster policy.
68
+ */
69
+ readonly description: pulumi.Output<string | undefined>;
66
70
  /**
67
71
  * Maximum number of clusters allowed per user. When omitted, there is no limit. If specified, value must be greater than zero.
68
72
  */
@@ -71,6 +75,14 @@ export declare class ClusterPolicy extends pulumi.CustomResource {
71
75
  * Cluster policy name. This must be unique. Length must be between 1 and 100 characters.
72
76
  */
73
77
  readonly name: pulumi.Output<string>;
78
+ /**
79
+ * Policy definition JSON document expressed in Databricks Policy Definition Language. The JSON document must be passed as a string and cannot be embedded in the requests. You can use this to customize the policy definition inherited from the policy family. Policy rules specified here are merged into the inherited policy definition.
80
+ */
81
+ readonly policyFamilyDefinitionOverrides: pulumi.Output<string | undefined>;
82
+ /**
83
+ * ID of the policy family. The cluster policy's policy definition inherits the policy family's policy definition. Cannot be used with `definition`. Use `policyFamilyDefinitionOverrides` instead to customize the policy definition.
84
+ */
85
+ readonly policyFamilyId: pulumi.Output<string | undefined>;
74
86
  /**
75
87
  * Canonical unique identifier for the cluster policy.
76
88
  */
@@ -82,16 +94,20 @@ export declare class ClusterPolicy extends pulumi.CustomResource {
82
94
  * @param args The arguments to use to populate this resource's properties.
83
95
  * @param opts A bag of options that control this resource's behavior.
84
96
  */
85
- constructor(name: string, args: ClusterPolicyArgs, opts?: pulumi.CustomResourceOptions);
97
+ constructor(name: string, args?: ClusterPolicyArgs, opts?: pulumi.CustomResourceOptions);
86
98
  }
87
99
  /**
88
100
  * Input properties used for looking up and filtering ClusterPolicy resources.
89
101
  */
90
102
  export interface ClusterPolicyState {
91
103
  /**
92
- * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition).
104
+ * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition). Cannot be used with `policyFamilyId`
93
105
  */
94
106
  definition?: pulumi.Input<string>;
107
+ /**
108
+ * Additional human-readable description of the cluster policy.
109
+ */
110
+ description?: pulumi.Input<string>;
95
111
  /**
96
112
  * Maximum number of clusters allowed per user. When omitted, there is no limit. If specified, value must be greater than zero.
97
113
  */
@@ -100,6 +116,14 @@ export interface ClusterPolicyState {
100
116
  * Cluster policy name. This must be unique. Length must be between 1 and 100 characters.
101
117
  */
102
118
  name?: pulumi.Input<string>;
119
+ /**
120
+ * Policy definition JSON document expressed in Databricks Policy Definition Language. The JSON document must be passed as a string and cannot be embedded in the requests. You can use this to customize the policy definition inherited from the policy family. Policy rules specified here are merged into the inherited policy definition.
121
+ */
122
+ policyFamilyDefinitionOverrides?: pulumi.Input<string>;
123
+ /**
124
+ * ID of the policy family. The cluster policy's policy definition inherits the policy family's policy definition. Cannot be used with `definition`. Use `policyFamilyDefinitionOverrides` instead to customize the policy definition.
125
+ */
126
+ policyFamilyId?: pulumi.Input<string>;
103
127
  /**
104
128
  * Canonical unique identifier for the cluster policy.
105
129
  */
@@ -110,9 +134,13 @@ export interface ClusterPolicyState {
110
134
  */
111
135
  export interface ClusterPolicyArgs {
112
136
  /**
113
- * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition).
137
+ * Policy definition: JSON document expressed in [Databricks Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policies.html#cluster-policy-definition). Cannot be used with `policyFamilyId`
138
+ */
139
+ definition?: pulumi.Input<string>;
140
+ /**
141
+ * Additional human-readable description of the cluster policy.
114
142
  */
115
- definition: pulumi.Input<string>;
143
+ description?: pulumi.Input<string>;
116
144
  /**
117
145
  * Maximum number of clusters allowed per user. When omitted, there is no limit. If specified, value must be greater than zero.
118
146
  */
@@ -121,4 +149,12 @@ export interface ClusterPolicyArgs {
121
149
  * Cluster policy name. This must be unique. Length must be between 1 and 100 characters.
122
150
  */
123
151
  name?: pulumi.Input<string>;
152
+ /**
153
+ * Policy definition JSON document expressed in Databricks Policy Definition Language. The JSON document must be passed as a string and cannot be embedded in the requests. You can use this to customize the policy definition inherited from the policy family. Policy rules specified here are merged into the inherited policy definition.
154
+ */
155
+ policyFamilyDefinitionOverrides?: pulumi.Input<string>;
156
+ /**
157
+ * ID of the policy family. The cluster policy's policy definition inherits the policy family's policy definition. Cannot be used with `definition`. Use `policyFamilyDefinitionOverrides` instead to customize the policy definition.
158
+ */
159
+ policyFamilyId?: pulumi.Input<string>;
124
160
  }
package/clusterPolicy.js CHANGED
@@ -78,18 +78,21 @@ class ClusterPolicy extends pulumi.CustomResource {
78
78
  if (opts.id) {
79
79
  const state = argsOrState;
80
80
  resourceInputs["definition"] = state ? state.definition : undefined;
81
+ resourceInputs["description"] = state ? state.description : undefined;
81
82
  resourceInputs["maxClustersPerUser"] = state ? state.maxClustersPerUser : undefined;
82
83
  resourceInputs["name"] = state ? state.name : undefined;
84
+ resourceInputs["policyFamilyDefinitionOverrides"] = state ? state.policyFamilyDefinitionOverrides : undefined;
85
+ resourceInputs["policyFamilyId"] = state ? state.policyFamilyId : undefined;
83
86
  resourceInputs["policyId"] = state ? state.policyId : undefined;
84
87
  }
85
88
  else {
86
89
  const args = argsOrState;
87
- if ((!args || args.definition === undefined) && !opts.urn) {
88
- throw new Error("Missing required property 'definition'");
89
- }
90
90
  resourceInputs["definition"] = args ? args.definition : undefined;
91
+ resourceInputs["description"] = args ? args.description : undefined;
91
92
  resourceInputs["maxClustersPerUser"] = args ? args.maxClustersPerUser : undefined;
92
93
  resourceInputs["name"] = args ? args.name : undefined;
94
+ resourceInputs["policyFamilyDefinitionOverrides"] = args ? args.policyFamilyDefinitionOverrides : undefined;
95
+ resourceInputs["policyFamilyId"] = args ? args.policyFamilyId : undefined;
93
96
  resourceInputs["policyId"] = undefined /*out*/;
94
97
  }
95
98
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"clusterPolicy.js","sourceRoot":"","sources":["../clusterPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AA1EL,sCA2EC;AA7DG,gBAAgB;AACO,0BAAY,GAAG,8CAA8C,CAAC"}
1
+ {"version":3,"file":"clusterPolicy.js","sourceRoot":"","sources":["../clusterPolicy.ts"],"names":[],"mappings":"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"}
@@ -8,7 +8,7 @@ import * as pulumi from "@pulumi/pulumi";
8
8
  *
9
9
  * ## Example Usage
10
10
  *
11
- * Listing all workspaces in
11
+ * Listing all credentials in
12
12
  *
13
13
  * ```typescript
14
14
  * import * as pulumi from "@pulumi/pulumi";
@@ -64,7 +64,7 @@ export interface GetMwsCredentialsResult {
64
64
  *
65
65
  * ## Example Usage
66
66
  *
67
- * Listing all workspaces in
67
+ * Listing all credentials in
68
68
  *
69
69
  * ```typescript
70
70
  * import * as pulumi from "@pulumi/pulumi";
@@ -14,7 +14,7 @@ const utilities = require("./utilities");
14
14
  *
15
15
  * ## Example Usage
16
16
  *
17
- * Listing all workspaces in
17
+ * Listing all credentials in
18
18
  *
19
19
  * ```typescript
20
20
  * import * as pulumi from "@pulumi/pulumi";
@@ -51,7 +51,7 @@ exports.getMwsCredentials = getMwsCredentials;
51
51
  *
52
52
  * ## Example Usage
53
53
  *
54
- * Listing all workspaces in
54
+ * Listing all credentials in
55
55
  *
56
56
  * ```typescript
57
57
  * import * as pulumi from "@pulumi/pulumi";
package/getNodeType.d.ts CHANGED
@@ -53,6 +53,9 @@ export interface GetNodeTypeArgs {
53
53
  * * `GPU Accelerated` (AWS, Azure)
54
54
  */
55
55
  category?: string;
56
+ /**
57
+ * if we should limit the search only to [AWS fleet instance types](https://docs.databricks.com/compute/aws-fleet-instances.html). Default to *false*.
58
+ */
56
59
  fleet?: boolean;
57
60
  /**
58
61
  * Number of gigabytes per core available on instance. Conflicts with `minMemoryGb`. Defaults to *0*.
@@ -179,6 +182,9 @@ export interface GetNodeTypeOutputArgs {
179
182
  * * `GPU Accelerated` (AWS, Azure)
180
183
  */
181
184
  category?: pulumi.Input<string>;
185
+ /**
186
+ * if we should limit the search only to [AWS fleet instance types](https://docs.databricks.com/compute/aws-fleet-instances.html). Default to *false*.
187
+ */
182
188
  fleet?: pulumi.Input<boolean>;
183
189
  /**
184
190
  * Number of gigabytes per core available on instance. Conflicts with `minMemoryGb`. Defaults to *0*.
@@ -1 +1 @@
1
- {"version":3,"file":"getNodeType.js","sourceRoot":"","sources":["../getNodeType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AApBD,kCAoBC;AA0FD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
1
+ {"version":3,"file":"getNodeType.js","sourceRoot":"","sources":["../getNodeType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AApBD,kCAoBC;AA6FD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
@@ -0,0 +1,135 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * ## Example Usage
4
+ *
5
+ * Get all Delta Live Tables pipelines:
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as databricks from "@pulumi/databricks";
10
+ *
11
+ * const all = databricks.getPipelines({});
12
+ * export const allPipelines = all.then(all => all.ids);
13
+ * ```
14
+ *
15
+ * Filter Delta Live Tables pipelines by name (exact match):
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as databricks from "@pulumi/databricks";
20
+ *
21
+ * const this = databricks.getPipelines({
22
+ * pipelineName: "my_pipeline",
23
+ * });
24
+ * export const myPipeline = _this.then(_this => _this.ids);
25
+ * ```
26
+ *
27
+ * Filter Delta Live Tables pipelines by name (wildcard search):
28
+ *
29
+ * ```typescript
30
+ * import * as pulumi from "@pulumi/pulumi";
31
+ * import * as databricks from "@pulumi/databricks";
32
+ *
33
+ * const this = databricks.getPipelines({
34
+ * pipelineName: "%pipeline%",
35
+ * });
36
+ * export const wildcardPipelines = _this.then(_this => _this.ids);
37
+ * ```
38
+ * ## Related Resources
39
+ *
40
+ * The following resources are used in the same context:
41
+ *
42
+ * * End to end workspace management guide.
43
+ * * databricks.Pipeline to deploy [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html).
44
+ * * databricks.Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
45
+ * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code in a databricks_cluster.
46
+ * * databricks.Notebook to manage [Databricks Notebooks](https://docs.databricks.com/notebooks/index.html).
47
+ */
48
+ export declare function getPipelines(args?: GetPipelinesArgs, opts?: pulumi.InvokeOptions): Promise<GetPipelinesResult>;
49
+ /**
50
+ * A collection of arguments for invoking getPipelines.
51
+ */
52
+ export interface GetPipelinesArgs {
53
+ /**
54
+ * List of ids for [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html) pipelines matching the provided search criteria.
55
+ */
56
+ ids?: string[];
57
+ /**
58
+ * Filter Delta Live Tables pipelines by name for a given search term. `%` is the supported wildcard operator.
59
+ */
60
+ pipelineName?: string;
61
+ }
62
+ /**
63
+ * A collection of values returned by getPipelines.
64
+ */
65
+ export interface GetPipelinesResult {
66
+ /**
67
+ * The provider-assigned unique ID for this managed resource.
68
+ */
69
+ readonly id: string;
70
+ /**
71
+ * List of ids for [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html) pipelines matching the provided search criteria.
72
+ */
73
+ readonly ids: string[];
74
+ readonly pipelineName?: string;
75
+ }
76
+ /**
77
+ * ## Example Usage
78
+ *
79
+ * Get all Delta Live Tables pipelines:
80
+ *
81
+ * ```typescript
82
+ * import * as pulumi from "@pulumi/pulumi";
83
+ * import * as databricks from "@pulumi/databricks";
84
+ *
85
+ * const all = databricks.getPipelines({});
86
+ * export const allPipelines = all.then(all => all.ids);
87
+ * ```
88
+ *
89
+ * Filter Delta Live Tables pipelines by name (exact match):
90
+ *
91
+ * ```typescript
92
+ * import * as pulumi from "@pulumi/pulumi";
93
+ * import * as databricks from "@pulumi/databricks";
94
+ *
95
+ * const this = databricks.getPipelines({
96
+ * pipelineName: "my_pipeline",
97
+ * });
98
+ * export const myPipeline = _this.then(_this => _this.ids);
99
+ * ```
100
+ *
101
+ * Filter Delta Live Tables pipelines by name (wildcard search):
102
+ *
103
+ * ```typescript
104
+ * import * as pulumi from "@pulumi/pulumi";
105
+ * import * as databricks from "@pulumi/databricks";
106
+ *
107
+ * const this = databricks.getPipelines({
108
+ * pipelineName: "%pipeline%",
109
+ * });
110
+ * export const wildcardPipelines = _this.then(_this => _this.ids);
111
+ * ```
112
+ * ## Related Resources
113
+ *
114
+ * The following resources are used in the same context:
115
+ *
116
+ * * End to end workspace management guide.
117
+ * * databricks.Pipeline to deploy [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html).
118
+ * * databricks.Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
119
+ * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code in a databricks_cluster.
120
+ * * databricks.Notebook to manage [Databricks Notebooks](https://docs.databricks.com/notebooks/index.html).
121
+ */
122
+ export declare function getPipelinesOutput(args?: GetPipelinesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPipelinesResult>;
123
+ /**
124
+ * A collection of arguments for invoking getPipelines.
125
+ */
126
+ export interface GetPipelinesOutputArgs {
127
+ /**
128
+ * List of ids for [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html) pipelines matching the provided search criteria.
129
+ */
130
+ ids?: pulumi.Input<pulumi.Input<string>[]>;
131
+ /**
132
+ * Filter Delta Live Tables pipelines by name for a given search term. `%` is the supported wildcard operator.
133
+ */
134
+ pipelineName?: pulumi.Input<string>;
135
+ }
@@ -0,0 +1,113 @@
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.getPipelinesOutput = exports.getPipelines = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * ## Example Usage
10
+ *
11
+ * Get all Delta Live Tables pipelines:
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as databricks from "@pulumi/databricks";
16
+ *
17
+ * const all = databricks.getPipelines({});
18
+ * export const allPipelines = all.then(all => all.ids);
19
+ * ```
20
+ *
21
+ * Filter Delta Live Tables pipelines by name (exact match):
22
+ *
23
+ * ```typescript
24
+ * import * as pulumi from "@pulumi/pulumi";
25
+ * import * as databricks from "@pulumi/databricks";
26
+ *
27
+ * const this = databricks.getPipelines({
28
+ * pipelineName: "my_pipeline",
29
+ * });
30
+ * export const myPipeline = _this.then(_this => _this.ids);
31
+ * ```
32
+ *
33
+ * Filter Delta Live Tables pipelines by name (wildcard search):
34
+ *
35
+ * ```typescript
36
+ * import * as pulumi from "@pulumi/pulumi";
37
+ * import * as databricks from "@pulumi/databricks";
38
+ *
39
+ * const this = databricks.getPipelines({
40
+ * pipelineName: "%pipeline%",
41
+ * });
42
+ * export const wildcardPipelines = _this.then(_this => _this.ids);
43
+ * ```
44
+ * ## Related Resources
45
+ *
46
+ * The following resources are used in the same context:
47
+ *
48
+ * * End to end workspace management guide.
49
+ * * databricks.Pipeline to deploy [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html).
50
+ * * databricks.Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
51
+ * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code in a databricks_cluster.
52
+ * * databricks.Notebook to manage [Databricks Notebooks](https://docs.databricks.com/notebooks/index.html).
53
+ */
54
+ function getPipelines(args, opts) {
55
+ args = args || {};
56
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
57
+ return pulumi.runtime.invoke("databricks:index/getPipelines:getPipelines", {
58
+ "ids": args.ids,
59
+ "pipelineName": args.pipelineName,
60
+ }, opts);
61
+ }
62
+ exports.getPipelines = getPipelines;
63
+ /**
64
+ * ## Example Usage
65
+ *
66
+ * Get all Delta Live Tables pipelines:
67
+ *
68
+ * ```typescript
69
+ * import * as pulumi from "@pulumi/pulumi";
70
+ * import * as databricks from "@pulumi/databricks";
71
+ *
72
+ * const all = databricks.getPipelines({});
73
+ * export const allPipelines = all.then(all => all.ids);
74
+ * ```
75
+ *
76
+ * Filter Delta Live Tables pipelines by name (exact match):
77
+ *
78
+ * ```typescript
79
+ * import * as pulumi from "@pulumi/pulumi";
80
+ * import * as databricks from "@pulumi/databricks";
81
+ *
82
+ * const this = databricks.getPipelines({
83
+ * pipelineName: "my_pipeline",
84
+ * });
85
+ * export const myPipeline = _this.then(_this => _this.ids);
86
+ * ```
87
+ *
88
+ * Filter Delta Live Tables pipelines by name (wildcard search):
89
+ *
90
+ * ```typescript
91
+ * import * as pulumi from "@pulumi/pulumi";
92
+ * import * as databricks from "@pulumi/databricks";
93
+ *
94
+ * const this = databricks.getPipelines({
95
+ * pipelineName: "%pipeline%",
96
+ * });
97
+ * export const wildcardPipelines = _this.then(_this => _this.ids);
98
+ * ```
99
+ * ## Related Resources
100
+ *
101
+ * The following resources are used in the same context:
102
+ *
103
+ * * End to end workspace management guide.
104
+ * * databricks.Pipeline to deploy [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html).
105
+ * * databricks.Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
106
+ * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code in a databricks_cluster.
107
+ * * databricks.Notebook to manage [Databricks Notebooks](https://docs.databricks.com/notebooks/index.html).
108
+ */
109
+ function getPipelinesOutput(args, opts) {
110
+ return pulumi.output(args).apply((a) => getPipelines(a, opts));
111
+ }
112
+ exports.getPipelinesOutput = getPipelinesOutput;
113
+ //# sourceMappingURL=getPipelines.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPipelines.js","sourceRoot":"","sources":["../getPipelines.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oCAQC;AA8BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
@@ -51,7 +51,7 @@ export interface GetSqlWarehouseArgs {
51
51
  */
52
52
  enablePhoton?: boolean;
53
53
  /**
54
- * Whether this SQL warehouse is a serverless SQL warehouse. If this value is true explicitly or through the default, you **must** also set `warehouseType` field to `pro`.
54
+ * Whether this SQL warehouse is a serverless SQL warehouse. If this value is `true`, `warehouseType` must be `PRO`.
55
55
  */
56
56
  enableServerlessCompute?: boolean;
57
57
  /**
@@ -115,7 +115,7 @@ export interface GetSqlWarehouseResult {
115
115
  */
116
116
  readonly enablePhoton: boolean;
117
117
  /**
118
- * Whether this SQL warehouse is a serverless SQL warehouse. If this value is true explicitly or through the default, you **must** also set `warehouseType` field to `pro`.
118
+ * Whether this SQL warehouse is a serverless SQL warehouse. If this value is `true`, `warehouseType` must be `PRO`.
119
119
  */
120
120
  readonly enableServerlessCompute: boolean;
121
121
  readonly id: string;
@@ -201,7 +201,7 @@ export interface GetSqlWarehouseOutputArgs {
201
201
  */
202
202
  enablePhoton?: pulumi.Input<boolean>;
203
203
  /**
204
- * Whether this SQL warehouse is a serverless SQL warehouse. If this value is true explicitly or through the default, you **must** also set `warehouseType` field to `pro`.
204
+ * Whether this SQL warehouse is a serverless SQL warehouse. If this value is `true`, `warehouseType` must be `PRO`.
205
205
  */
206
206
  enableServerlessCompute?: pulumi.Input<boolean>;
207
207
  /**
package/index.d.ts CHANGED
@@ -78,6 +78,9 @@ export declare const getNotebookOutput: typeof import("./getNotebook").getNotebo
78
78
  export { GetNotebookPathsArgs, GetNotebookPathsResult, GetNotebookPathsOutputArgs } from "./getNotebookPaths";
79
79
  export declare const getNotebookPaths: typeof import("./getNotebookPaths").getNotebookPaths;
80
80
  export declare const getNotebookPathsOutput: typeof import("./getNotebookPaths").getNotebookPathsOutput;
81
+ export { GetPipelinesArgs, GetPipelinesResult, GetPipelinesOutputArgs } from "./getPipelines";
82
+ export declare const getPipelines: typeof import("./getPipelines").getPipelines;
83
+ export declare const getPipelinesOutput: typeof import("./getPipelines").getPipelinesOutput;
81
84
  export { GetSchemasArgs, GetSchemasResult, GetSchemasOutputArgs } from "./getSchemas";
82
85
  export declare const getSchemas: typeof import("./getSchemas").getSchemas;
83
86
  export declare const getSchemasOutput: typeof import("./getSchemas").getSchemasOutput;
@@ -269,6 +272,9 @@ export declare const SqlPermissions: typeof import("./sqlPermissions").SqlPermis
269
272
  export { SqlQueryArgs, SqlQueryState } from "./sqlQuery";
270
273
  export type SqlQuery = import("./sqlQuery").SqlQuery;
271
274
  export declare const SqlQuery: typeof import("./sqlQuery").SqlQuery;
275
+ export { SqlTableArgs, SqlTableState } from "./sqlTable";
276
+ export type SqlTable = import("./sqlTable").SqlTable;
277
+ export declare const SqlTable: typeof import("./sqlTable").SqlTable;
272
278
  export { SqlVisualizationArgs, SqlVisualizationState } from "./sqlVisualization";
273
279
  export type SqlVisualization = import("./sqlVisualization").SqlVisualization;
274
280
  export declare const SqlVisualization: typeof import("./sqlVisualization").SqlVisualization;
package/index.js CHANGED
@@ -2,9 +2,9 @@
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.getServicePrincipalOutput = exports.getServicePrincipal = exports.getSchemasOutput = exports.getSchemas = exports.getNotebookPathsOutput = exports.getNotebookPaths = exports.getNotebookOutput = exports.getNotebook = exports.getNodeTypeOutput = exports.getNodeType = exports.getMwsWorkspacesOutput = exports.getMwsWorkspaces = exports.getMwsCredentialsOutput = exports.getMwsCredentials = exports.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getInstancePoolOutput = exports.getInstancePool = exports.getGroupOutput = exports.getGroup = exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUser = exports.getClustersOutput = exports.getClusters = exports.getClusterPolicyOutput = exports.getClusterPolicy = exports.getClusterOutput = exports.getCluster = exports.getCatalogsOutput = exports.getCatalogs = exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = exports.getAwsBucketPolicyOutput = exports.getAwsBucketPolicy = exports.getAwsAssumeRolePolicyOutput = exports.getAwsAssumeRolePolicy = exports.ExternalLocation = exports.Entitlements = exports.Directory = exports.DbfsFile = exports.ClusterPolicy = exports.Cluster = exports.Catalog = void 0;
6
- exports.Notebook = exports.MwsWorkspaces = exports.MwsVpcEndpoint = exports.MwsStorageConfigurations = exports.MwsPrivateAccessSettings = exports.MwsPermissionAssignment = exports.MwsNetworks = 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.Job = exports.IpAccessList = exports.InstanceProfile = exports.InstancePool = exports.GroupRole = exports.GroupMember = exports.GroupInstanceProfile = exports.Group = exports.Grants = exports.GlobalInitScript = exports.GitCredential = exports.getZones = exports.getViewsOutput = exports.getViews = exports.getUserOutput = exports.getUser = exports.getTablesOutput = exports.getTables = exports.getSqlWarehousesOutput = exports.getSqlWarehouses = exports.getSqlWarehouseOutput = exports.getSqlWarehouse = exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServicePrincipalsOutput = exports.getServicePrincipals = void 0;
7
- exports.types = exports.config = exports.WorkspaceConf = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = exports.StorageCredential = exports.SqlWidget = exports.SqlVisualization = 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.Repo = exports.Recipient = exports.Provider = exports.Pipeline = exports.Permissions = exports.PermissionAssignment = exports.OboToken = void 0;
5
+ exports.getSchemasOutput = exports.getSchemas = 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.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getInstancePoolOutput = exports.getInstancePool = exports.getGroupOutput = exports.getGroup = exports.getDirectoryOutput = exports.getDirectory = exports.getDbfsFilePathsOutput = exports.getDbfsFilePaths = exports.getDbfsFileOutput = exports.getDbfsFile = exports.getCurrentUser = exports.getClustersOutput = exports.getClusters = exports.getClusterPolicyOutput = exports.getClusterPolicy = exports.getClusterOutput = exports.getCluster = exports.getCatalogsOutput = exports.getCatalogs = exports.getAwsCrossAccountPolicyOutput = exports.getAwsCrossAccountPolicy = exports.getAwsBucketPolicyOutput = exports.getAwsBucketPolicy = exports.getAwsAssumeRolePolicyOutput = exports.getAwsAssumeRolePolicy = exports.ExternalLocation = exports.Entitlements = exports.Directory = exports.DbfsFile = exports.ClusterPolicy = exports.Cluster = exports.Catalog = void 0;
6
+ exports.MwsVpcEndpoint = exports.MwsStorageConfigurations = exports.MwsPrivateAccessSettings = exports.MwsPermissionAssignment = exports.MwsNetworks = 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.Job = exports.IpAccessList = exports.InstanceProfile = exports.InstancePool = exports.GroupRole = exports.GroupMember = exports.GroupInstanceProfile = exports.Group = exports.Grants = exports.GlobalInitScript = exports.GitCredential = exports.getZones = exports.getViewsOutput = exports.getViews = exports.getUserOutput = exports.getUser = exports.getTablesOutput = exports.getTables = exports.getSqlWarehousesOutput = exports.getSqlWarehouses = exports.getSqlWarehouseOutput = exports.getSqlWarehouse = exports.getSparkVersionOutput = exports.getSparkVersion = exports.getSharesOutput = exports.getShares = exports.getShareOutput = exports.getShare = exports.getServicePrincipalsOutput = exports.getServicePrincipals = exports.getServicePrincipalOutput = exports.getServicePrincipal = void 0;
7
+ exports.types = exports.config = exports.WorkspaceConf = exports.UserRole = exports.UserInstanceProfile = exports.User = exports.Token = exports.Table = 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.Repo = exports.Recipient = exports.Provider = exports.Pipeline = exports.Permissions = exports.PermissionAssignment = exports.OboToken = exports.Notebook = exports.MwsWorkspaces = void 0;
8
8
  const pulumi = require("@pulumi/pulumi");
9
9
  const utilities = require("./utilities");
10
10
  exports.Catalog = null;
@@ -80,6 +80,9 @@ utilities.lazyLoad(exports, ["getNotebook", "getNotebookOutput"], () => require(
80
80
  exports.getNotebookPaths = null;
81
81
  exports.getNotebookPathsOutput = null;
82
82
  utilities.lazyLoad(exports, ["getNotebookPaths", "getNotebookPathsOutput"], () => require("./getNotebookPaths"));
83
+ exports.getPipelines = null;
84
+ exports.getPipelinesOutput = null;
85
+ utilities.lazyLoad(exports, ["getPipelines", "getPipelinesOutput"], () => require("./getPipelines"));
83
86
  exports.getSchemas = null;
84
87
  exports.getSchemasOutput = null;
85
88
  utilities.lazyLoad(exports, ["getSchemas", "getSchemasOutput"], () => require("./getSchemas"));
@@ -219,6 +222,8 @@ exports.SqlPermissions = null;
219
222
  utilities.lazyLoad(exports, ["SqlPermissions"], () => require("./sqlPermissions"));
220
223
  exports.SqlQuery = null;
221
224
  utilities.lazyLoad(exports, ["SqlQuery"], () => require("./sqlQuery"));
225
+ exports.SqlTable = null;
226
+ utilities.lazyLoad(exports, ["SqlTable"], () => require("./sqlTable"));
222
227
  exports.SqlVisualization = null;
223
228
  utilities.lazyLoad(exports, ["SqlVisualization"], () => require("./sqlVisualization"));
224
229
  exports.SqlWidget = null;
@@ -362,6 +367,8 @@ const _module = {
362
367
  return new exports.SqlPermissions(name, undefined, { urn });
363
368
  case "databricks:index/sqlQuery:SqlQuery":
364
369
  return new exports.SqlQuery(name, undefined, { urn });
370
+ case "databricks:index/sqlTable:SqlTable":
371
+ return new exports.SqlTable(name, undefined, { urn });
365
372
  case "databricks:index/sqlVisualization:SqlVisualization":
366
373
  return new exports.SqlVisualization(name, undefined, { urn });
367
374
  case "databricks:index/sqlWidget:SqlWidget":
@@ -443,6 +450,7 @@ pulumi.runtime.registerResourceModule("databricks", "index/sqlEndpoint", _module
443
450
  pulumi.runtime.registerResourceModule("databricks", "index/sqlGlobalConfig", _module);
444
451
  pulumi.runtime.registerResourceModule("databricks", "index/sqlPermissions", _module);
445
452
  pulumi.runtime.registerResourceModule("databricks", "index/sqlQuery", _module);
453
+ pulumi.runtime.registerResourceModule("databricks", "index/sqlTable", _module);
446
454
  pulumi.runtime.registerResourceModule("databricks", "index/sqlVisualization", _module);
447
455
  pulumi.runtime.registerResourceModule("databricks", "index/sqlWidget", _module);
448
456
  pulumi.runtime.registerResourceModule("databricks", "index/storageCredential", _module);