@pulumi/databricks 1.57.0-alpha.1734067983 → 1.57.0-alpha.1734112416
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getCluster.d.ts +2 -2
- package/getCluster.js +2 -2
- package/getSchema.d.ts +2 -2
- package/getSchema.js +2 -2
- package/getSqlWarehouse.d.ts +2 -2
- package/getSqlWarehouse.js +2 -2
- package/getVolume.d.ts +2 -2
- package/getVolume.js +2 -2
- package/package.json +3 -3
package/getCluster.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as outputs from "./types/output";
|
|
|
15
15
|
* import * as databricks from "@pulumi/databricks";
|
|
16
16
|
*
|
|
17
17
|
* const all = databricks.getClusters({});
|
|
18
|
-
* const allGetCluster = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
18
|
+
* const allGetCluster = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
19
19
|
* clusterId: __value,
|
|
20
20
|
* }) })));
|
|
21
21
|
* ```
|
|
@@ -86,7 +86,7 @@ export interface GetClusterResult {
|
|
|
86
86
|
* import * as databricks from "@pulumi/databricks";
|
|
87
87
|
*
|
|
88
88
|
* const all = databricks.getClusters({});
|
|
89
|
-
* const allGetCluster = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
89
|
+
* const allGetCluster = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
90
90
|
* clusterId: __value,
|
|
91
91
|
* }) })));
|
|
92
92
|
* ```
|
package/getCluster.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("./utilities");
|
|
|
19
19
|
* import * as databricks from "@pulumi/databricks";
|
|
20
20
|
*
|
|
21
21
|
* const all = databricks.getClusters({});
|
|
22
|
-
* const allGetCluster = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
22
|
+
* const allGetCluster = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
23
23
|
* clusterId: __value,
|
|
24
24
|
* }) })));
|
|
25
25
|
* ```
|
|
@@ -61,7 +61,7 @@ exports.getCluster = getCluster;
|
|
|
61
61
|
* import * as databricks from "@pulumi/databricks";
|
|
62
62
|
*
|
|
63
63
|
* const all = databricks.getClusters({});
|
|
64
|
-
* const allGetCluster = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
64
|
+
* const allGetCluster = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getCluster({
|
|
65
65
|
* clusterId: __value,
|
|
66
66
|
* }) })));
|
|
67
67
|
* ```
|
package/getSchema.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import * as outputs from "./types/output";
|
|
|
16
16
|
* const all = databricks.getSchemas({
|
|
17
17
|
* catalogName: "sandbox",
|
|
18
18
|
* });
|
|
19
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
19
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
20
20
|
* name: __value,
|
|
21
21
|
* }) })));
|
|
22
22
|
* ```
|
|
@@ -89,7 +89,7 @@ export interface GetSchemaResult {
|
|
|
89
89
|
* const all = databricks.getSchemas({
|
|
90
90
|
* catalogName: "sandbox",
|
|
91
91
|
* });
|
|
92
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
92
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
93
93
|
* name: __value,
|
|
94
94
|
* }) })));
|
|
95
95
|
* ```
|
package/getSchema.js
CHANGED
|
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
|
|
|
20
20
|
* const all = databricks.getSchemas({
|
|
21
21
|
* catalogName: "sandbox",
|
|
22
22
|
* });
|
|
23
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
23
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
24
24
|
* name: __value,
|
|
25
25
|
* }) })));
|
|
26
26
|
* ```
|
|
@@ -67,7 +67,7 @@ exports.getSchema = getSchema;
|
|
|
67
67
|
* const all = databricks.getSchemas({
|
|
68
68
|
* catalogName: "sandbox",
|
|
69
69
|
* });
|
|
70
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
70
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSchema({
|
|
71
71
|
* name: __value,
|
|
72
72
|
* }) })));
|
|
73
73
|
* ```
|
package/getSqlWarehouse.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as outputs from "./types/output";
|
|
|
15
15
|
* import * as databricks from "@pulumi/databricks";
|
|
16
16
|
*
|
|
17
17
|
* const all = databricks.getSqlWarehouses({});
|
|
18
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
18
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
19
19
|
* id: __value,
|
|
20
20
|
* }) })));
|
|
21
21
|
* ```
|
|
@@ -228,7 +228,7 @@ export interface GetSqlWarehouseResult {
|
|
|
228
228
|
* import * as databricks from "@pulumi/databricks";
|
|
229
229
|
*
|
|
230
230
|
* const all = databricks.getSqlWarehouses({});
|
|
231
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
231
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
232
232
|
* id: __value,
|
|
233
233
|
* }) })));
|
|
234
234
|
* ```
|
package/getSqlWarehouse.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("./utilities");
|
|
|
19
19
|
* import * as databricks from "@pulumi/databricks";
|
|
20
20
|
*
|
|
21
21
|
* const all = databricks.getSqlWarehouses({});
|
|
22
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
22
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
23
23
|
* id: __value,
|
|
24
24
|
* }) })));
|
|
25
25
|
* ```
|
|
@@ -87,7 +87,7 @@ exports.getSqlWarehouse = getSqlWarehouse;
|
|
|
87
87
|
* import * as databricks from "@pulumi/databricks";
|
|
88
88
|
*
|
|
89
89
|
* const all = databricks.getSqlWarehouses({});
|
|
90
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
90
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getSqlWarehouse({
|
|
91
91
|
* id: __value,
|
|
92
92
|
* }) })));
|
|
93
93
|
* ```
|
package/getVolume.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import * as outputs from "./types/output";
|
|
|
17
17
|
* catalogName: "sandbox",
|
|
18
18
|
* schemaName: "things",
|
|
19
19
|
* });
|
|
20
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
20
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
21
21
|
* name: __value,
|
|
22
22
|
* }) })));
|
|
23
23
|
* ```
|
|
@@ -92,7 +92,7 @@ export interface GetVolumeResult {
|
|
|
92
92
|
* catalogName: "sandbox",
|
|
93
93
|
* schemaName: "things",
|
|
94
94
|
* });
|
|
95
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
95
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
96
96
|
* name: __value,
|
|
97
97
|
* }) })));
|
|
98
98
|
* ```
|
package/getVolume.js
CHANGED
|
@@ -21,7 +21,7 @@ const utilities = require("./utilities");
|
|
|
21
21
|
* catalogName: "sandbox",
|
|
22
22
|
* schemaName: "things",
|
|
23
23
|
* });
|
|
24
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
24
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
25
25
|
* name: __value,
|
|
26
26
|
* }) })));
|
|
27
27
|
* ```
|
|
@@ -70,7 +70,7 @@ exports.getVolume = getVolume;
|
|
|
70
70
|
* catalogName: "sandbox",
|
|
71
71
|
* schemaName: "things",
|
|
72
72
|
* });
|
|
73
|
-
* const this = all.then(all => .reduce((__obj, [, ]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
73
|
+
* const this = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: databricks.getVolume({
|
|
74
74
|
* name: __value,
|
|
75
75
|
* }) })));
|
|
76
76
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.57.0-alpha.
|
|
3
|
+
"version": "1.57.0-alpha.1734112416",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build": "tsc"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@pulumi/pulumi": "^3.
|
|
17
|
+
"@pulumi/pulumi": "^3.142.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/mime": "^2.0.0",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "databricks",
|
|
27
|
-
"version": "1.57.0-alpha.
|
|
27
|
+
"version": "1.57.0-alpha.1734112416"
|
|
28
28
|
}
|
|
29
29
|
}
|