@pulumi/databricks 1.48.0 → 1.49.0-alpha.1724218263
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/catalog.d.ts +6 -6
- package/cluster.d.ts +14 -14
- package/connection.d.ts +6 -6
- package/getJobs.d.ts +3 -3
- package/getMetastores.d.ts +3 -3
- package/getMwsCredentials.d.ts +3 -3
- package/getMwsWorkspaces.d.ts +3 -3
- package/instancePool.d.ts +3 -3
- package/ipAccessList.d.ts +1 -1
- package/ipAccessList.js +1 -1
- package/job.d.ts +3 -3
- package/mount.d.ts +3 -3
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/pipeline.d.ts +3 -3
- package/schema.d.ts +3 -3
- package/sqlGlobalConfig.d.ts +6 -6
- package/sqlTable.d.ts +6 -6
- package/table.d.ts +3 -3
- package/types/input.d.ts +116 -116
- package/types/output.d.ts +76 -76
- package/workspaceConf.d.ts +4 -4
- package/workspaceConf.js +1 -1
package/table.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class Table extends pulumi.CustomResource {
|
|
|
24
24
|
readonly name: pulumi.Output<string>;
|
|
25
25
|
readonly owner: pulumi.Output<string>;
|
|
26
26
|
readonly properties: pulumi.Output<{
|
|
27
|
-
[key: string]:
|
|
27
|
+
[key: string]: string;
|
|
28
28
|
} | undefined>;
|
|
29
29
|
readonly schemaName: pulumi.Output<string>;
|
|
30
30
|
readonly storageCredentialName: pulumi.Output<string | undefined>;
|
|
@@ -51,7 +51,7 @@ export interface TableState {
|
|
|
51
51
|
name?: pulumi.Input<string>;
|
|
52
52
|
owner?: pulumi.Input<string>;
|
|
53
53
|
properties?: pulumi.Input<{
|
|
54
|
-
[key: string]:
|
|
54
|
+
[key: string]: pulumi.Input<string>;
|
|
55
55
|
}>;
|
|
56
56
|
schemaName?: pulumi.Input<string>;
|
|
57
57
|
storageCredentialName?: pulumi.Input<string>;
|
|
@@ -70,7 +70,7 @@ export interface TableArgs {
|
|
|
70
70
|
name?: pulumi.Input<string>;
|
|
71
71
|
owner?: pulumi.Input<string>;
|
|
72
72
|
properties?: pulumi.Input<{
|
|
73
|
-
[key: string]:
|
|
73
|
+
[key: string]: pulumi.Input<string>;
|
|
74
74
|
}>;
|
|
75
75
|
schemaName: pulumi.Input<string>;
|
|
76
76
|
storageCredentialName?: pulumi.Input<string>;
|