@pulumi/databricks 1.47.0-alpha.1721236148 → 1.47.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/catalogWorkspaceBinding.d.ts +1 -1
- package/cluster.d.ts +3 -3
- package/dashboard.d.ts +143 -0
- package/dashboard.js +95 -0
- package/dashboard.js.map +1 -0
- package/getClusters.d.ts +10 -3
- package/getClusters.js +2 -0
- package/getClusters.js.map +1 -1
- package/getSchema.d.ts +66 -0
- package/getSchema.js +31 -0
- package/getSchema.js.map +1 -0
- package/getSqlWarehouses.d.ts +2 -2
- package/getSqlWarehouses.js +2 -2
- package/getVolume.d.ts +66 -0
- package/getVolume.js +31 -0
- package/getVolume.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/mwsNccBinding.d.ts +1 -1
- package/mwsNccBinding.js +1 -1
- package/mwsNccPrivateEndpointRule.d.ts +1 -1
- package/mwsNccPrivateEndpointRule.js +1 -1
- package/mwsNetworkConnectivityConfig.d.ts +2 -2
- package/mwsNetworkConnectivityConfig.js +2 -2
- package/package.json +2 -2
- package/permissions.d.ts +3 -0
- package/permissions.js +2 -0
- package/permissions.js.map +1 -1
- package/pipeline.d.ts +12 -3
- package/pipeline.js.map +1 -1
- package/registeredModel.d.ts +2 -3
- package/registeredModel.js +2 -3
- package/registeredModel.js.map +1 -1
- package/types/input.d.ts +861 -20
- package/types/output.d.ts +459 -19
- package/user.d.ts +1 -1
- package/user.js +1 -1
- package/workspaceBinding.d.ts +121 -0
- package/workspaceBinding.js +82 -0
- package/workspaceBinding.js.map +1 -0
package/types/input.d.ts
CHANGED
|
@@ -701,7 +701,7 @@ export interface GetClusterClusterInfo {
|
|
|
701
701
|
* Security features of the cluster. Unity Catalog requires `SINGLE_USER` or `USER_ISOLATION` mode. `LEGACY_PASSTHROUGH` for passthrough cluster and `LEGACY_TABLE_ACL` for Table ACL cluster. Default to `NONE`, i.e. no security feature enabled.
|
|
702
702
|
*/
|
|
703
703
|
dataSecurityMode?: string;
|
|
704
|
-
defaultTags
|
|
704
|
+
defaultTags?: {
|
|
705
705
|
[key: string]: any;
|
|
706
706
|
};
|
|
707
707
|
dockerImage?: inputs.GetClusterClusterInfoDockerImage;
|
|
@@ -730,7 +730,7 @@ export interface GetClusterClusterInfo {
|
|
|
730
730
|
*/
|
|
731
731
|
instancePoolId?: string;
|
|
732
732
|
jdbcPort?: number;
|
|
733
|
-
|
|
733
|
+
lastRestartedTime?: number;
|
|
734
734
|
lastStateLossTime?: number;
|
|
735
735
|
/**
|
|
736
736
|
* Any supported databricks.getNodeType id.
|
|
@@ -765,16 +765,18 @@ export interface GetClusterClusterInfo {
|
|
|
765
765
|
/**
|
|
766
766
|
* [Runtime version](https://docs.databricks.com/runtime/index.html) of the cluster.
|
|
767
767
|
*/
|
|
768
|
-
sparkVersion
|
|
768
|
+
sparkVersion?: string;
|
|
769
|
+
spec?: inputs.GetClusterClusterInfoSpec;
|
|
769
770
|
/**
|
|
770
771
|
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
771
772
|
*/
|
|
772
773
|
sshPublicKeys?: string[];
|
|
773
774
|
startTime?: number;
|
|
774
|
-
state
|
|
775
|
+
state?: string;
|
|
775
776
|
stateMessage?: string;
|
|
776
|
-
|
|
777
|
+
terminatedTime?: number;
|
|
777
778
|
terminationReason?: inputs.GetClusterClusterInfoTerminationReason;
|
|
779
|
+
workloadType?: inputs.GetClusterClusterInfoWorkloadType;
|
|
778
780
|
}
|
|
779
781
|
export interface GetClusterClusterInfoArgs {
|
|
780
782
|
autoscale?: pulumi.Input<inputs.GetClusterClusterInfoAutoscaleArgs>;
|
|
@@ -808,7 +810,7 @@ export interface GetClusterClusterInfoArgs {
|
|
|
808
810
|
* Security features of the cluster. Unity Catalog requires `SINGLE_USER` or `USER_ISOLATION` mode. `LEGACY_PASSTHROUGH` for passthrough cluster and `LEGACY_TABLE_ACL` for Table ACL cluster. Default to `NONE`, i.e. no security feature enabled.
|
|
809
811
|
*/
|
|
810
812
|
dataSecurityMode?: pulumi.Input<string>;
|
|
811
|
-
defaultTags
|
|
813
|
+
defaultTags?: pulumi.Input<{
|
|
812
814
|
[key: string]: any;
|
|
813
815
|
}>;
|
|
814
816
|
dockerImage?: pulumi.Input<inputs.GetClusterClusterInfoDockerImageArgs>;
|
|
@@ -837,7 +839,7 @@ export interface GetClusterClusterInfoArgs {
|
|
|
837
839
|
*/
|
|
838
840
|
instancePoolId?: pulumi.Input<string>;
|
|
839
841
|
jdbcPort?: pulumi.Input<number>;
|
|
840
|
-
|
|
842
|
+
lastRestartedTime?: pulumi.Input<number>;
|
|
841
843
|
lastStateLossTime?: pulumi.Input<number>;
|
|
842
844
|
/**
|
|
843
845
|
* Any supported databricks.getNodeType id.
|
|
@@ -872,16 +874,18 @@ export interface GetClusterClusterInfoArgs {
|
|
|
872
874
|
/**
|
|
873
875
|
* [Runtime version](https://docs.databricks.com/runtime/index.html) of the cluster.
|
|
874
876
|
*/
|
|
875
|
-
sparkVersion
|
|
877
|
+
sparkVersion?: pulumi.Input<string>;
|
|
878
|
+
spec?: pulumi.Input<inputs.GetClusterClusterInfoSpecArgs>;
|
|
876
879
|
/**
|
|
877
880
|
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
878
881
|
*/
|
|
879
882
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
880
883
|
startTime?: pulumi.Input<number>;
|
|
881
|
-
state
|
|
884
|
+
state?: pulumi.Input<string>;
|
|
882
885
|
stateMessage?: pulumi.Input<string>;
|
|
883
|
-
|
|
886
|
+
terminatedTime?: pulumi.Input<number>;
|
|
884
887
|
terminationReason?: pulumi.Input<inputs.GetClusterClusterInfoTerminationReasonArgs>;
|
|
888
|
+
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoWorkloadTypeArgs>;
|
|
885
889
|
}
|
|
886
890
|
export interface GetClusterClusterInfoAutoscale {
|
|
887
891
|
maxWorkers?: number;
|
|
@@ -894,7 +898,9 @@ export interface GetClusterClusterInfoAutoscaleArgs {
|
|
|
894
898
|
export interface GetClusterClusterInfoAwsAttributes {
|
|
895
899
|
availability?: string;
|
|
896
900
|
ebsVolumeCount?: number;
|
|
901
|
+
ebsVolumeIops?: number;
|
|
897
902
|
ebsVolumeSize?: number;
|
|
903
|
+
ebsVolumeThroughput?: number;
|
|
898
904
|
ebsVolumeType?: string;
|
|
899
905
|
firstOnDemand?: number;
|
|
900
906
|
instanceProfileArn?: string;
|
|
@@ -904,7 +910,9 @@ export interface GetClusterClusterInfoAwsAttributes {
|
|
|
904
910
|
export interface GetClusterClusterInfoAwsAttributesArgs {
|
|
905
911
|
availability?: pulumi.Input<string>;
|
|
906
912
|
ebsVolumeCount?: pulumi.Input<number>;
|
|
913
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
907
914
|
ebsVolumeSize?: pulumi.Input<number>;
|
|
915
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
908
916
|
ebsVolumeType?: pulumi.Input<string>;
|
|
909
917
|
firstOnDemand?: pulumi.Input<number>;
|
|
910
918
|
instanceProfileArn?: pulumi.Input<string>;
|
|
@@ -914,13 +922,23 @@ export interface GetClusterClusterInfoAwsAttributesArgs {
|
|
|
914
922
|
export interface GetClusterClusterInfoAzureAttributes {
|
|
915
923
|
availability?: string;
|
|
916
924
|
firstOnDemand?: number;
|
|
925
|
+
logAnalyticsInfo?: inputs.GetClusterClusterInfoAzureAttributesLogAnalyticsInfo;
|
|
917
926
|
spotBidMaxPrice?: number;
|
|
918
927
|
}
|
|
919
928
|
export interface GetClusterClusterInfoAzureAttributesArgs {
|
|
920
929
|
availability?: pulumi.Input<string>;
|
|
921
930
|
firstOnDemand?: pulumi.Input<number>;
|
|
931
|
+
logAnalyticsInfo?: pulumi.Input<inputs.GetClusterClusterInfoAzureAttributesLogAnalyticsInfoArgs>;
|
|
922
932
|
spotBidMaxPrice?: pulumi.Input<number>;
|
|
923
933
|
}
|
|
934
|
+
export interface GetClusterClusterInfoAzureAttributesLogAnalyticsInfo {
|
|
935
|
+
logAnalyticsPrimaryKey?: string;
|
|
936
|
+
logAnalyticsWorkspaceId?: string;
|
|
937
|
+
}
|
|
938
|
+
export interface GetClusterClusterInfoAzureAttributesLogAnalyticsInfoArgs {
|
|
939
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
940
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
941
|
+
}
|
|
924
942
|
export interface GetClusterClusterInfoClusterLogConf {
|
|
925
943
|
dbfs?: inputs.GetClusterClusterInfoClusterLogConfDbfs;
|
|
926
944
|
s3?: inputs.GetClusterClusterInfoClusterLogConfS3;
|
|
@@ -963,19 +981,19 @@ export interface GetClusterClusterInfoClusterLogStatusArgs {
|
|
|
963
981
|
}
|
|
964
982
|
export interface GetClusterClusterInfoDockerImage {
|
|
965
983
|
basicAuth?: inputs.GetClusterClusterInfoDockerImageBasicAuth;
|
|
966
|
-
url
|
|
984
|
+
url?: string;
|
|
967
985
|
}
|
|
968
986
|
export interface GetClusterClusterInfoDockerImageArgs {
|
|
969
987
|
basicAuth?: pulumi.Input<inputs.GetClusterClusterInfoDockerImageBasicAuthArgs>;
|
|
970
|
-
url
|
|
988
|
+
url?: pulumi.Input<string>;
|
|
971
989
|
}
|
|
972
990
|
export interface GetClusterClusterInfoDockerImageBasicAuth {
|
|
973
|
-
password
|
|
974
|
-
username
|
|
991
|
+
password?: string;
|
|
992
|
+
username?: string;
|
|
975
993
|
}
|
|
976
994
|
export interface GetClusterClusterInfoDockerImageBasicAuthArgs {
|
|
977
|
-
password
|
|
978
|
-
username
|
|
995
|
+
password?: pulumi.Input<string>;
|
|
996
|
+
username?: pulumi.Input<string>;
|
|
979
997
|
}
|
|
980
998
|
export interface GetClusterClusterInfoDriver {
|
|
981
999
|
hostPrivateIp?: string;
|
|
@@ -1113,6 +1131,460 @@ export interface GetClusterClusterInfoInitScriptWorkspace {
|
|
|
1113
1131
|
export interface GetClusterClusterInfoInitScriptWorkspaceArgs {
|
|
1114
1132
|
destination: pulumi.Input<string>;
|
|
1115
1133
|
}
|
|
1134
|
+
export interface GetClusterClusterInfoSpec {
|
|
1135
|
+
applyPolicyDefaultValues?: boolean;
|
|
1136
|
+
autoscale?: inputs.GetClusterClusterInfoSpecAutoscale;
|
|
1137
|
+
awsAttributes?: inputs.GetClusterClusterInfoSpecAwsAttributes;
|
|
1138
|
+
azureAttributes?: inputs.GetClusterClusterInfoSpecAzureAttributes;
|
|
1139
|
+
/**
|
|
1140
|
+
* The id of the cluster
|
|
1141
|
+
*/
|
|
1142
|
+
clusterId?: string;
|
|
1143
|
+
clusterLogConf?: inputs.GetClusterClusterInfoSpecClusterLogConf;
|
|
1144
|
+
clusterMountInfos?: inputs.GetClusterClusterInfoSpecClusterMountInfo[];
|
|
1145
|
+
/**
|
|
1146
|
+
* The exact name of the cluster to search
|
|
1147
|
+
*/
|
|
1148
|
+
clusterName?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* Additional tags for cluster resources.
|
|
1151
|
+
*/
|
|
1152
|
+
customTags?: {
|
|
1153
|
+
[key: string]: any;
|
|
1154
|
+
};
|
|
1155
|
+
/**
|
|
1156
|
+
* Security features of the cluster. Unity Catalog requires `SINGLE_USER` or `USER_ISOLATION` mode. `LEGACY_PASSTHROUGH` for passthrough cluster and `LEGACY_TABLE_ACL` for Table ACL cluster. Default to `NONE`, i.e. no security feature enabled.
|
|
1157
|
+
*/
|
|
1158
|
+
dataSecurityMode?: string;
|
|
1159
|
+
dockerImage?: inputs.GetClusterClusterInfoSpecDockerImage;
|
|
1160
|
+
/**
|
|
1161
|
+
* similar to `instancePoolId`, but for driver node.
|
|
1162
|
+
*/
|
|
1163
|
+
driverInstancePoolId?: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* The node type of the Spark driver.
|
|
1166
|
+
*/
|
|
1167
|
+
driverNodeTypeId?: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* Use autoscaling local storage.
|
|
1170
|
+
*/
|
|
1171
|
+
enableElasticDisk?: boolean;
|
|
1172
|
+
/**
|
|
1173
|
+
* Enable local disk encryption.
|
|
1174
|
+
*/
|
|
1175
|
+
enableLocalDiskEncryption?: boolean;
|
|
1176
|
+
gcpAttributes?: inputs.GetClusterClusterInfoSpecGcpAttributes;
|
|
1177
|
+
/**
|
|
1178
|
+
* An optional token to guarantee the idempotency of cluster creation requests.
|
|
1179
|
+
*/
|
|
1180
|
+
idempotencyToken?: string;
|
|
1181
|
+
initScripts?: inputs.GetClusterClusterInfoSpecInitScript[];
|
|
1182
|
+
/**
|
|
1183
|
+
* The pool of idle instances the cluster is attached to.
|
|
1184
|
+
*/
|
|
1185
|
+
instancePoolId?: string;
|
|
1186
|
+
libraries?: inputs.GetClusterClusterInfoSpecLibrary[];
|
|
1187
|
+
/**
|
|
1188
|
+
* Any supported databricks.getNodeType id.
|
|
1189
|
+
*/
|
|
1190
|
+
nodeTypeId?: string;
|
|
1191
|
+
numWorkers?: number;
|
|
1192
|
+
/**
|
|
1193
|
+
* Identifier of Cluster Policy to validate cluster and preset certain defaults.
|
|
1194
|
+
*/
|
|
1195
|
+
policyId?: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* The type of runtime of the cluster
|
|
1198
|
+
*/
|
|
1199
|
+
runtimeEngine?: string;
|
|
1200
|
+
/**
|
|
1201
|
+
* The optional user name of the user to assign to an interactive cluster. This field is required when using standard AAD Passthrough for Azure Data Lake Storage (ADLS) with a single-user cluster (i.e., not high-concurrency clusters).
|
|
1202
|
+
*/
|
|
1203
|
+
singleUserName?: string;
|
|
1204
|
+
/**
|
|
1205
|
+
* Map with key-value pairs to fine-tune Spark clusters.
|
|
1206
|
+
*/
|
|
1207
|
+
sparkConf?: {
|
|
1208
|
+
[key: string]: any;
|
|
1209
|
+
};
|
|
1210
|
+
/**
|
|
1211
|
+
* Map with environment variable key-value pairs to fine-tune Spark clusters. Key-value pairs of the form (X,Y) are exported (i.e., X='Y') while launching the driver and workers.
|
|
1212
|
+
*/
|
|
1213
|
+
sparkEnvVars?: {
|
|
1214
|
+
[key: string]: any;
|
|
1215
|
+
};
|
|
1216
|
+
/**
|
|
1217
|
+
* [Runtime version](https://docs.databricks.com/runtime/index.html) of the cluster.
|
|
1218
|
+
*/
|
|
1219
|
+
sparkVersion: string;
|
|
1220
|
+
/**
|
|
1221
|
+
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
1222
|
+
*/
|
|
1223
|
+
sshPublicKeys?: string[];
|
|
1224
|
+
workloadType?: inputs.GetClusterClusterInfoSpecWorkloadType;
|
|
1225
|
+
}
|
|
1226
|
+
export interface GetClusterClusterInfoSpecArgs {
|
|
1227
|
+
applyPolicyDefaultValues?: pulumi.Input<boolean>;
|
|
1228
|
+
autoscale?: pulumi.Input<inputs.GetClusterClusterInfoSpecAutoscaleArgs>;
|
|
1229
|
+
awsAttributes?: pulumi.Input<inputs.GetClusterClusterInfoSpecAwsAttributesArgs>;
|
|
1230
|
+
azureAttributes?: pulumi.Input<inputs.GetClusterClusterInfoSpecAzureAttributesArgs>;
|
|
1231
|
+
/**
|
|
1232
|
+
* The id of the cluster
|
|
1233
|
+
*/
|
|
1234
|
+
clusterId?: pulumi.Input<string>;
|
|
1235
|
+
clusterLogConf?: pulumi.Input<inputs.GetClusterClusterInfoSpecClusterLogConfArgs>;
|
|
1236
|
+
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.GetClusterClusterInfoSpecClusterMountInfoArgs>[]>;
|
|
1237
|
+
/**
|
|
1238
|
+
* The exact name of the cluster to search
|
|
1239
|
+
*/
|
|
1240
|
+
clusterName?: pulumi.Input<string>;
|
|
1241
|
+
/**
|
|
1242
|
+
* Additional tags for cluster resources.
|
|
1243
|
+
*/
|
|
1244
|
+
customTags?: pulumi.Input<{
|
|
1245
|
+
[key: string]: any;
|
|
1246
|
+
}>;
|
|
1247
|
+
/**
|
|
1248
|
+
* Security features of the cluster. Unity Catalog requires `SINGLE_USER` or `USER_ISOLATION` mode. `LEGACY_PASSTHROUGH` for passthrough cluster and `LEGACY_TABLE_ACL` for Table ACL cluster. Default to `NONE`, i.e. no security feature enabled.
|
|
1249
|
+
*/
|
|
1250
|
+
dataSecurityMode?: pulumi.Input<string>;
|
|
1251
|
+
dockerImage?: pulumi.Input<inputs.GetClusterClusterInfoSpecDockerImageArgs>;
|
|
1252
|
+
/**
|
|
1253
|
+
* similar to `instancePoolId`, but for driver node.
|
|
1254
|
+
*/
|
|
1255
|
+
driverInstancePoolId?: pulumi.Input<string>;
|
|
1256
|
+
/**
|
|
1257
|
+
* The node type of the Spark driver.
|
|
1258
|
+
*/
|
|
1259
|
+
driverNodeTypeId?: pulumi.Input<string>;
|
|
1260
|
+
/**
|
|
1261
|
+
* Use autoscaling local storage.
|
|
1262
|
+
*/
|
|
1263
|
+
enableElasticDisk?: pulumi.Input<boolean>;
|
|
1264
|
+
/**
|
|
1265
|
+
* Enable local disk encryption.
|
|
1266
|
+
*/
|
|
1267
|
+
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
1268
|
+
gcpAttributes?: pulumi.Input<inputs.GetClusterClusterInfoSpecGcpAttributesArgs>;
|
|
1269
|
+
/**
|
|
1270
|
+
* An optional token to guarantee the idempotency of cluster creation requests.
|
|
1271
|
+
*/
|
|
1272
|
+
idempotencyToken?: pulumi.Input<string>;
|
|
1273
|
+
initScripts?: pulumi.Input<pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptArgs>[]>;
|
|
1274
|
+
/**
|
|
1275
|
+
* The pool of idle instances the cluster is attached to.
|
|
1276
|
+
*/
|
|
1277
|
+
instancePoolId?: pulumi.Input<string>;
|
|
1278
|
+
libraries?: pulumi.Input<pulumi.Input<inputs.GetClusterClusterInfoSpecLibraryArgs>[]>;
|
|
1279
|
+
/**
|
|
1280
|
+
* Any supported databricks.getNodeType id.
|
|
1281
|
+
*/
|
|
1282
|
+
nodeTypeId?: pulumi.Input<string>;
|
|
1283
|
+
numWorkers?: pulumi.Input<number>;
|
|
1284
|
+
/**
|
|
1285
|
+
* Identifier of Cluster Policy to validate cluster and preset certain defaults.
|
|
1286
|
+
*/
|
|
1287
|
+
policyId?: pulumi.Input<string>;
|
|
1288
|
+
/**
|
|
1289
|
+
* The type of runtime of the cluster
|
|
1290
|
+
*/
|
|
1291
|
+
runtimeEngine?: pulumi.Input<string>;
|
|
1292
|
+
/**
|
|
1293
|
+
* The optional user name of the user to assign to an interactive cluster. This field is required when using standard AAD Passthrough for Azure Data Lake Storage (ADLS) with a single-user cluster (i.e., not high-concurrency clusters).
|
|
1294
|
+
*/
|
|
1295
|
+
singleUserName?: pulumi.Input<string>;
|
|
1296
|
+
/**
|
|
1297
|
+
* Map with key-value pairs to fine-tune Spark clusters.
|
|
1298
|
+
*/
|
|
1299
|
+
sparkConf?: pulumi.Input<{
|
|
1300
|
+
[key: string]: any;
|
|
1301
|
+
}>;
|
|
1302
|
+
/**
|
|
1303
|
+
* Map with environment variable key-value pairs to fine-tune Spark clusters. Key-value pairs of the form (X,Y) are exported (i.e., X='Y') while launching the driver and workers.
|
|
1304
|
+
*/
|
|
1305
|
+
sparkEnvVars?: pulumi.Input<{
|
|
1306
|
+
[key: string]: any;
|
|
1307
|
+
}>;
|
|
1308
|
+
/**
|
|
1309
|
+
* [Runtime version](https://docs.databricks.com/runtime/index.html) of the cluster.
|
|
1310
|
+
*/
|
|
1311
|
+
sparkVersion: pulumi.Input<string>;
|
|
1312
|
+
/**
|
|
1313
|
+
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
1314
|
+
*/
|
|
1315
|
+
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1316
|
+
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkloadTypeArgs>;
|
|
1317
|
+
}
|
|
1318
|
+
export interface GetClusterClusterInfoSpecAutoscale {
|
|
1319
|
+
maxWorkers?: number;
|
|
1320
|
+
minWorkers?: number;
|
|
1321
|
+
}
|
|
1322
|
+
export interface GetClusterClusterInfoSpecAutoscaleArgs {
|
|
1323
|
+
maxWorkers?: pulumi.Input<number>;
|
|
1324
|
+
minWorkers?: pulumi.Input<number>;
|
|
1325
|
+
}
|
|
1326
|
+
export interface GetClusterClusterInfoSpecAwsAttributes {
|
|
1327
|
+
availability?: string;
|
|
1328
|
+
ebsVolumeCount?: number;
|
|
1329
|
+
ebsVolumeIops?: number;
|
|
1330
|
+
ebsVolumeSize?: number;
|
|
1331
|
+
ebsVolumeThroughput?: number;
|
|
1332
|
+
ebsVolumeType?: string;
|
|
1333
|
+
firstOnDemand?: number;
|
|
1334
|
+
instanceProfileArn?: string;
|
|
1335
|
+
spotBidPricePercent?: number;
|
|
1336
|
+
zoneId?: string;
|
|
1337
|
+
}
|
|
1338
|
+
export interface GetClusterClusterInfoSpecAwsAttributesArgs {
|
|
1339
|
+
availability?: pulumi.Input<string>;
|
|
1340
|
+
ebsVolumeCount?: pulumi.Input<number>;
|
|
1341
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
1342
|
+
ebsVolumeSize?: pulumi.Input<number>;
|
|
1343
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
1344
|
+
ebsVolumeType?: pulumi.Input<string>;
|
|
1345
|
+
firstOnDemand?: pulumi.Input<number>;
|
|
1346
|
+
instanceProfileArn?: pulumi.Input<string>;
|
|
1347
|
+
spotBidPricePercent?: pulumi.Input<number>;
|
|
1348
|
+
zoneId?: pulumi.Input<string>;
|
|
1349
|
+
}
|
|
1350
|
+
export interface GetClusterClusterInfoSpecAzureAttributes {
|
|
1351
|
+
availability?: string;
|
|
1352
|
+
firstOnDemand?: number;
|
|
1353
|
+
logAnalyticsInfo?: inputs.GetClusterClusterInfoSpecAzureAttributesLogAnalyticsInfo;
|
|
1354
|
+
spotBidMaxPrice?: number;
|
|
1355
|
+
}
|
|
1356
|
+
export interface GetClusterClusterInfoSpecAzureAttributesArgs {
|
|
1357
|
+
availability?: pulumi.Input<string>;
|
|
1358
|
+
firstOnDemand?: pulumi.Input<number>;
|
|
1359
|
+
logAnalyticsInfo?: pulumi.Input<inputs.GetClusterClusterInfoSpecAzureAttributesLogAnalyticsInfoArgs>;
|
|
1360
|
+
spotBidMaxPrice?: pulumi.Input<number>;
|
|
1361
|
+
}
|
|
1362
|
+
export interface GetClusterClusterInfoSpecAzureAttributesLogAnalyticsInfo {
|
|
1363
|
+
logAnalyticsPrimaryKey?: string;
|
|
1364
|
+
logAnalyticsWorkspaceId?: string;
|
|
1365
|
+
}
|
|
1366
|
+
export interface GetClusterClusterInfoSpecAzureAttributesLogAnalyticsInfoArgs {
|
|
1367
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
1368
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
1369
|
+
}
|
|
1370
|
+
export interface GetClusterClusterInfoSpecClusterLogConf {
|
|
1371
|
+
dbfs?: inputs.GetClusterClusterInfoSpecClusterLogConfDbfs;
|
|
1372
|
+
s3?: inputs.GetClusterClusterInfoSpecClusterLogConfS3;
|
|
1373
|
+
}
|
|
1374
|
+
export interface GetClusterClusterInfoSpecClusterLogConfArgs {
|
|
1375
|
+
dbfs?: pulumi.Input<inputs.GetClusterClusterInfoSpecClusterLogConfDbfsArgs>;
|
|
1376
|
+
s3?: pulumi.Input<inputs.GetClusterClusterInfoSpecClusterLogConfS3Args>;
|
|
1377
|
+
}
|
|
1378
|
+
export interface GetClusterClusterInfoSpecClusterLogConfDbfs {
|
|
1379
|
+
destination: string;
|
|
1380
|
+
}
|
|
1381
|
+
export interface GetClusterClusterInfoSpecClusterLogConfDbfsArgs {
|
|
1382
|
+
destination: pulumi.Input<string>;
|
|
1383
|
+
}
|
|
1384
|
+
export interface GetClusterClusterInfoSpecClusterLogConfS3 {
|
|
1385
|
+
cannedAcl?: string;
|
|
1386
|
+
destination: string;
|
|
1387
|
+
enableEncryption?: boolean;
|
|
1388
|
+
encryptionType?: string;
|
|
1389
|
+
endpoint?: string;
|
|
1390
|
+
kmsKey?: string;
|
|
1391
|
+
region?: string;
|
|
1392
|
+
}
|
|
1393
|
+
export interface GetClusterClusterInfoSpecClusterLogConfS3Args {
|
|
1394
|
+
cannedAcl?: pulumi.Input<string>;
|
|
1395
|
+
destination: pulumi.Input<string>;
|
|
1396
|
+
enableEncryption?: pulumi.Input<boolean>;
|
|
1397
|
+
encryptionType?: pulumi.Input<string>;
|
|
1398
|
+
endpoint?: pulumi.Input<string>;
|
|
1399
|
+
kmsKey?: pulumi.Input<string>;
|
|
1400
|
+
region?: pulumi.Input<string>;
|
|
1401
|
+
}
|
|
1402
|
+
export interface GetClusterClusterInfoSpecClusterMountInfo {
|
|
1403
|
+
localMountDirPath: string;
|
|
1404
|
+
networkFilesystemInfo: inputs.GetClusterClusterInfoSpecClusterMountInfoNetworkFilesystemInfo;
|
|
1405
|
+
remoteMountDirPath?: string;
|
|
1406
|
+
}
|
|
1407
|
+
export interface GetClusterClusterInfoSpecClusterMountInfoArgs {
|
|
1408
|
+
localMountDirPath: pulumi.Input<string>;
|
|
1409
|
+
networkFilesystemInfo: pulumi.Input<inputs.GetClusterClusterInfoSpecClusterMountInfoNetworkFilesystemInfoArgs>;
|
|
1410
|
+
remoteMountDirPath?: pulumi.Input<string>;
|
|
1411
|
+
}
|
|
1412
|
+
export interface GetClusterClusterInfoSpecClusterMountInfoNetworkFilesystemInfo {
|
|
1413
|
+
mountOptions?: string;
|
|
1414
|
+
serverAddress: string;
|
|
1415
|
+
}
|
|
1416
|
+
export interface GetClusterClusterInfoSpecClusterMountInfoNetworkFilesystemInfoArgs {
|
|
1417
|
+
mountOptions?: pulumi.Input<string>;
|
|
1418
|
+
serverAddress: pulumi.Input<string>;
|
|
1419
|
+
}
|
|
1420
|
+
export interface GetClusterClusterInfoSpecDockerImage {
|
|
1421
|
+
basicAuth?: inputs.GetClusterClusterInfoSpecDockerImageBasicAuth;
|
|
1422
|
+
url: string;
|
|
1423
|
+
}
|
|
1424
|
+
export interface GetClusterClusterInfoSpecDockerImageArgs {
|
|
1425
|
+
basicAuth?: pulumi.Input<inputs.GetClusterClusterInfoSpecDockerImageBasicAuthArgs>;
|
|
1426
|
+
url: pulumi.Input<string>;
|
|
1427
|
+
}
|
|
1428
|
+
export interface GetClusterClusterInfoSpecDockerImageBasicAuth {
|
|
1429
|
+
password: string;
|
|
1430
|
+
username: string;
|
|
1431
|
+
}
|
|
1432
|
+
export interface GetClusterClusterInfoSpecDockerImageBasicAuthArgs {
|
|
1433
|
+
password: pulumi.Input<string>;
|
|
1434
|
+
username: pulumi.Input<string>;
|
|
1435
|
+
}
|
|
1436
|
+
export interface GetClusterClusterInfoSpecGcpAttributes {
|
|
1437
|
+
availability?: string;
|
|
1438
|
+
bootDiskSize?: number;
|
|
1439
|
+
googleServiceAccount?: string;
|
|
1440
|
+
localSsdCount?: number;
|
|
1441
|
+
usePreemptibleExecutors?: boolean;
|
|
1442
|
+
zoneId?: string;
|
|
1443
|
+
}
|
|
1444
|
+
export interface GetClusterClusterInfoSpecGcpAttributesArgs {
|
|
1445
|
+
availability?: pulumi.Input<string>;
|
|
1446
|
+
bootDiskSize?: pulumi.Input<number>;
|
|
1447
|
+
googleServiceAccount?: pulumi.Input<string>;
|
|
1448
|
+
localSsdCount?: pulumi.Input<number>;
|
|
1449
|
+
usePreemptibleExecutors?: pulumi.Input<boolean>;
|
|
1450
|
+
zoneId?: pulumi.Input<string>;
|
|
1451
|
+
}
|
|
1452
|
+
export interface GetClusterClusterInfoSpecInitScript {
|
|
1453
|
+
abfss?: inputs.GetClusterClusterInfoSpecInitScriptAbfss;
|
|
1454
|
+
/**
|
|
1455
|
+
* @deprecated For init scripts use 'volumes', 'workspace' or cloud storage location instead of 'dbfs'.
|
|
1456
|
+
*/
|
|
1457
|
+
dbfs?: inputs.GetClusterClusterInfoSpecInitScriptDbfs;
|
|
1458
|
+
file?: inputs.GetClusterClusterInfoSpecInitScriptFile;
|
|
1459
|
+
gcs?: inputs.GetClusterClusterInfoSpecInitScriptGcs;
|
|
1460
|
+
s3?: inputs.GetClusterClusterInfoSpecInitScriptS3;
|
|
1461
|
+
volumes?: inputs.GetClusterClusterInfoSpecInitScriptVolumes;
|
|
1462
|
+
workspace?: inputs.GetClusterClusterInfoSpecInitScriptWorkspace;
|
|
1463
|
+
}
|
|
1464
|
+
export interface GetClusterClusterInfoSpecInitScriptArgs {
|
|
1465
|
+
abfss?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptAbfssArgs>;
|
|
1466
|
+
/**
|
|
1467
|
+
* @deprecated For init scripts use 'volumes', 'workspace' or cloud storage location instead of 'dbfs'.
|
|
1468
|
+
*/
|
|
1469
|
+
dbfs?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptDbfsArgs>;
|
|
1470
|
+
file?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptFileArgs>;
|
|
1471
|
+
gcs?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptGcsArgs>;
|
|
1472
|
+
s3?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptS3Args>;
|
|
1473
|
+
volumes?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptVolumesArgs>;
|
|
1474
|
+
workspace?: pulumi.Input<inputs.GetClusterClusterInfoSpecInitScriptWorkspaceArgs>;
|
|
1475
|
+
}
|
|
1476
|
+
export interface GetClusterClusterInfoSpecInitScriptAbfss {
|
|
1477
|
+
destination: string;
|
|
1478
|
+
}
|
|
1479
|
+
export interface GetClusterClusterInfoSpecInitScriptAbfssArgs {
|
|
1480
|
+
destination: pulumi.Input<string>;
|
|
1481
|
+
}
|
|
1482
|
+
export interface GetClusterClusterInfoSpecInitScriptDbfs {
|
|
1483
|
+
destination: string;
|
|
1484
|
+
}
|
|
1485
|
+
export interface GetClusterClusterInfoSpecInitScriptDbfsArgs {
|
|
1486
|
+
destination: pulumi.Input<string>;
|
|
1487
|
+
}
|
|
1488
|
+
export interface GetClusterClusterInfoSpecInitScriptFile {
|
|
1489
|
+
destination: string;
|
|
1490
|
+
}
|
|
1491
|
+
export interface GetClusterClusterInfoSpecInitScriptFileArgs {
|
|
1492
|
+
destination: pulumi.Input<string>;
|
|
1493
|
+
}
|
|
1494
|
+
export interface GetClusterClusterInfoSpecInitScriptGcs {
|
|
1495
|
+
destination: string;
|
|
1496
|
+
}
|
|
1497
|
+
export interface GetClusterClusterInfoSpecInitScriptGcsArgs {
|
|
1498
|
+
destination: pulumi.Input<string>;
|
|
1499
|
+
}
|
|
1500
|
+
export interface GetClusterClusterInfoSpecInitScriptS3 {
|
|
1501
|
+
cannedAcl?: string;
|
|
1502
|
+
destination: string;
|
|
1503
|
+
enableEncryption?: boolean;
|
|
1504
|
+
encryptionType?: string;
|
|
1505
|
+
endpoint?: string;
|
|
1506
|
+
kmsKey?: string;
|
|
1507
|
+
region?: string;
|
|
1508
|
+
}
|
|
1509
|
+
export interface GetClusterClusterInfoSpecInitScriptS3Args {
|
|
1510
|
+
cannedAcl?: pulumi.Input<string>;
|
|
1511
|
+
destination: pulumi.Input<string>;
|
|
1512
|
+
enableEncryption?: pulumi.Input<boolean>;
|
|
1513
|
+
encryptionType?: pulumi.Input<string>;
|
|
1514
|
+
endpoint?: pulumi.Input<string>;
|
|
1515
|
+
kmsKey?: pulumi.Input<string>;
|
|
1516
|
+
region?: pulumi.Input<string>;
|
|
1517
|
+
}
|
|
1518
|
+
export interface GetClusterClusterInfoSpecInitScriptVolumes {
|
|
1519
|
+
destination: string;
|
|
1520
|
+
}
|
|
1521
|
+
export interface GetClusterClusterInfoSpecInitScriptVolumesArgs {
|
|
1522
|
+
destination: pulumi.Input<string>;
|
|
1523
|
+
}
|
|
1524
|
+
export interface GetClusterClusterInfoSpecInitScriptWorkspace {
|
|
1525
|
+
destination: string;
|
|
1526
|
+
}
|
|
1527
|
+
export interface GetClusterClusterInfoSpecInitScriptWorkspaceArgs {
|
|
1528
|
+
destination: pulumi.Input<string>;
|
|
1529
|
+
}
|
|
1530
|
+
export interface GetClusterClusterInfoSpecLibrary {
|
|
1531
|
+
cran?: inputs.GetClusterClusterInfoSpecLibraryCran;
|
|
1532
|
+
egg?: string;
|
|
1533
|
+
jar?: string;
|
|
1534
|
+
maven?: inputs.GetClusterClusterInfoSpecLibraryMaven;
|
|
1535
|
+
pypi?: inputs.GetClusterClusterInfoSpecLibraryPypi;
|
|
1536
|
+
requirements?: string;
|
|
1537
|
+
whl?: string;
|
|
1538
|
+
}
|
|
1539
|
+
export interface GetClusterClusterInfoSpecLibraryArgs {
|
|
1540
|
+
cran?: pulumi.Input<inputs.GetClusterClusterInfoSpecLibraryCranArgs>;
|
|
1541
|
+
egg?: pulumi.Input<string>;
|
|
1542
|
+
jar?: pulumi.Input<string>;
|
|
1543
|
+
maven?: pulumi.Input<inputs.GetClusterClusterInfoSpecLibraryMavenArgs>;
|
|
1544
|
+
pypi?: pulumi.Input<inputs.GetClusterClusterInfoSpecLibraryPypiArgs>;
|
|
1545
|
+
requirements?: pulumi.Input<string>;
|
|
1546
|
+
whl?: pulumi.Input<string>;
|
|
1547
|
+
}
|
|
1548
|
+
export interface GetClusterClusterInfoSpecLibraryCran {
|
|
1549
|
+
package: string;
|
|
1550
|
+
repo?: string;
|
|
1551
|
+
}
|
|
1552
|
+
export interface GetClusterClusterInfoSpecLibraryCranArgs {
|
|
1553
|
+
package: pulumi.Input<string>;
|
|
1554
|
+
repo?: pulumi.Input<string>;
|
|
1555
|
+
}
|
|
1556
|
+
export interface GetClusterClusterInfoSpecLibraryMaven {
|
|
1557
|
+
coordinates: string;
|
|
1558
|
+
exclusions?: string[];
|
|
1559
|
+
repo?: string;
|
|
1560
|
+
}
|
|
1561
|
+
export interface GetClusterClusterInfoSpecLibraryMavenArgs {
|
|
1562
|
+
coordinates: pulumi.Input<string>;
|
|
1563
|
+
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1564
|
+
repo?: pulumi.Input<string>;
|
|
1565
|
+
}
|
|
1566
|
+
export interface GetClusterClusterInfoSpecLibraryPypi {
|
|
1567
|
+
package: string;
|
|
1568
|
+
repo?: string;
|
|
1569
|
+
}
|
|
1570
|
+
export interface GetClusterClusterInfoSpecLibraryPypiArgs {
|
|
1571
|
+
package: pulumi.Input<string>;
|
|
1572
|
+
repo?: pulumi.Input<string>;
|
|
1573
|
+
}
|
|
1574
|
+
export interface GetClusterClusterInfoSpecWorkloadType {
|
|
1575
|
+
clients: inputs.GetClusterClusterInfoSpecWorkloadTypeClients;
|
|
1576
|
+
}
|
|
1577
|
+
export interface GetClusterClusterInfoSpecWorkloadTypeArgs {
|
|
1578
|
+
clients: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkloadTypeClientsArgs>;
|
|
1579
|
+
}
|
|
1580
|
+
export interface GetClusterClusterInfoSpecWorkloadTypeClients {
|
|
1581
|
+
jobs?: boolean;
|
|
1582
|
+
notebooks?: boolean;
|
|
1583
|
+
}
|
|
1584
|
+
export interface GetClusterClusterInfoSpecWorkloadTypeClientsArgs {
|
|
1585
|
+
jobs?: pulumi.Input<boolean>;
|
|
1586
|
+
notebooks?: pulumi.Input<boolean>;
|
|
1587
|
+
}
|
|
1116
1588
|
export interface GetClusterClusterInfoTerminationReason {
|
|
1117
1589
|
code?: string;
|
|
1118
1590
|
parameters?: {
|
|
@@ -1127,6 +1599,20 @@ export interface GetClusterClusterInfoTerminationReasonArgs {
|
|
|
1127
1599
|
}>;
|
|
1128
1600
|
type?: pulumi.Input<string>;
|
|
1129
1601
|
}
|
|
1602
|
+
export interface GetClusterClusterInfoWorkloadType {
|
|
1603
|
+
clients: inputs.GetClusterClusterInfoWorkloadTypeClients;
|
|
1604
|
+
}
|
|
1605
|
+
export interface GetClusterClusterInfoWorkloadTypeArgs {
|
|
1606
|
+
clients: pulumi.Input<inputs.GetClusterClusterInfoWorkloadTypeClientsArgs>;
|
|
1607
|
+
}
|
|
1608
|
+
export interface GetClusterClusterInfoWorkloadTypeClients {
|
|
1609
|
+
jobs?: boolean;
|
|
1610
|
+
notebooks?: boolean;
|
|
1611
|
+
}
|
|
1612
|
+
export interface GetClusterClusterInfoWorkloadTypeClientsArgs {
|
|
1613
|
+
jobs?: pulumi.Input<boolean>;
|
|
1614
|
+
notebooks?: pulumi.Input<boolean>;
|
|
1615
|
+
}
|
|
1130
1616
|
export interface GetCurrentMetastoreMetastoreInfo {
|
|
1131
1617
|
cloud?: string;
|
|
1132
1618
|
/**
|
|
@@ -4207,6 +4693,168 @@ export interface GetMlflowModelTagArgs {
|
|
|
4207
4693
|
key?: pulumi.Input<string>;
|
|
4208
4694
|
value?: pulumi.Input<string>;
|
|
4209
4695
|
}
|
|
4696
|
+
export interface GetSchemaSchemaInfo {
|
|
4697
|
+
/**
|
|
4698
|
+
* indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
|
|
4699
|
+
*/
|
|
4700
|
+
browseOnly?: boolean;
|
|
4701
|
+
/**
|
|
4702
|
+
* the name of the catalog where the schema is.
|
|
4703
|
+
*/
|
|
4704
|
+
catalogName?: string;
|
|
4705
|
+
/**
|
|
4706
|
+
* the type of the parent catalog.
|
|
4707
|
+
*/
|
|
4708
|
+
catalogType?: string;
|
|
4709
|
+
/**
|
|
4710
|
+
* the comment attached to the volume
|
|
4711
|
+
*/
|
|
4712
|
+
comment?: string;
|
|
4713
|
+
/**
|
|
4714
|
+
* time at which this schema was created, in epoch milliseconds.
|
|
4715
|
+
*/
|
|
4716
|
+
createdAt?: number;
|
|
4717
|
+
/**
|
|
4718
|
+
* username of schema creator.
|
|
4719
|
+
*/
|
|
4720
|
+
createdBy?: string;
|
|
4721
|
+
/**
|
|
4722
|
+
* information about actual state of predictive optimization.
|
|
4723
|
+
*/
|
|
4724
|
+
effectivePredictiveOptimizationFlag?: inputs.GetSchemaSchemaInfoEffectivePredictiveOptimizationFlag;
|
|
4725
|
+
/**
|
|
4726
|
+
* whether predictive optimization should be enabled for this object and objects under it.
|
|
4727
|
+
*/
|
|
4728
|
+
enablePredictiveOptimization?: string;
|
|
4729
|
+
/**
|
|
4730
|
+
* the two-level (fully qualified) name of the schema
|
|
4731
|
+
*/
|
|
4732
|
+
fullName?: string;
|
|
4733
|
+
/**
|
|
4734
|
+
* the unique identifier of the metastore
|
|
4735
|
+
*/
|
|
4736
|
+
metastoreId?: string;
|
|
4737
|
+
/**
|
|
4738
|
+
* a fully qualified name of databricks_schema: *`catalog`.`schema`*
|
|
4739
|
+
*/
|
|
4740
|
+
name?: string;
|
|
4741
|
+
/**
|
|
4742
|
+
* the identifier of the user who owns the schema
|
|
4743
|
+
*/
|
|
4744
|
+
owner?: string;
|
|
4745
|
+
/**
|
|
4746
|
+
* map of properties set on the schema
|
|
4747
|
+
*/
|
|
4748
|
+
properties?: {
|
|
4749
|
+
[key: string]: any;
|
|
4750
|
+
};
|
|
4751
|
+
/**
|
|
4752
|
+
* the unique identifier of the volume
|
|
4753
|
+
*/
|
|
4754
|
+
schemaId?: string;
|
|
4755
|
+
/**
|
|
4756
|
+
* the storage location on the cloud.
|
|
4757
|
+
*/
|
|
4758
|
+
storageLocation?: string;
|
|
4759
|
+
/**
|
|
4760
|
+
* storage root URL for managed tables within schema.
|
|
4761
|
+
*/
|
|
4762
|
+
storageRoot?: string;
|
|
4763
|
+
/**
|
|
4764
|
+
* the timestamp of the last time changes were made to the schema
|
|
4765
|
+
*/
|
|
4766
|
+
updatedAt?: number;
|
|
4767
|
+
/**
|
|
4768
|
+
* the identifier of the user who updated the schema last time
|
|
4769
|
+
*/
|
|
4770
|
+
updatedBy?: string;
|
|
4771
|
+
}
|
|
4772
|
+
export interface GetSchemaSchemaInfoArgs {
|
|
4773
|
+
/**
|
|
4774
|
+
* indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
|
|
4775
|
+
*/
|
|
4776
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
4777
|
+
/**
|
|
4778
|
+
* the name of the catalog where the schema is.
|
|
4779
|
+
*/
|
|
4780
|
+
catalogName?: pulumi.Input<string>;
|
|
4781
|
+
/**
|
|
4782
|
+
* the type of the parent catalog.
|
|
4783
|
+
*/
|
|
4784
|
+
catalogType?: pulumi.Input<string>;
|
|
4785
|
+
/**
|
|
4786
|
+
* the comment attached to the volume
|
|
4787
|
+
*/
|
|
4788
|
+
comment?: pulumi.Input<string>;
|
|
4789
|
+
/**
|
|
4790
|
+
* time at which this schema was created, in epoch milliseconds.
|
|
4791
|
+
*/
|
|
4792
|
+
createdAt?: pulumi.Input<number>;
|
|
4793
|
+
/**
|
|
4794
|
+
* username of schema creator.
|
|
4795
|
+
*/
|
|
4796
|
+
createdBy?: pulumi.Input<string>;
|
|
4797
|
+
/**
|
|
4798
|
+
* information about actual state of predictive optimization.
|
|
4799
|
+
*/
|
|
4800
|
+
effectivePredictiveOptimizationFlag?: pulumi.Input<inputs.GetSchemaSchemaInfoEffectivePredictiveOptimizationFlagArgs>;
|
|
4801
|
+
/**
|
|
4802
|
+
* whether predictive optimization should be enabled for this object and objects under it.
|
|
4803
|
+
*/
|
|
4804
|
+
enablePredictiveOptimization?: pulumi.Input<string>;
|
|
4805
|
+
/**
|
|
4806
|
+
* the two-level (fully qualified) name of the schema
|
|
4807
|
+
*/
|
|
4808
|
+
fullName?: pulumi.Input<string>;
|
|
4809
|
+
/**
|
|
4810
|
+
* the unique identifier of the metastore
|
|
4811
|
+
*/
|
|
4812
|
+
metastoreId?: pulumi.Input<string>;
|
|
4813
|
+
/**
|
|
4814
|
+
* a fully qualified name of databricks_schema: *`catalog`.`schema`*
|
|
4815
|
+
*/
|
|
4816
|
+
name?: pulumi.Input<string>;
|
|
4817
|
+
/**
|
|
4818
|
+
* the identifier of the user who owns the schema
|
|
4819
|
+
*/
|
|
4820
|
+
owner?: pulumi.Input<string>;
|
|
4821
|
+
/**
|
|
4822
|
+
* map of properties set on the schema
|
|
4823
|
+
*/
|
|
4824
|
+
properties?: pulumi.Input<{
|
|
4825
|
+
[key: string]: any;
|
|
4826
|
+
}>;
|
|
4827
|
+
/**
|
|
4828
|
+
* the unique identifier of the volume
|
|
4829
|
+
*/
|
|
4830
|
+
schemaId?: pulumi.Input<string>;
|
|
4831
|
+
/**
|
|
4832
|
+
* the storage location on the cloud.
|
|
4833
|
+
*/
|
|
4834
|
+
storageLocation?: pulumi.Input<string>;
|
|
4835
|
+
/**
|
|
4836
|
+
* storage root URL for managed tables within schema.
|
|
4837
|
+
*/
|
|
4838
|
+
storageRoot?: pulumi.Input<string>;
|
|
4839
|
+
/**
|
|
4840
|
+
* the timestamp of the last time changes were made to the schema
|
|
4841
|
+
*/
|
|
4842
|
+
updatedAt?: pulumi.Input<number>;
|
|
4843
|
+
/**
|
|
4844
|
+
* the identifier of the user who updated the schema last time
|
|
4845
|
+
*/
|
|
4846
|
+
updatedBy?: pulumi.Input<string>;
|
|
4847
|
+
}
|
|
4848
|
+
export interface GetSchemaSchemaInfoEffectivePredictiveOptimizationFlag {
|
|
4849
|
+
inheritedFromName?: string;
|
|
4850
|
+
inheritedFromType?: string;
|
|
4851
|
+
value: string;
|
|
4852
|
+
}
|
|
4853
|
+
export interface GetSchemaSchemaInfoEffectivePredictiveOptimizationFlagArgs {
|
|
4854
|
+
inheritedFromName?: pulumi.Input<string>;
|
|
4855
|
+
inheritedFromType?: pulumi.Input<string>;
|
|
4856
|
+
value: pulumi.Input<string>;
|
|
4857
|
+
}
|
|
4210
4858
|
export interface GetShareObject {
|
|
4211
4859
|
addedAt?: number;
|
|
4212
4860
|
addedBy?: string;
|
|
@@ -4857,6 +5505,160 @@ export interface GetTableTableInfoViewDependenciesDependencyTable {
|
|
|
4857
5505
|
export interface GetTableTableInfoViewDependenciesDependencyTableArgs {
|
|
4858
5506
|
tableFullName: pulumi.Input<string>;
|
|
4859
5507
|
}
|
|
5508
|
+
export interface GetVolumeVolumeInfo {
|
|
5509
|
+
/**
|
|
5510
|
+
* the AWS access point to use when accessing s3 bucket for this volume's external location
|
|
5511
|
+
*/
|
|
5512
|
+
accessPoint?: string;
|
|
5513
|
+
/**
|
|
5514
|
+
* indicates whether the principal is limited to retrieving metadata for the volume through the BROWSE privilege when includeBrowse is enabled in the request.
|
|
5515
|
+
*/
|
|
5516
|
+
browseOnly?: boolean;
|
|
5517
|
+
/**
|
|
5518
|
+
* the name of the catalog where the schema and the volume are
|
|
5519
|
+
*/
|
|
5520
|
+
catalogName?: string;
|
|
5521
|
+
/**
|
|
5522
|
+
* the comment attached to the volume
|
|
5523
|
+
*/
|
|
5524
|
+
comment?: string;
|
|
5525
|
+
/**
|
|
5526
|
+
* the Unix timestamp at the volume's creation
|
|
5527
|
+
*/
|
|
5528
|
+
createdAt?: number;
|
|
5529
|
+
/**
|
|
5530
|
+
* the identifier of the user who created the volume
|
|
5531
|
+
*/
|
|
5532
|
+
createdBy?: string;
|
|
5533
|
+
/**
|
|
5534
|
+
* encryption options that apply to clients connecting to cloud storage
|
|
5535
|
+
*/
|
|
5536
|
+
encryptionDetails?: inputs.GetVolumeVolumeInfoEncryptionDetails;
|
|
5537
|
+
/**
|
|
5538
|
+
* the three-level (fully qualified) name of the volume
|
|
5539
|
+
*/
|
|
5540
|
+
fullName?: string;
|
|
5541
|
+
/**
|
|
5542
|
+
* the unique identifier of the metastore
|
|
5543
|
+
*/
|
|
5544
|
+
metastoreId?: string;
|
|
5545
|
+
/**
|
|
5546
|
+
* a fully qualified name of databricks_volume: *`catalog`.`schema`.`volume`*
|
|
5547
|
+
*/
|
|
5548
|
+
name?: string;
|
|
5549
|
+
/**
|
|
5550
|
+
* the identifier of the user who owns the volume
|
|
5551
|
+
*/
|
|
5552
|
+
owner?: string;
|
|
5553
|
+
/**
|
|
5554
|
+
* the name of the schema where the volume is
|
|
5555
|
+
*/
|
|
5556
|
+
schemaName?: string;
|
|
5557
|
+
/**
|
|
5558
|
+
* the storage location on the cloud
|
|
5559
|
+
*/
|
|
5560
|
+
storageLocation?: string;
|
|
5561
|
+
/**
|
|
5562
|
+
* the timestamp of the last time changes were made to the volume
|
|
5563
|
+
*/
|
|
5564
|
+
updatedAt?: number;
|
|
5565
|
+
/**
|
|
5566
|
+
* the identifier of the user who updated the volume last time
|
|
5567
|
+
*/
|
|
5568
|
+
updatedBy?: string;
|
|
5569
|
+
/**
|
|
5570
|
+
* the unique identifier of the volume
|
|
5571
|
+
*/
|
|
5572
|
+
volumeId?: string;
|
|
5573
|
+
/**
|
|
5574
|
+
* whether the volume is `MANAGED` or `EXTERNAL`
|
|
5575
|
+
*/
|
|
5576
|
+
volumeType?: string;
|
|
5577
|
+
}
|
|
5578
|
+
export interface GetVolumeVolumeInfoArgs {
|
|
5579
|
+
/**
|
|
5580
|
+
* the AWS access point to use when accessing s3 bucket for this volume's external location
|
|
5581
|
+
*/
|
|
5582
|
+
accessPoint?: pulumi.Input<string>;
|
|
5583
|
+
/**
|
|
5584
|
+
* indicates whether the principal is limited to retrieving metadata for the volume through the BROWSE privilege when includeBrowse is enabled in the request.
|
|
5585
|
+
*/
|
|
5586
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
5587
|
+
/**
|
|
5588
|
+
* the name of the catalog where the schema and the volume are
|
|
5589
|
+
*/
|
|
5590
|
+
catalogName?: pulumi.Input<string>;
|
|
5591
|
+
/**
|
|
5592
|
+
* the comment attached to the volume
|
|
5593
|
+
*/
|
|
5594
|
+
comment?: pulumi.Input<string>;
|
|
5595
|
+
/**
|
|
5596
|
+
* the Unix timestamp at the volume's creation
|
|
5597
|
+
*/
|
|
5598
|
+
createdAt?: pulumi.Input<number>;
|
|
5599
|
+
/**
|
|
5600
|
+
* the identifier of the user who created the volume
|
|
5601
|
+
*/
|
|
5602
|
+
createdBy?: pulumi.Input<string>;
|
|
5603
|
+
/**
|
|
5604
|
+
* encryption options that apply to clients connecting to cloud storage
|
|
5605
|
+
*/
|
|
5606
|
+
encryptionDetails?: pulumi.Input<inputs.GetVolumeVolumeInfoEncryptionDetailsArgs>;
|
|
5607
|
+
/**
|
|
5608
|
+
* the three-level (fully qualified) name of the volume
|
|
5609
|
+
*/
|
|
5610
|
+
fullName?: pulumi.Input<string>;
|
|
5611
|
+
/**
|
|
5612
|
+
* the unique identifier of the metastore
|
|
5613
|
+
*/
|
|
5614
|
+
metastoreId?: pulumi.Input<string>;
|
|
5615
|
+
/**
|
|
5616
|
+
* a fully qualified name of databricks_volume: *`catalog`.`schema`.`volume`*
|
|
5617
|
+
*/
|
|
5618
|
+
name?: pulumi.Input<string>;
|
|
5619
|
+
/**
|
|
5620
|
+
* the identifier of the user who owns the volume
|
|
5621
|
+
*/
|
|
5622
|
+
owner?: pulumi.Input<string>;
|
|
5623
|
+
/**
|
|
5624
|
+
* the name of the schema where the volume is
|
|
5625
|
+
*/
|
|
5626
|
+
schemaName?: pulumi.Input<string>;
|
|
5627
|
+
/**
|
|
5628
|
+
* the storage location on the cloud
|
|
5629
|
+
*/
|
|
5630
|
+
storageLocation?: pulumi.Input<string>;
|
|
5631
|
+
/**
|
|
5632
|
+
* the timestamp of the last time changes were made to the volume
|
|
5633
|
+
*/
|
|
5634
|
+
updatedAt?: pulumi.Input<number>;
|
|
5635
|
+
/**
|
|
5636
|
+
* the identifier of the user who updated the volume last time
|
|
5637
|
+
*/
|
|
5638
|
+
updatedBy?: pulumi.Input<string>;
|
|
5639
|
+
/**
|
|
5640
|
+
* the unique identifier of the volume
|
|
5641
|
+
*/
|
|
5642
|
+
volumeId?: pulumi.Input<string>;
|
|
5643
|
+
/**
|
|
5644
|
+
* whether the volume is `MANAGED` or `EXTERNAL`
|
|
5645
|
+
*/
|
|
5646
|
+
volumeType?: pulumi.Input<string>;
|
|
5647
|
+
}
|
|
5648
|
+
export interface GetVolumeVolumeInfoEncryptionDetails {
|
|
5649
|
+
sseEncryptionDetails?: inputs.GetVolumeVolumeInfoEncryptionDetailsSseEncryptionDetails;
|
|
5650
|
+
}
|
|
5651
|
+
export interface GetVolumeVolumeInfoEncryptionDetailsArgs {
|
|
5652
|
+
sseEncryptionDetails?: pulumi.Input<inputs.GetVolumeVolumeInfoEncryptionDetailsSseEncryptionDetailsArgs>;
|
|
5653
|
+
}
|
|
5654
|
+
export interface GetVolumeVolumeInfoEncryptionDetailsSseEncryptionDetails {
|
|
5655
|
+
algorithm?: string;
|
|
5656
|
+
awsKmsKeyArn?: string;
|
|
5657
|
+
}
|
|
5658
|
+
export interface GetVolumeVolumeInfoEncryptionDetailsSseEncryptionDetailsArgs {
|
|
5659
|
+
algorithm?: pulumi.Input<string>;
|
|
5660
|
+
awsKmsKeyArn?: pulumi.Input<string>;
|
|
5661
|
+
}
|
|
4860
5662
|
export interface GrantsGrant {
|
|
4861
5663
|
principal: pulumi.Input<string>;
|
|
4862
5664
|
privileges: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -5035,11 +5837,23 @@ export interface JobEmailNotifications {
|
|
|
5035
5837
|
onSuccesses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5036
5838
|
}
|
|
5037
5839
|
export interface JobEnvironment {
|
|
5840
|
+
/**
|
|
5841
|
+
* an unique identifier of the Environment. It will be referenced from `environmentKey` attribute of corresponding task.
|
|
5842
|
+
*/
|
|
5038
5843
|
environmentKey: pulumi.Input<string>;
|
|
5844
|
+
/**
|
|
5845
|
+
* block describing the Environment. Consists of following attributes:
|
|
5846
|
+
*/
|
|
5039
5847
|
spec?: pulumi.Input<inputs.JobEnvironmentSpec>;
|
|
5040
5848
|
}
|
|
5041
5849
|
export interface JobEnvironmentSpec {
|
|
5850
|
+
/**
|
|
5851
|
+
* client version used by the environment.
|
|
5852
|
+
*/
|
|
5042
5853
|
client: pulumi.Input<string>;
|
|
5854
|
+
/**
|
|
5855
|
+
* List of pip dependencies, as supported by the version of pip in this environment. Each dependency is a pip requirement file line. See [API docs](https://docs.databricks.com/api/workspace/jobs/create#environments-spec-dependencies) for more information.
|
|
5856
|
+
*/
|
|
5043
5857
|
dependencies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5044
5858
|
}
|
|
5045
5859
|
export interface JobGitSource {
|
|
@@ -5672,6 +6486,9 @@ export interface JobTask {
|
|
|
5672
6486
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
5673
6487
|
*/
|
|
5674
6488
|
emailNotifications?: pulumi.Input<inputs.JobTaskEmailNotifications>;
|
|
6489
|
+
/**
|
|
6490
|
+
* identifier of an `environment` block that is used to specify libraries. Required for some tasks (`sparkPythonTask`, `pythonWheelTask`, ...) running on serverless compute.
|
|
6491
|
+
*/
|
|
5675
6492
|
environmentKey?: pulumi.Input<string>;
|
|
5676
6493
|
/**
|
|
5677
6494
|
* Identifier of the interactive cluster to run job on. *Note: running tasks on interactive clusters may lead to increased costs!*
|
|
@@ -5850,6 +6667,9 @@ export interface JobTaskForEachTaskTask {
|
|
|
5850
6667
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
5851
6668
|
*/
|
|
5852
6669
|
emailNotifications?: pulumi.Input<inputs.JobTaskForEachTaskTaskEmailNotifications>;
|
|
6670
|
+
/**
|
|
6671
|
+
* identifier of an `environment` block that is used to specify libraries. Required for some tasks (`sparkPythonTask`, `pythonWheelTask`, ...) running on serverless compute.
|
|
6672
|
+
*/
|
|
5853
6673
|
environmentKey?: pulumi.Input<string>;
|
|
5854
6674
|
/**
|
|
5855
6675
|
* Identifier of the interactive cluster to run job on. *Note: running tasks on interactive clusters may lead to increased costs!*
|
|
@@ -7715,25 +8535,49 @@ export interface MwsCustomerManagedKeysGcpKeyInfo {
|
|
|
7715
8535
|
kmsKeyId: pulumi.Input<string>;
|
|
7716
8536
|
}
|
|
7717
8537
|
export interface MwsNetworkConnectivityConfigEgressConfig {
|
|
8538
|
+
/**
|
|
8539
|
+
* block describing network connectivity rules that are applied by default without resource specific configurations. Consists of the following fields:
|
|
8540
|
+
*/
|
|
7718
8541
|
defaultRules?: pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigDefaultRules>;
|
|
8542
|
+
/**
|
|
8543
|
+
* block describing network connectivity rules that configured for each destinations. These rules override default rules. Consists of the following fields:
|
|
8544
|
+
*/
|
|
7719
8545
|
targetRules?: pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigTargetRules>;
|
|
7720
8546
|
}
|
|
7721
8547
|
export interface MwsNetworkConnectivityConfigEgressConfigDefaultRules {
|
|
8548
|
+
/**
|
|
8549
|
+
* (AWS only) - block with information about stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace. Consists of the following fields:
|
|
8550
|
+
*/
|
|
7722
8551
|
awsStableIpRule?: pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule>;
|
|
7723
8552
|
/**
|
|
7724
|
-
*
|
|
8553
|
+
* (Azure only) - block with information about stable Azure service endpoints. You can configure the firewall of your Azure resources to allow traffic from your Databricks serverless compute resources. Consists of the following fields:
|
|
7725
8554
|
*/
|
|
7726
8555
|
azureServiceEndpointRule?: pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule>;
|
|
7727
8556
|
}
|
|
7728
8557
|
export interface MwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule {
|
|
8558
|
+
/**
|
|
8559
|
+
* list of IP CIDR blocks.
|
|
8560
|
+
*/
|
|
7729
8561
|
cidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7730
8562
|
}
|
|
7731
8563
|
export interface MwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule {
|
|
8564
|
+
/**
|
|
8565
|
+
* list of subnets from which Databricks network traffic originates when accessing your Azure resources.
|
|
8566
|
+
*/
|
|
7732
8567
|
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8568
|
+
/**
|
|
8569
|
+
* the Azure region in which this service endpoint rule applies.
|
|
8570
|
+
*/
|
|
7733
8571
|
targetRegion?: pulumi.Input<string>;
|
|
8572
|
+
/**
|
|
8573
|
+
* the Azure services to which this service endpoint rule applies to.
|
|
8574
|
+
*/
|
|
7734
8575
|
targetServices?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7735
8576
|
}
|
|
7736
8577
|
export interface MwsNetworkConnectivityConfigEgressConfigTargetRules {
|
|
8578
|
+
/**
|
|
8579
|
+
* (Azure only) - list containing information about configure Azure Private Endpoints.
|
|
8580
|
+
*/
|
|
7737
8581
|
azurePrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule>[]>;
|
|
7738
8582
|
}
|
|
7739
8583
|
export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
|
|
@@ -8174,9 +9018,6 @@ export interface QualityMonitorNotificationsOnNewClassificationTagDetected {
|
|
|
8174
9018
|
emailAddresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8175
9019
|
}
|
|
8176
9020
|
export interface QualityMonitorSchedule {
|
|
8177
|
-
/**
|
|
8178
|
-
* optional string field that indicates whether a schedule is paused (`PAUSED`) or not (`UNPAUSED`).
|
|
8179
|
-
*/
|
|
8180
9021
|
pauseStatus?: pulumi.Input<string>;
|
|
8181
9022
|
/**
|
|
8182
9023
|
* string expression that determines when to run the monitor. See [Quartz documentation](https://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html) for examples.
|