@pulumi/databricks 1.49.0-alpha.1724477174 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dashboard.d.ts +3 -3
- package/package.json +2 -2
- package/types/input.d.ts +2 -0
- package/types/output.d.ts +1 -0
package/dashboard.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
69
69
|
readonly lifecycleState: pulumi.Output<string>;
|
|
70
70
|
readonly md5: pulumi.Output<string>;
|
|
71
71
|
/**
|
|
72
|
-
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash.
|
|
72
|
+
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash. If folder doesn't exist, it will be created.
|
|
73
73
|
*/
|
|
74
74
|
readonly parentPath: pulumi.Output<string>;
|
|
75
75
|
readonly path: pulumi.Output<string>;
|
|
@@ -114,7 +114,7 @@ export interface DashboardState {
|
|
|
114
114
|
lifecycleState?: pulumi.Input<string>;
|
|
115
115
|
md5?: pulumi.Input<string>;
|
|
116
116
|
/**
|
|
117
|
-
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash.
|
|
117
|
+
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash. If folder doesn't exist, it will be created.
|
|
118
118
|
*/
|
|
119
119
|
parentPath?: pulumi.Input<string>;
|
|
120
120
|
path?: pulumi.Input<string>;
|
|
@@ -151,7 +151,7 @@ export interface DashboardArgs {
|
|
|
151
151
|
lifecycleState?: pulumi.Input<string>;
|
|
152
152
|
md5?: pulumi.Input<string>;
|
|
153
153
|
/**
|
|
154
|
-
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash.
|
|
154
|
+
* The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash. If folder doesn't exist, it will be created.
|
|
155
155
|
*/
|
|
156
156
|
parentPath: pulumi.Input<string>;
|
|
157
157
|
path?: pulumi.Input<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.49.0
|
|
3
|
+
"version": "1.49.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "databricks",
|
|
27
|
-
"version": "1.49.0
|
|
27
|
+
"version": "1.49.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1788,6 +1788,7 @@ export interface GetExternalLocationExternalLocationInfo {
|
|
|
1788
1788
|
* The options for Server-Side Encryption to be used by each Databricks s3 client when connecting to S3 cloud storage (AWS).
|
|
1789
1789
|
*/
|
|
1790
1790
|
encryptionDetails?: inputs.GetExternalLocationExternalLocationInfoEncryptionDetails;
|
|
1791
|
+
fallback?: boolean;
|
|
1791
1792
|
isolationMode?: string;
|
|
1792
1793
|
/**
|
|
1793
1794
|
* Unique identifier of the parent Metastore.
|
|
@@ -1848,6 +1849,7 @@ export interface GetExternalLocationExternalLocationInfoArgs {
|
|
|
1848
1849
|
* The options for Server-Side Encryption to be used by each Databricks s3 client when connecting to S3 cloud storage (AWS).
|
|
1849
1850
|
*/
|
|
1850
1851
|
encryptionDetails?: pulumi.Input<inputs.GetExternalLocationExternalLocationInfoEncryptionDetailsArgs>;
|
|
1852
|
+
fallback?: pulumi.Input<boolean>;
|
|
1851
1853
|
isolationMode?: pulumi.Input<string>;
|
|
1852
1854
|
/**
|
|
1853
1855
|
* Unique identifier of the parent Metastore.
|
package/types/output.d.ts
CHANGED
|
@@ -1147,6 +1147,7 @@ export interface GetExternalLocationExternalLocationInfo {
|
|
|
1147
1147
|
* The options for Server-Side Encryption to be used by each Databricks s3 client when connecting to S3 cloud storage (AWS).
|
|
1148
1148
|
*/
|
|
1149
1149
|
encryptionDetails?: outputs.GetExternalLocationExternalLocationInfoEncryptionDetails;
|
|
1150
|
+
fallback?: boolean;
|
|
1150
1151
|
isolationMode?: string;
|
|
1151
1152
|
/**
|
|
1152
1153
|
* Unique identifier of the parent Metastore.
|