@pulumi/databricks 1.57.0-alpha.1735882258 → 1.57.0-alpha.1735924227
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/app.d.ts +187 -0
- package/app.js +106 -0
- package/app.js.map +1 -0
- package/cluster.d.ts +9 -0
- package/cluster.js +6 -0
- package/cluster.js.map +1 -1
- package/credential.d.ts +275 -0
- package/credential.js +183 -0
- package/credential.js.map +1 -0
- package/getApp.d.ts +95 -0
- package/getApp.js +78 -0
- package/getApp.js.map +1 -0
- package/getApps.d.ts +66 -0
- package/getApps.js +70 -0
- package/getApps.js.map +1 -0
- package/getAwsAssumeRolePolicy.d.ts +18 -0
- package/getAwsAssumeRolePolicy.js +2 -0
- package/getAwsAssumeRolePolicy.js.map +1 -1
- package/getAwsBucketPolicy.d.ts +18 -0
- package/getAwsBucketPolicy.js +2 -0
- package/getAwsBucketPolicy.js.map +1 -1
- package/getAwsCrossAccountPolicy.d.ts +9 -0
- package/getAwsCrossAccountPolicy.js +2 -0
- package/getAwsCrossAccountPolicy.js.map +1 -1
- package/getAwsUnityCatalogAssumeRolePolicy.d.ts +11 -2
- package/getAwsUnityCatalogAssumeRolePolicy.js +2 -0
- package/getAwsUnityCatalogAssumeRolePolicy.js.map +1 -1
- package/getAwsUnityCatalogPolicy.d.ts +9 -0
- package/getAwsUnityCatalogPolicy.js +2 -0
- package/getAwsUnityCatalogPolicy.js.map +1 -1
- package/getFunctions.d.ts +1 -1
- package/getJobs.d.ts +15 -0
- package/getJobs.js +8 -0
- package/getJobs.js.map +1 -1
- package/getMwsNetworkConnectivityConfig.d.ts +160 -0
- package/getMwsNetworkConnectivityConfig.js +86 -0
- package/getMwsNetworkConnectivityConfig.js.map +1 -0
- package/getMwsNetworkConnectivityConfigs.d.ts +115 -0
- package/getMwsNetworkConnectivityConfigs.js +98 -0
- package/getMwsNetworkConnectivityConfigs.js.map +1 -0
- package/getNotificationDestinations.d.ts +1 -10
- package/getNotificationDestinations.js +0 -2
- package/getNotificationDestinations.js.map +1 -1
- package/getRegisteredModel.d.ts +1 -1
- package/getRegisteredModelVersions.d.ts +98 -0
- package/getRegisteredModelVersions.js +74 -0
- package/getRegisteredModelVersions.js.map +1 -0
- package/getServingEndpoints.d.ts +116 -0
- package/getServingEndpoints.js +104 -0
- package/getServingEndpoints.js.map +1 -0
- package/grant.d.ts +26 -0
- package/grant.js +25 -0
- package/grant.js.map +1 -1
- package/grants.d.ts +29 -1
- package/grants.js +28 -1
- package/grants.js.map +1 -1
- package/index.d.ts +24 -0
- package/index.js +33 -5
- package/index.js.map +1 -1
- package/mwsCustomerManagedKeys.d.ts +11 -1
- package/mwsCustomerManagedKeys.js +11 -1
- package/mwsCustomerManagedKeys.js.map +1 -1
- package/mwsNccPrivateEndpointRule.d.ts +3 -3
- package/mwsNetworks.d.ts +11 -1
- package/mwsNetworks.js +11 -1
- package/mwsNetworks.js.map +1 -1
- package/mwsPrivateAccessSettings.d.ts +5 -1
- package/mwsPrivateAccessSettings.js +5 -1
- package/mwsPrivateAccessSettings.js.map +1 -1
- package/mwsStorageConfigurations.d.ts +11 -1
- package/mwsStorageConfigurations.js +11 -1
- package/mwsStorageConfigurations.js.map +1 -1
- package/mwsWorkspaces.d.ts +21 -1
- package/mwsWorkspaces.js +21 -1
- package/mwsWorkspaces.js.map +1 -1
- package/notificationDestination.d.ts +10 -0
- package/notificationDestination.js +10 -0
- package/notificationDestination.js.map +1 -1
- package/package.json +2 -2
- package/permissions.d.ts +36 -0
- package/permissions.js +34 -0
- package/permissions.js.map +1 -1
- package/query.d.ts +3 -3
- package/storageCredential.d.ts +3 -1
- package/storageCredential.js +3 -1
- package/storageCredential.js.map +1 -1
- package/types/input.d.ts +1037 -72
- package/types/output.d.ts +1100 -62
- package/workspaceBinding.d.ts +4 -4
- package/workspaceBinding.js +1 -1
- package/workspaceConf.d.ts +1 -1
- package/workspaceConf.js +1 -1
package/types/input.d.ts
CHANGED
|
@@ -67,6 +67,162 @@ export interface AlertConditionThresholdValue {
|
|
|
67
67
|
*/
|
|
68
68
|
stringValue?: pulumi.Input<string>;
|
|
69
69
|
}
|
|
70
|
+
export interface AppActiveDeployment {
|
|
71
|
+
/**
|
|
72
|
+
* The creation time of the app.
|
|
73
|
+
*/
|
|
74
|
+
createTime?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* The email of the user that created the app.
|
|
77
|
+
*/
|
|
78
|
+
creator?: pulumi.Input<string>;
|
|
79
|
+
deploymentArtifacts?: pulumi.Input<inputs.AppActiveDeploymentDeploymentArtifacts>;
|
|
80
|
+
deploymentId?: pulumi.Input<string>;
|
|
81
|
+
mode?: pulumi.Input<string>;
|
|
82
|
+
sourceCodePath?: pulumi.Input<string>;
|
|
83
|
+
status?: pulumi.Input<inputs.AppActiveDeploymentStatus>;
|
|
84
|
+
/**
|
|
85
|
+
* The update time of the app.
|
|
86
|
+
*/
|
|
87
|
+
updateTime?: pulumi.Input<string>;
|
|
88
|
+
}
|
|
89
|
+
export interface AppActiveDeploymentDeploymentArtifacts {
|
|
90
|
+
sourceCodePath?: pulumi.Input<string>;
|
|
91
|
+
}
|
|
92
|
+
export interface AppActiveDeploymentStatus {
|
|
93
|
+
/**
|
|
94
|
+
* Application status message
|
|
95
|
+
*/
|
|
96
|
+
message?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* State of the application.
|
|
99
|
+
*/
|
|
100
|
+
state?: pulumi.Input<string>;
|
|
101
|
+
}
|
|
102
|
+
export interface AppAppStatus {
|
|
103
|
+
/**
|
|
104
|
+
* Application status message
|
|
105
|
+
*/
|
|
106
|
+
message?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* State of the application.
|
|
109
|
+
*/
|
|
110
|
+
state?: pulumi.Input<string>;
|
|
111
|
+
}
|
|
112
|
+
export interface AppComputeStatus {
|
|
113
|
+
/**
|
|
114
|
+
* Application status message
|
|
115
|
+
*/
|
|
116
|
+
message?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* State of the application.
|
|
119
|
+
*/
|
|
120
|
+
state?: pulumi.Input<string>;
|
|
121
|
+
}
|
|
122
|
+
export interface AppPendingDeployment {
|
|
123
|
+
/**
|
|
124
|
+
* The creation time of the app.
|
|
125
|
+
*/
|
|
126
|
+
createTime?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* The email of the user that created the app.
|
|
129
|
+
*/
|
|
130
|
+
creator?: pulumi.Input<string>;
|
|
131
|
+
deploymentArtifacts?: pulumi.Input<inputs.AppPendingDeploymentDeploymentArtifacts>;
|
|
132
|
+
deploymentId?: pulumi.Input<string>;
|
|
133
|
+
mode?: pulumi.Input<string>;
|
|
134
|
+
sourceCodePath?: pulumi.Input<string>;
|
|
135
|
+
status?: pulumi.Input<inputs.AppPendingDeploymentStatus>;
|
|
136
|
+
/**
|
|
137
|
+
* The update time of the app.
|
|
138
|
+
*/
|
|
139
|
+
updateTime?: pulumi.Input<string>;
|
|
140
|
+
}
|
|
141
|
+
export interface AppPendingDeploymentDeploymentArtifacts {
|
|
142
|
+
sourceCodePath?: pulumi.Input<string>;
|
|
143
|
+
}
|
|
144
|
+
export interface AppPendingDeploymentStatus {
|
|
145
|
+
/**
|
|
146
|
+
* Application status message
|
|
147
|
+
*/
|
|
148
|
+
message?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* State of the application.
|
|
151
|
+
*/
|
|
152
|
+
state?: pulumi.Input<string>;
|
|
153
|
+
}
|
|
154
|
+
export interface AppResource {
|
|
155
|
+
/**
|
|
156
|
+
* The description of the resource.
|
|
157
|
+
*
|
|
158
|
+
* Exactly one of the following attributes must be provided:
|
|
159
|
+
*/
|
|
160
|
+
description?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* attribute
|
|
163
|
+
*/
|
|
164
|
+
job?: pulumi.Input<inputs.AppResourceJob>;
|
|
165
|
+
/**
|
|
166
|
+
* The name of the resource.
|
|
167
|
+
*/
|
|
168
|
+
name: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* attribute
|
|
171
|
+
*/
|
|
172
|
+
secret?: pulumi.Input<inputs.AppResourceSecret>;
|
|
173
|
+
/**
|
|
174
|
+
* attribute
|
|
175
|
+
*/
|
|
176
|
+
servingEndpoint?: pulumi.Input<inputs.AppResourceServingEndpoint>;
|
|
177
|
+
/**
|
|
178
|
+
* attribute
|
|
179
|
+
*/
|
|
180
|
+
sqlWarehouse?: pulumi.Input<inputs.AppResourceSqlWarehouse>;
|
|
181
|
+
}
|
|
182
|
+
export interface AppResourceJob {
|
|
183
|
+
/**
|
|
184
|
+
* Id of the job to grant permission on.
|
|
185
|
+
*/
|
|
186
|
+
id: pulumi.Input<string>;
|
|
187
|
+
/**
|
|
188
|
+
* Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
|
|
189
|
+
*/
|
|
190
|
+
permission: pulumi.Input<string>;
|
|
191
|
+
}
|
|
192
|
+
export interface AppResourceSecret {
|
|
193
|
+
/**
|
|
194
|
+
* Key of the secret to grant permission on.
|
|
195
|
+
*/
|
|
196
|
+
key: pulumi.Input<string>;
|
|
197
|
+
/**
|
|
198
|
+
* Permission to grant on the secret scope. For secrets, only one permission is allowed. Permission must be one of: `READ`, `WRITE`, `MANAGE`.
|
|
199
|
+
*/
|
|
200
|
+
permission: pulumi.Input<string>;
|
|
201
|
+
/**
|
|
202
|
+
* Scope of the secret to grant permission on.
|
|
203
|
+
*/
|
|
204
|
+
scope: pulumi.Input<string>;
|
|
205
|
+
}
|
|
206
|
+
export interface AppResourceServingEndpoint {
|
|
207
|
+
/**
|
|
208
|
+
* Name of the serving endpoint to grant permission on.
|
|
209
|
+
*/
|
|
210
|
+
name: pulumi.Input<string>;
|
|
211
|
+
/**
|
|
212
|
+
* Permission to grant on the serving endpoint. Supported permissions are: `CAN_MANAGE`, `CAN_QUERY`, `CAN_VIEW`.
|
|
213
|
+
*/
|
|
214
|
+
permission: pulumi.Input<string>;
|
|
215
|
+
}
|
|
216
|
+
export interface AppResourceSqlWarehouse {
|
|
217
|
+
/**
|
|
218
|
+
* Id of the SQL warehouse to grant permission on.
|
|
219
|
+
*/
|
|
220
|
+
id: pulumi.Input<string>;
|
|
221
|
+
/**
|
|
222
|
+
* Permission to grant on the SQL warehouse. Supported permissions are: `CAN_MANAGE`, `CAN_USE`, `IS_OWNER`.
|
|
223
|
+
*/
|
|
224
|
+
permission: pulumi.Input<string>;
|
|
225
|
+
}
|
|
70
226
|
export interface ArtifactAllowlistArtifactMatcher {
|
|
71
227
|
/**
|
|
72
228
|
* The artifact path or maven coordinate.
|
|
@@ -572,6 +728,59 @@ export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProf
|
|
|
572
728
|
complianceStandards: pulumi.Input<pulumi.Input<string>[]>;
|
|
573
729
|
isEnabled: pulumi.Input<boolean>;
|
|
574
730
|
}
|
|
731
|
+
export interface CredentialAwsIamRole {
|
|
732
|
+
externalId?: pulumi.Input<string>;
|
|
733
|
+
/**
|
|
734
|
+
* The Amazon Resource Name (ARN) of the AWS IAM role you want to use to setup the trust policy, of the form `arn:aws:iam::1234567890:role/MyRole-AJJHDSKSDF`
|
|
735
|
+
*
|
|
736
|
+
* `azureManagedIdentity` optional configuration block for using managed identity as credential details for Azure (recommended over `azureServicePrincipal`):
|
|
737
|
+
*/
|
|
738
|
+
roleArn?: pulumi.Input<string>;
|
|
739
|
+
unityCatalogIamArn?: pulumi.Input<string>;
|
|
740
|
+
}
|
|
741
|
+
export interface CredentialAzureManagedIdentity {
|
|
742
|
+
/**
|
|
743
|
+
* The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`.
|
|
744
|
+
*/
|
|
745
|
+
accessConnectorId: pulumi.Input<string>;
|
|
746
|
+
/**
|
|
747
|
+
* Unique ID of the credential.
|
|
748
|
+
*/
|
|
749
|
+
credentialId?: pulumi.Input<string>;
|
|
750
|
+
/**
|
|
751
|
+
* The Resource ID of the Azure User Assigned Managed Identity associated with Azure Databricks Access Connector, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user-managed-identity-name`.
|
|
752
|
+
*
|
|
753
|
+
* `azureServicePrincipal` optional configuration block to use service principal as credential details for Azure. Only applicable when purpose is `STORAGE` (Legacy):
|
|
754
|
+
*/
|
|
755
|
+
managedIdentityId?: pulumi.Input<string>;
|
|
756
|
+
}
|
|
757
|
+
export interface CredentialAzureServicePrincipal {
|
|
758
|
+
/**
|
|
759
|
+
* The application ID of the application registration within the referenced AAD tenant
|
|
760
|
+
*/
|
|
761
|
+
applicationId: pulumi.Input<string>;
|
|
762
|
+
/**
|
|
763
|
+
* The client secret generated for the above app ID in AAD. **This field is redacted on output**
|
|
764
|
+
*
|
|
765
|
+
* `databricksGcpServiceAccount` optional configuration block for creating a Databricks-managed GCP Service Account. Only applicable when purpose is `STORAGE`:
|
|
766
|
+
*/
|
|
767
|
+
clientSecret: pulumi.Input<string>;
|
|
768
|
+
/**
|
|
769
|
+
* The directory ID corresponding to the Azure Active Directory (AAD) tenant of the application
|
|
770
|
+
*/
|
|
771
|
+
directoryId: pulumi.Input<string>;
|
|
772
|
+
}
|
|
773
|
+
export interface CredentialDatabricksGcpServiceAccount {
|
|
774
|
+
/**
|
|
775
|
+
* Unique ID of the credential.
|
|
776
|
+
*/
|
|
777
|
+
credentialId?: pulumi.Input<string>;
|
|
778
|
+
/**
|
|
779
|
+
* The email of the GCP service account created, to be granted access to relevant buckets.
|
|
780
|
+
*/
|
|
781
|
+
email?: pulumi.Input<string>;
|
|
782
|
+
privateKeyId?: pulumi.Input<string>;
|
|
783
|
+
}
|
|
575
784
|
export interface CustomAppIntegrationTokenAccessPolicy {
|
|
576
785
|
/**
|
|
577
786
|
* access token time to live (TTL) in minutes.
|
|
@@ -866,7 +1075,9 @@ export interface GetClusterClusterInfo {
|
|
|
866
1075
|
* The pool of idle instances the cluster is attached to.
|
|
867
1076
|
*/
|
|
868
1077
|
instancePoolId?: string;
|
|
1078
|
+
isSingleNode?: boolean;
|
|
869
1079
|
jdbcPort?: number;
|
|
1080
|
+
kind?: string;
|
|
870
1081
|
lastRestartedTime?: number;
|
|
871
1082
|
lastStateLossTime?: number;
|
|
872
1083
|
/**
|
|
@@ -913,6 +1124,7 @@ export interface GetClusterClusterInfo {
|
|
|
913
1124
|
stateMessage?: string;
|
|
914
1125
|
terminatedTime?: number;
|
|
915
1126
|
terminationReason?: inputs.GetClusterClusterInfoTerminationReason;
|
|
1127
|
+
useMlRuntime?: boolean;
|
|
916
1128
|
workloadType?: inputs.GetClusterClusterInfoWorkloadType;
|
|
917
1129
|
}
|
|
918
1130
|
export interface GetClusterClusterInfoArgs {
|
|
@@ -975,7 +1187,9 @@ export interface GetClusterClusterInfoArgs {
|
|
|
975
1187
|
* The pool of idle instances the cluster is attached to.
|
|
976
1188
|
*/
|
|
977
1189
|
instancePoolId?: pulumi.Input<string>;
|
|
1190
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
978
1191
|
jdbcPort?: pulumi.Input<number>;
|
|
1192
|
+
kind?: pulumi.Input<string>;
|
|
979
1193
|
lastRestartedTime?: pulumi.Input<number>;
|
|
980
1194
|
lastStateLossTime?: pulumi.Input<number>;
|
|
981
1195
|
/**
|
|
@@ -1022,6 +1236,7 @@ export interface GetClusterClusterInfoArgs {
|
|
|
1022
1236
|
stateMessage?: pulumi.Input<string>;
|
|
1023
1237
|
terminatedTime?: pulumi.Input<number>;
|
|
1024
1238
|
terminationReason?: pulumi.Input<inputs.GetClusterClusterInfoTerminationReasonArgs>;
|
|
1239
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
1025
1240
|
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoWorkloadTypeArgs>;
|
|
1026
1241
|
}
|
|
1027
1242
|
export interface GetClusterClusterInfoAutoscale {
|
|
@@ -1320,6 +1535,8 @@ export interface GetClusterClusterInfoSpec {
|
|
|
1320
1535
|
* The pool of idle instances the cluster is attached to.
|
|
1321
1536
|
*/
|
|
1322
1537
|
instancePoolId?: string;
|
|
1538
|
+
isSingleNode?: boolean;
|
|
1539
|
+
kind?: string;
|
|
1323
1540
|
libraries?: inputs.GetClusterClusterInfoSpecLibrary[];
|
|
1324
1541
|
/**
|
|
1325
1542
|
* Any supported databricks.getNodeType id.
|
|
@@ -1358,6 +1575,7 @@ export interface GetClusterClusterInfoSpec {
|
|
|
1358
1575
|
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
1359
1576
|
*/
|
|
1360
1577
|
sshPublicKeys?: string[];
|
|
1578
|
+
useMlRuntime?: boolean;
|
|
1361
1579
|
workloadType?: inputs.GetClusterClusterInfoSpecWorkloadType;
|
|
1362
1580
|
}
|
|
1363
1581
|
export interface GetClusterClusterInfoSpecArgs {
|
|
@@ -1412,6 +1630,8 @@ export interface GetClusterClusterInfoSpecArgs {
|
|
|
1412
1630
|
* The pool of idle instances the cluster is attached to.
|
|
1413
1631
|
*/
|
|
1414
1632
|
instancePoolId?: pulumi.Input<string>;
|
|
1633
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
1634
|
+
kind?: pulumi.Input<string>;
|
|
1415
1635
|
libraries?: pulumi.Input<pulumi.Input<inputs.GetClusterClusterInfoSpecLibraryArgs>[]>;
|
|
1416
1636
|
/**
|
|
1417
1637
|
* Any supported databricks.getNodeType id.
|
|
@@ -1450,6 +1670,7 @@ export interface GetClusterClusterInfoSpecArgs {
|
|
|
1450
1670
|
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
1451
1671
|
*/
|
|
1452
1672
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1673
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
1453
1674
|
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkloadTypeArgs>;
|
|
1454
1675
|
}
|
|
1455
1676
|
export interface GetClusterClusterInfoSpecAutoscale {
|
|
@@ -2114,7 +2335,7 @@ export interface GetFunctionsFunction {
|
|
|
2114
2335
|
/**
|
|
2115
2336
|
* object describing input parameters. Consists of the single attribute:
|
|
2116
2337
|
*/
|
|
2117
|
-
inputParams?: inputs.
|
|
2338
|
+
inputParams?: inputs.GetFunctionsFunctionInputParam[];
|
|
2118
2339
|
/**
|
|
2119
2340
|
* Boolean flag specifying whether the function is deterministic.
|
|
2120
2341
|
*/
|
|
@@ -2146,7 +2367,7 @@ export interface GetFunctionsFunction {
|
|
|
2146
2367
|
/**
|
|
2147
2368
|
* Table function return parameters. See `inputParams` for description.
|
|
2148
2369
|
*/
|
|
2149
|
-
returnParams?: inputs.
|
|
2370
|
+
returnParams?: inputs.GetFunctionsFunctionReturnParam[];
|
|
2150
2371
|
/**
|
|
2151
2372
|
* Function language (`SQL` or `EXTERNAL`). When `EXTERNAL` is used, the language of the routine function should be specified in the `externalLanguage` field, and the `returnParams` of the function cannot be used (as `TABLE` return type is not supported), and the `sqlDataAccess` field must be `NO_SQL`.
|
|
2152
2373
|
*/
|
|
@@ -2158,7 +2379,7 @@ export interface GetFunctionsFunction {
|
|
|
2158
2379
|
/**
|
|
2159
2380
|
* Function dependencies.
|
|
2160
2381
|
*/
|
|
2161
|
-
routineDependencies?: inputs.
|
|
2382
|
+
routineDependencies?: inputs.GetFunctionsFunctionRoutineDependency[];
|
|
2162
2383
|
/**
|
|
2163
2384
|
* Name of databricks_schema.
|
|
2164
2385
|
*/
|
|
@@ -2236,7 +2457,7 @@ export interface GetFunctionsFunctionArgs {
|
|
|
2236
2457
|
/**
|
|
2237
2458
|
* object describing input parameters. Consists of the single attribute:
|
|
2238
2459
|
*/
|
|
2239
|
-
inputParams?: pulumi.Input<inputs.
|
|
2460
|
+
inputParams?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionInputParamArgs>[]>;
|
|
2240
2461
|
/**
|
|
2241
2462
|
* Boolean flag specifying whether the function is deterministic.
|
|
2242
2463
|
*/
|
|
@@ -2268,7 +2489,7 @@ export interface GetFunctionsFunctionArgs {
|
|
|
2268
2489
|
/**
|
|
2269
2490
|
* Table function return parameters. See `inputParams` for description.
|
|
2270
2491
|
*/
|
|
2271
|
-
returnParams?: pulumi.Input<inputs.
|
|
2492
|
+
returnParams?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionReturnParamArgs>[]>;
|
|
2272
2493
|
/**
|
|
2273
2494
|
* Function language (`SQL` or `EXTERNAL`). When `EXTERNAL` is used, the language of the routine function should be specified in the `externalLanguage` field, and the `returnParams` of the function cannot be used (as `TABLE` return type is not supported), and the `sqlDataAccess` field must be `NO_SQL`.
|
|
2274
2495
|
*/
|
|
@@ -2280,7 +2501,7 @@ export interface GetFunctionsFunctionArgs {
|
|
|
2280
2501
|
/**
|
|
2281
2502
|
* Function dependencies.
|
|
2282
2503
|
*/
|
|
2283
|
-
routineDependencies?: pulumi.Input<inputs.
|
|
2504
|
+
routineDependencies?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionRoutineDependencyArgs>[]>;
|
|
2284
2505
|
/**
|
|
2285
2506
|
* Name of databricks_schema.
|
|
2286
2507
|
*/
|
|
@@ -2310,19 +2531,19 @@ export interface GetFunctionsFunctionArgs {
|
|
|
2310
2531
|
*/
|
|
2311
2532
|
updatedBy?: pulumi.Input<string>;
|
|
2312
2533
|
}
|
|
2313
|
-
export interface
|
|
2534
|
+
export interface GetFunctionsFunctionInputParam {
|
|
2314
2535
|
/**
|
|
2315
2536
|
* The array of definitions of the function's parameters:
|
|
2316
2537
|
*/
|
|
2317
|
-
parameters?: inputs.
|
|
2538
|
+
parameters?: inputs.GetFunctionsFunctionInputParamParameter[];
|
|
2318
2539
|
}
|
|
2319
|
-
export interface
|
|
2540
|
+
export interface GetFunctionsFunctionInputParamArgs {
|
|
2320
2541
|
/**
|
|
2321
2542
|
* The array of definitions of the function's parameters:
|
|
2322
2543
|
*/
|
|
2323
|
-
parameters?: pulumi.Input<pulumi.Input<inputs.
|
|
2544
|
+
parameters?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionInputParamParameterArgs>[]>;
|
|
2324
2545
|
}
|
|
2325
|
-
export interface
|
|
2546
|
+
export interface GetFunctionsFunctionInputParamParameter {
|
|
2326
2547
|
/**
|
|
2327
2548
|
* User-provided free-form text description.
|
|
2328
2549
|
*/
|
|
@@ -2372,7 +2593,7 @@ export interface GetFunctionsFunctionInputParamsParameter {
|
|
|
2372
2593
|
*/
|
|
2373
2594
|
typeText: string;
|
|
2374
2595
|
}
|
|
2375
|
-
export interface
|
|
2596
|
+
export interface GetFunctionsFunctionInputParamParameterArgs {
|
|
2376
2597
|
/**
|
|
2377
2598
|
* User-provided free-form text description.
|
|
2378
2599
|
*/
|
|
@@ -2422,19 +2643,19 @@ export interface GetFunctionsFunctionInputParamsParameterArgs {
|
|
|
2422
2643
|
*/
|
|
2423
2644
|
typeText: pulumi.Input<string>;
|
|
2424
2645
|
}
|
|
2425
|
-
export interface
|
|
2646
|
+
export interface GetFunctionsFunctionReturnParam {
|
|
2426
2647
|
/**
|
|
2427
2648
|
* The array of definitions of the function's parameters:
|
|
2428
2649
|
*/
|
|
2429
|
-
parameters?: inputs.
|
|
2650
|
+
parameters?: inputs.GetFunctionsFunctionReturnParamParameter[];
|
|
2430
2651
|
}
|
|
2431
|
-
export interface
|
|
2652
|
+
export interface GetFunctionsFunctionReturnParamArgs {
|
|
2432
2653
|
/**
|
|
2433
2654
|
* The array of definitions of the function's parameters:
|
|
2434
2655
|
*/
|
|
2435
|
-
parameters?: pulumi.Input<pulumi.Input<inputs.
|
|
2656
|
+
parameters?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionReturnParamParameterArgs>[]>;
|
|
2436
2657
|
}
|
|
2437
|
-
export interface
|
|
2658
|
+
export interface GetFunctionsFunctionReturnParamParameter {
|
|
2438
2659
|
/**
|
|
2439
2660
|
* User-provided free-form text description.
|
|
2440
2661
|
*/
|
|
@@ -2484,7 +2705,7 @@ export interface GetFunctionsFunctionReturnParamsParameter {
|
|
|
2484
2705
|
*/
|
|
2485
2706
|
typeText: string;
|
|
2486
2707
|
}
|
|
2487
|
-
export interface
|
|
2708
|
+
export interface GetFunctionsFunctionReturnParamParameterArgs {
|
|
2488
2709
|
/**
|
|
2489
2710
|
* User-provided free-form text description.
|
|
2490
2711
|
*/
|
|
@@ -2534,30 +2755,30 @@ export interface GetFunctionsFunctionReturnParamsParameterArgs {
|
|
|
2534
2755
|
*/
|
|
2535
2756
|
typeText: pulumi.Input<string>;
|
|
2536
2757
|
}
|
|
2537
|
-
export interface
|
|
2538
|
-
dependencies?: inputs.
|
|
2758
|
+
export interface GetFunctionsFunctionRoutineDependency {
|
|
2759
|
+
dependencies?: inputs.GetFunctionsFunctionRoutineDependencyDependency[];
|
|
2539
2760
|
}
|
|
2540
|
-
export interface
|
|
2541
|
-
dependencies?: pulumi.Input<pulumi.Input<inputs.
|
|
2761
|
+
export interface GetFunctionsFunctionRoutineDependencyArgs {
|
|
2762
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionRoutineDependencyDependencyArgs>[]>;
|
|
2542
2763
|
}
|
|
2543
|
-
export interface
|
|
2544
|
-
|
|
2545
|
-
|
|
2764
|
+
export interface GetFunctionsFunctionRoutineDependencyDependency {
|
|
2765
|
+
functions?: inputs.GetFunctionsFunctionRoutineDependencyDependencyFunction[];
|
|
2766
|
+
tables?: inputs.GetFunctionsFunctionRoutineDependencyDependencyTable[];
|
|
2546
2767
|
}
|
|
2547
|
-
export interface
|
|
2548
|
-
|
|
2549
|
-
|
|
2768
|
+
export interface GetFunctionsFunctionRoutineDependencyDependencyArgs {
|
|
2769
|
+
functions?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionRoutineDependencyDependencyFunctionArgs>[]>;
|
|
2770
|
+
tables?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionRoutineDependencyDependencyTableArgs>[]>;
|
|
2550
2771
|
}
|
|
2551
|
-
export interface
|
|
2772
|
+
export interface GetFunctionsFunctionRoutineDependencyDependencyFunction {
|
|
2552
2773
|
functionFullName: string;
|
|
2553
2774
|
}
|
|
2554
|
-
export interface
|
|
2775
|
+
export interface GetFunctionsFunctionRoutineDependencyDependencyFunctionArgs {
|
|
2555
2776
|
functionFullName: pulumi.Input<string>;
|
|
2556
2777
|
}
|
|
2557
|
-
export interface
|
|
2778
|
+
export interface GetFunctionsFunctionRoutineDependencyDependencyTable {
|
|
2558
2779
|
tableFullName: string;
|
|
2559
2780
|
}
|
|
2560
|
-
export interface
|
|
2781
|
+
export interface GetFunctionsFunctionRoutineDependencyDependencyTableArgs {
|
|
2561
2782
|
tableFullName: pulumi.Input<string>;
|
|
2562
2783
|
}
|
|
2563
2784
|
export interface GetInstancePoolPoolInfo {
|
|
@@ -5366,33 +5587,181 @@ export interface GetMlflowModelTagArgs {
|
|
|
5366
5587
|
key?: pulumi.Input<string>;
|
|
5367
5588
|
value?: pulumi.Input<string>;
|
|
5368
5589
|
}
|
|
5369
|
-
export interface
|
|
5590
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfig {
|
|
5370
5591
|
/**
|
|
5371
|
-
*
|
|
5592
|
+
* Array of default rules.
|
|
5372
5593
|
*/
|
|
5373
|
-
|
|
5594
|
+
defaultRules?: inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRules;
|
|
5374
5595
|
/**
|
|
5375
|
-
*
|
|
5596
|
+
* Array of target rules.
|
|
5376
5597
|
*/
|
|
5377
|
-
|
|
5598
|
+
targetRules?: inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRules;
|
|
5599
|
+
}
|
|
5600
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigArgs {
|
|
5378
5601
|
/**
|
|
5379
|
-
*
|
|
5602
|
+
* Array of default rules.
|
|
5380
5603
|
*/
|
|
5381
|
-
|
|
5604
|
+
defaultRules?: pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesArgs>;
|
|
5605
|
+
/**
|
|
5606
|
+
* Array of target rules.
|
|
5607
|
+
*/
|
|
5608
|
+
targetRules?: pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesArgs>;
|
|
5382
5609
|
}
|
|
5383
|
-
export interface
|
|
5610
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRules {
|
|
5384
5611
|
/**
|
|
5385
|
-
* The
|
|
5612
|
+
* The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
|
|
5386
5613
|
*/
|
|
5387
|
-
|
|
5614
|
+
awsStableIpRule?: inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule;
|
|
5388
5615
|
/**
|
|
5389
|
-
*
|
|
5616
|
+
* Array of Azure service endpoint rules.
|
|
5390
5617
|
*/
|
|
5391
|
-
|
|
5618
|
+
azureServiceEndpointRule?: inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule;
|
|
5619
|
+
}
|
|
5620
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesArgs {
|
|
5392
5621
|
/**
|
|
5393
|
-
* The
|
|
5622
|
+
* The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
|
|
5394
5623
|
*/
|
|
5395
|
-
|
|
5624
|
+
awsStableIpRule?: pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRuleArgs>;
|
|
5625
|
+
/**
|
|
5626
|
+
* Array of Azure service endpoint rules.
|
|
5627
|
+
*/
|
|
5628
|
+
azureServiceEndpointRule?: pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRuleArgs>;
|
|
5629
|
+
}
|
|
5630
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule {
|
|
5631
|
+
/**
|
|
5632
|
+
* The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
|
|
5633
|
+
*/
|
|
5634
|
+
cidrBlocks?: string[];
|
|
5635
|
+
}
|
|
5636
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRuleArgs {
|
|
5637
|
+
/**
|
|
5638
|
+
* The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
|
|
5639
|
+
*/
|
|
5640
|
+
cidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5641
|
+
}
|
|
5642
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule {
|
|
5643
|
+
/**
|
|
5644
|
+
* Array of strings representing the subnet IDs.
|
|
5645
|
+
*/
|
|
5646
|
+
subnets?: string[];
|
|
5647
|
+
/**
|
|
5648
|
+
* The target region for the service endpoint.
|
|
5649
|
+
*/
|
|
5650
|
+
targetRegion?: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* Array of target services.
|
|
5653
|
+
*/
|
|
5654
|
+
targetServices?: string[];
|
|
5655
|
+
}
|
|
5656
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRuleArgs {
|
|
5657
|
+
/**
|
|
5658
|
+
* Array of strings representing the subnet IDs.
|
|
5659
|
+
*/
|
|
5660
|
+
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5661
|
+
/**
|
|
5662
|
+
* The target region for the service endpoint.
|
|
5663
|
+
*/
|
|
5664
|
+
targetRegion?: pulumi.Input<string>;
|
|
5665
|
+
/**
|
|
5666
|
+
* Array of target services.
|
|
5667
|
+
*/
|
|
5668
|
+
targetServices?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5669
|
+
}
|
|
5670
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRules {
|
|
5671
|
+
/**
|
|
5672
|
+
* Array of private endpoint rule objects.
|
|
5673
|
+
*/
|
|
5674
|
+
azurePrivateEndpointRules?: inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule[];
|
|
5675
|
+
}
|
|
5676
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesArgs {
|
|
5677
|
+
/**
|
|
5678
|
+
* Array of private endpoint rule objects.
|
|
5679
|
+
*/
|
|
5680
|
+
azurePrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRuleArgs>[]>;
|
|
5681
|
+
}
|
|
5682
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
|
|
5683
|
+
/**
|
|
5684
|
+
* The current status of this private endpoint.
|
|
5685
|
+
*/
|
|
5686
|
+
connectionState?: string;
|
|
5687
|
+
/**
|
|
5688
|
+
* Time in epoch milliseconds when this object was created.
|
|
5689
|
+
*/
|
|
5690
|
+
creationTime?: number;
|
|
5691
|
+
/**
|
|
5692
|
+
* Whether this private endpoint is deactivated.
|
|
5693
|
+
*/
|
|
5694
|
+
deactivated?: boolean;
|
|
5695
|
+
/**
|
|
5696
|
+
* Time in epoch milliseconds when this object was deactivated.
|
|
5697
|
+
*/
|
|
5698
|
+
deactivatedAt?: number;
|
|
5699
|
+
/**
|
|
5700
|
+
* The name of the Azure private endpoint resource.
|
|
5701
|
+
*/
|
|
5702
|
+
endpointName?: string;
|
|
5703
|
+
/**
|
|
5704
|
+
* The sub-resource type (group ID) of the target resource.
|
|
5705
|
+
*/
|
|
5706
|
+
groupId?: string;
|
|
5707
|
+
/**
|
|
5708
|
+
* The Databricks network connectivity configuration ID.
|
|
5709
|
+
*/
|
|
5710
|
+
networkConnectivityConfigId?: string;
|
|
5711
|
+
/**
|
|
5712
|
+
* The Azure resource ID of the target resource.
|
|
5713
|
+
*/
|
|
5714
|
+
resourceId?: string;
|
|
5715
|
+
/**
|
|
5716
|
+
* The ID of a private endpoint rule.
|
|
5717
|
+
*/
|
|
5718
|
+
ruleId?: string;
|
|
5719
|
+
/**
|
|
5720
|
+
* Time in epoch milliseconds when the network was updated.
|
|
5721
|
+
*/
|
|
5722
|
+
updatedTime?: number;
|
|
5723
|
+
}
|
|
5724
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRuleArgs {
|
|
5725
|
+
/**
|
|
5726
|
+
* The current status of this private endpoint.
|
|
5727
|
+
*/
|
|
5728
|
+
connectionState?: pulumi.Input<string>;
|
|
5729
|
+
/**
|
|
5730
|
+
* Time in epoch milliseconds when this object was created.
|
|
5731
|
+
*/
|
|
5732
|
+
creationTime?: pulumi.Input<number>;
|
|
5733
|
+
/**
|
|
5734
|
+
* Whether this private endpoint is deactivated.
|
|
5735
|
+
*/
|
|
5736
|
+
deactivated?: pulumi.Input<boolean>;
|
|
5737
|
+
/**
|
|
5738
|
+
* Time in epoch milliseconds when this object was deactivated.
|
|
5739
|
+
*/
|
|
5740
|
+
deactivatedAt?: pulumi.Input<number>;
|
|
5741
|
+
/**
|
|
5742
|
+
* The name of the Azure private endpoint resource.
|
|
5743
|
+
*/
|
|
5744
|
+
endpointName?: pulumi.Input<string>;
|
|
5745
|
+
/**
|
|
5746
|
+
* The sub-resource type (group ID) of the target resource.
|
|
5747
|
+
*/
|
|
5748
|
+
groupId?: pulumi.Input<string>;
|
|
5749
|
+
/**
|
|
5750
|
+
* The Databricks network connectivity configuration ID.
|
|
5751
|
+
*/
|
|
5752
|
+
networkConnectivityConfigId?: pulumi.Input<string>;
|
|
5753
|
+
/**
|
|
5754
|
+
* The Azure resource ID of the target resource.
|
|
5755
|
+
*/
|
|
5756
|
+
resourceId?: pulumi.Input<string>;
|
|
5757
|
+
/**
|
|
5758
|
+
* The ID of a private endpoint rule.
|
|
5759
|
+
*/
|
|
5760
|
+
ruleId?: pulumi.Input<string>;
|
|
5761
|
+
/**
|
|
5762
|
+
* Time in epoch milliseconds when the network was updated.
|
|
5763
|
+
*/
|
|
5764
|
+
updatedTime?: pulumi.Input<number>;
|
|
5396
5765
|
}
|
|
5397
5766
|
export interface GetRegisteredModelModelInfo {
|
|
5398
5767
|
/**
|
|
@@ -5524,57 +5893,277 @@ export interface GetRegisteredModelModelInfoAliasArgs {
|
|
|
5524
5893
|
*/
|
|
5525
5894
|
versionNum?: pulumi.Input<number>;
|
|
5526
5895
|
}
|
|
5527
|
-
export interface
|
|
5896
|
+
export interface GetRegisteredModelVersionsModelVersion {
|
|
5528
5897
|
/**
|
|
5529
|
-
*
|
|
5898
|
+
* the list of aliases associated with this model. Each item is object consisting of following attributes:
|
|
5530
5899
|
*/
|
|
5900
|
+
aliases?: inputs.GetRegisteredModelVersionsModelVersionAlias[];
|
|
5531
5901
|
browseOnly?: boolean;
|
|
5532
5902
|
/**
|
|
5533
|
-
*
|
|
5903
|
+
* The name of the catalog where the schema and the registered model reside.
|
|
5534
5904
|
*/
|
|
5535
5905
|
catalogName?: string;
|
|
5536
5906
|
/**
|
|
5537
|
-
*
|
|
5538
|
-
*/
|
|
5539
|
-
catalogType?: string;
|
|
5540
|
-
/**
|
|
5541
|
-
* the comment attached to the volume
|
|
5907
|
+
* The comment attached to the registered model.
|
|
5542
5908
|
*/
|
|
5543
5909
|
comment?: string;
|
|
5544
5910
|
/**
|
|
5545
|
-
*
|
|
5911
|
+
* the Unix timestamp at the model's creation
|
|
5546
5912
|
*/
|
|
5547
5913
|
createdAt?: number;
|
|
5548
5914
|
/**
|
|
5549
|
-
*
|
|
5915
|
+
* the identifier of the user who created the model
|
|
5550
5916
|
*/
|
|
5551
5917
|
createdBy?: string;
|
|
5552
5918
|
/**
|
|
5553
|
-
*
|
|
5554
|
-
*/
|
|
5555
|
-
effectivePredictiveOptimizationFlag?: inputs.GetSchemaSchemaInfoEffectivePredictiveOptimizationFlag;
|
|
5556
|
-
/**
|
|
5557
|
-
* whether predictive optimization should be enabled for this object and objects under it.
|
|
5558
|
-
*/
|
|
5559
|
-
enablePredictiveOptimization?: string;
|
|
5560
|
-
/**
|
|
5561
|
-
* the two-level (fully qualified) name of the schema
|
|
5919
|
+
* The unique identifier of the model version
|
|
5562
5920
|
*/
|
|
5563
|
-
|
|
5921
|
+
id?: string;
|
|
5564
5922
|
/**
|
|
5565
5923
|
* the unique identifier of the metastore
|
|
5566
5924
|
*/
|
|
5567
5925
|
metastoreId?: string;
|
|
5926
|
+
modelName?: string;
|
|
5568
5927
|
/**
|
|
5569
|
-
*
|
|
5928
|
+
* block describing model version dependencies, for feature-store packaged models. Consists of following attributes:
|
|
5570
5929
|
*/
|
|
5571
|
-
|
|
5930
|
+
modelVersionDependencies?: inputs.GetRegisteredModelVersionsModelVersionModelVersionDependency[];
|
|
5572
5931
|
/**
|
|
5573
|
-
*
|
|
5932
|
+
* MLflow run ID used when creating the model version, if `source` was generated by an experiment run stored in an MLflow tracking server
|
|
5574
5933
|
*/
|
|
5575
|
-
|
|
5934
|
+
runId?: string;
|
|
5576
5935
|
/**
|
|
5577
|
-
*
|
|
5936
|
+
* ID of the Databricks workspace containing the MLflow run that generated this model version, if applicable
|
|
5937
|
+
*/
|
|
5938
|
+
runWorkspaceId?: number;
|
|
5939
|
+
/**
|
|
5940
|
+
* The name of the schema where the registered model resides.
|
|
5941
|
+
*/
|
|
5942
|
+
schemaName?: string;
|
|
5943
|
+
/**
|
|
5944
|
+
* URI indicating the location of the source artifacts (files) for the model version.
|
|
5945
|
+
*/
|
|
5946
|
+
source?: string;
|
|
5947
|
+
/**
|
|
5948
|
+
* Current status of the model version.
|
|
5949
|
+
*/
|
|
5950
|
+
status?: string;
|
|
5951
|
+
/**
|
|
5952
|
+
* The storage location under which model version data files are stored.
|
|
5953
|
+
*/
|
|
5954
|
+
storageLocation?: string;
|
|
5955
|
+
/**
|
|
5956
|
+
* the timestamp of the last time changes were made to the model
|
|
5957
|
+
*/
|
|
5958
|
+
updatedAt?: number;
|
|
5959
|
+
/**
|
|
5960
|
+
* the identifier of the user who updated the model last time
|
|
5961
|
+
*/
|
|
5962
|
+
updatedBy?: string;
|
|
5963
|
+
/**
|
|
5964
|
+
* Integer model version number, used to reference the model version in API requests.
|
|
5965
|
+
*/
|
|
5966
|
+
version?: number;
|
|
5967
|
+
}
|
|
5968
|
+
export interface GetRegisteredModelVersionsModelVersionArgs {
|
|
5969
|
+
/**
|
|
5970
|
+
* the list of aliases associated with this model. Each item is object consisting of following attributes:
|
|
5971
|
+
*/
|
|
5972
|
+
aliases?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionAliasArgs>[]>;
|
|
5973
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
5974
|
+
/**
|
|
5975
|
+
* The name of the catalog where the schema and the registered model reside.
|
|
5976
|
+
*/
|
|
5977
|
+
catalogName?: pulumi.Input<string>;
|
|
5978
|
+
/**
|
|
5979
|
+
* The comment attached to the registered model.
|
|
5980
|
+
*/
|
|
5981
|
+
comment?: pulumi.Input<string>;
|
|
5982
|
+
/**
|
|
5983
|
+
* the Unix timestamp at the model's creation
|
|
5984
|
+
*/
|
|
5985
|
+
createdAt?: pulumi.Input<number>;
|
|
5986
|
+
/**
|
|
5987
|
+
* the identifier of the user who created the model
|
|
5988
|
+
*/
|
|
5989
|
+
createdBy?: pulumi.Input<string>;
|
|
5990
|
+
/**
|
|
5991
|
+
* The unique identifier of the model version
|
|
5992
|
+
*/
|
|
5993
|
+
id?: pulumi.Input<string>;
|
|
5994
|
+
/**
|
|
5995
|
+
* the unique identifier of the metastore
|
|
5996
|
+
*/
|
|
5997
|
+
metastoreId?: pulumi.Input<string>;
|
|
5998
|
+
modelName?: pulumi.Input<string>;
|
|
5999
|
+
/**
|
|
6000
|
+
* block describing model version dependencies, for feature-store packaged models. Consists of following attributes:
|
|
6001
|
+
*/
|
|
6002
|
+
modelVersionDependencies?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyArgs>[]>;
|
|
6003
|
+
/**
|
|
6004
|
+
* MLflow run ID used when creating the model version, if `source` was generated by an experiment run stored in an MLflow tracking server
|
|
6005
|
+
*/
|
|
6006
|
+
runId?: pulumi.Input<string>;
|
|
6007
|
+
/**
|
|
6008
|
+
* ID of the Databricks workspace containing the MLflow run that generated this model version, if applicable
|
|
6009
|
+
*/
|
|
6010
|
+
runWorkspaceId?: pulumi.Input<number>;
|
|
6011
|
+
/**
|
|
6012
|
+
* The name of the schema where the registered model resides.
|
|
6013
|
+
*/
|
|
6014
|
+
schemaName?: pulumi.Input<string>;
|
|
6015
|
+
/**
|
|
6016
|
+
* URI indicating the location of the source artifacts (files) for the model version.
|
|
6017
|
+
*/
|
|
6018
|
+
source?: pulumi.Input<string>;
|
|
6019
|
+
/**
|
|
6020
|
+
* Current status of the model version.
|
|
6021
|
+
*/
|
|
6022
|
+
status?: pulumi.Input<string>;
|
|
6023
|
+
/**
|
|
6024
|
+
* The storage location under which model version data files are stored.
|
|
6025
|
+
*/
|
|
6026
|
+
storageLocation?: pulumi.Input<string>;
|
|
6027
|
+
/**
|
|
6028
|
+
* the timestamp of the last time changes were made to the model
|
|
6029
|
+
*/
|
|
6030
|
+
updatedAt?: pulumi.Input<number>;
|
|
6031
|
+
/**
|
|
6032
|
+
* the identifier of the user who updated the model last time
|
|
6033
|
+
*/
|
|
6034
|
+
updatedBy?: pulumi.Input<string>;
|
|
6035
|
+
/**
|
|
6036
|
+
* Integer model version number, used to reference the model version in API requests.
|
|
6037
|
+
*/
|
|
6038
|
+
version?: pulumi.Input<number>;
|
|
6039
|
+
}
|
|
6040
|
+
export interface GetRegisteredModelVersionsModelVersionAlias {
|
|
6041
|
+
/**
|
|
6042
|
+
* string with the name of alias
|
|
6043
|
+
*/
|
|
6044
|
+
aliasName?: string;
|
|
6045
|
+
/**
|
|
6046
|
+
* associated model version
|
|
6047
|
+
*/
|
|
6048
|
+
versionNum?: number;
|
|
6049
|
+
}
|
|
6050
|
+
export interface GetRegisteredModelVersionsModelVersionAliasArgs {
|
|
6051
|
+
/**
|
|
6052
|
+
* string with the name of alias
|
|
6053
|
+
*/
|
|
6054
|
+
aliasName?: pulumi.Input<string>;
|
|
6055
|
+
/**
|
|
6056
|
+
* associated model version
|
|
6057
|
+
*/
|
|
6058
|
+
versionNum?: pulumi.Input<number>;
|
|
6059
|
+
}
|
|
6060
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependency {
|
|
6061
|
+
/**
|
|
6062
|
+
* list of dependencies consisting of following attributes:
|
|
6063
|
+
*/
|
|
6064
|
+
dependencies?: inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependency[];
|
|
6065
|
+
}
|
|
6066
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyArgs {
|
|
6067
|
+
/**
|
|
6068
|
+
* list of dependencies consisting of following attributes:
|
|
6069
|
+
*/
|
|
6070
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyArgs>[]>;
|
|
6071
|
+
}
|
|
6072
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependency {
|
|
6073
|
+
/**
|
|
6074
|
+
* A function that is dependent on a SQL object:
|
|
6075
|
+
*/
|
|
6076
|
+
functions?: inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunction[];
|
|
6077
|
+
/**
|
|
6078
|
+
* A table that is dependent on a SQL object
|
|
6079
|
+
*/
|
|
6080
|
+
tables?: inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTable[];
|
|
6081
|
+
}
|
|
6082
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyArgs {
|
|
6083
|
+
/**
|
|
6084
|
+
* A function that is dependent on a SQL object:
|
|
6085
|
+
*/
|
|
6086
|
+
functions?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunctionArgs>[]>;
|
|
6087
|
+
/**
|
|
6088
|
+
* A table that is dependent on a SQL object
|
|
6089
|
+
*/
|
|
6090
|
+
tables?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTableArgs>[]>;
|
|
6091
|
+
}
|
|
6092
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunction {
|
|
6093
|
+
/**
|
|
6094
|
+
* Full name of the dependent function
|
|
6095
|
+
*/
|
|
6096
|
+
functionFullName: string;
|
|
6097
|
+
}
|
|
6098
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunctionArgs {
|
|
6099
|
+
/**
|
|
6100
|
+
* Full name of the dependent function
|
|
6101
|
+
*/
|
|
6102
|
+
functionFullName: pulumi.Input<string>;
|
|
6103
|
+
}
|
|
6104
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTable {
|
|
6105
|
+
/**
|
|
6106
|
+
* Full name of the dependent table
|
|
6107
|
+
*/
|
|
6108
|
+
tableFullName: string;
|
|
6109
|
+
}
|
|
6110
|
+
export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTableArgs {
|
|
6111
|
+
/**
|
|
6112
|
+
* Full name of the dependent table
|
|
6113
|
+
*/
|
|
6114
|
+
tableFullName: pulumi.Input<string>;
|
|
6115
|
+
}
|
|
6116
|
+
export interface GetSchemaSchemaInfo {
|
|
6117
|
+
/**
|
|
6118
|
+
* indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
|
|
6119
|
+
*/
|
|
6120
|
+
browseOnly?: boolean;
|
|
6121
|
+
/**
|
|
6122
|
+
* the name of the catalog where the schema is.
|
|
6123
|
+
*/
|
|
6124
|
+
catalogName?: string;
|
|
6125
|
+
/**
|
|
6126
|
+
* the type of the parent catalog.
|
|
6127
|
+
*/
|
|
6128
|
+
catalogType?: string;
|
|
6129
|
+
/**
|
|
6130
|
+
* the comment attached to the volume
|
|
6131
|
+
*/
|
|
6132
|
+
comment?: string;
|
|
6133
|
+
/**
|
|
6134
|
+
* time at which this schema was created, in epoch milliseconds.
|
|
6135
|
+
*/
|
|
6136
|
+
createdAt?: number;
|
|
6137
|
+
/**
|
|
6138
|
+
* username of schema creator.
|
|
6139
|
+
*/
|
|
6140
|
+
createdBy?: string;
|
|
6141
|
+
/**
|
|
6142
|
+
* information about actual state of predictive optimization.
|
|
6143
|
+
*/
|
|
6144
|
+
effectivePredictiveOptimizationFlag?: inputs.GetSchemaSchemaInfoEffectivePredictiveOptimizationFlag;
|
|
6145
|
+
/**
|
|
6146
|
+
* whether predictive optimization should be enabled for this object and objects under it.
|
|
6147
|
+
*/
|
|
6148
|
+
enablePredictiveOptimization?: string;
|
|
6149
|
+
/**
|
|
6150
|
+
* the two-level (fully qualified) name of the schema
|
|
6151
|
+
*/
|
|
6152
|
+
fullName?: string;
|
|
6153
|
+
/**
|
|
6154
|
+
* the unique identifier of the metastore
|
|
6155
|
+
*/
|
|
6156
|
+
metastoreId?: string;
|
|
6157
|
+
/**
|
|
6158
|
+
* a fully qualified name of databricks_schema: *`catalog`.`schema`*
|
|
6159
|
+
*/
|
|
6160
|
+
name?: string;
|
|
6161
|
+
/**
|
|
6162
|
+
* the identifier of the user who owns the schema
|
|
6163
|
+
*/
|
|
6164
|
+
owner?: string;
|
|
6165
|
+
/**
|
|
6166
|
+
* map of properties set on the schema
|
|
5578
6167
|
*/
|
|
5579
6168
|
properties?: {
|
|
5580
6169
|
[key: string]: string;
|
|
@@ -5686,6 +6275,352 @@ export interface GetSchemaSchemaInfoEffectivePredictiveOptimizationFlagArgs {
|
|
|
5686
6275
|
inheritedFromType?: pulumi.Input<string>;
|
|
5687
6276
|
value: pulumi.Input<string>;
|
|
5688
6277
|
}
|
|
6278
|
+
export interface GetServingEndpointsEndpoint {
|
|
6279
|
+
/**
|
|
6280
|
+
* A block with AI Gateway configuration for the serving endpoint.
|
|
6281
|
+
*/
|
|
6282
|
+
aiGateways?: inputs.GetServingEndpointsEndpointAiGateway[];
|
|
6283
|
+
/**
|
|
6284
|
+
* The model serving endpoint configuration.
|
|
6285
|
+
*/
|
|
6286
|
+
configs?: inputs.GetServingEndpointsEndpointConfig[];
|
|
6287
|
+
creationTimestamp?: number;
|
|
6288
|
+
creator?: string;
|
|
6289
|
+
id?: string;
|
|
6290
|
+
lastUpdatedTimestamp?: number;
|
|
6291
|
+
/**
|
|
6292
|
+
* The name of the model serving endpoint.
|
|
6293
|
+
*/
|
|
6294
|
+
name?: string;
|
|
6295
|
+
states?: inputs.GetServingEndpointsEndpointState[];
|
|
6296
|
+
/**
|
|
6297
|
+
* Tags to be attached to the serving endpoint and automatically propagated to billing logs.
|
|
6298
|
+
*/
|
|
6299
|
+
tags?: inputs.GetServingEndpointsEndpointTag[];
|
|
6300
|
+
task?: string;
|
|
6301
|
+
}
|
|
6302
|
+
export interface GetServingEndpointsEndpointArgs {
|
|
6303
|
+
/**
|
|
6304
|
+
* A block with AI Gateway configuration for the serving endpoint.
|
|
6305
|
+
*/
|
|
6306
|
+
aiGateways?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayArgs>[]>;
|
|
6307
|
+
/**
|
|
6308
|
+
* The model serving endpoint configuration.
|
|
6309
|
+
*/
|
|
6310
|
+
configs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigArgs>[]>;
|
|
6311
|
+
creationTimestamp?: pulumi.Input<number>;
|
|
6312
|
+
creator?: pulumi.Input<string>;
|
|
6313
|
+
id?: pulumi.Input<string>;
|
|
6314
|
+
lastUpdatedTimestamp?: pulumi.Input<number>;
|
|
6315
|
+
/**
|
|
6316
|
+
* The name of the model serving endpoint.
|
|
6317
|
+
*/
|
|
6318
|
+
name?: pulumi.Input<string>;
|
|
6319
|
+
states?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointStateArgs>[]>;
|
|
6320
|
+
/**
|
|
6321
|
+
* Tags to be attached to the serving endpoint and automatically propagated to billing logs.
|
|
6322
|
+
*/
|
|
6323
|
+
tags?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointTagArgs>[]>;
|
|
6324
|
+
task?: pulumi.Input<string>;
|
|
6325
|
+
}
|
|
6326
|
+
export interface GetServingEndpointsEndpointAiGateway {
|
|
6327
|
+
guardrails?: inputs.GetServingEndpointsEndpointAiGatewayGuardrail[];
|
|
6328
|
+
inferenceTableConfigs?: inputs.GetServingEndpointsEndpointAiGatewayInferenceTableConfig[];
|
|
6329
|
+
/**
|
|
6330
|
+
* A list of rate limit blocks to be applied to the serving endpoint.
|
|
6331
|
+
*/
|
|
6332
|
+
rateLimits?: inputs.GetServingEndpointsEndpointAiGatewayRateLimit[];
|
|
6333
|
+
usageTrackingConfigs?: inputs.GetServingEndpointsEndpointAiGatewayUsageTrackingConfig[];
|
|
6334
|
+
}
|
|
6335
|
+
export interface GetServingEndpointsEndpointAiGatewayArgs {
|
|
6336
|
+
guardrails?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayGuardrailArgs>[]>;
|
|
6337
|
+
inferenceTableConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayInferenceTableConfigArgs>[]>;
|
|
6338
|
+
/**
|
|
6339
|
+
* A list of rate limit blocks to be applied to the serving endpoint.
|
|
6340
|
+
*/
|
|
6341
|
+
rateLimits?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayRateLimitArgs>[]>;
|
|
6342
|
+
usageTrackingConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayUsageTrackingConfigArgs>[]>;
|
|
6343
|
+
}
|
|
6344
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrail {
|
|
6345
|
+
inputProperties?: inputs.GetServingEndpointsEndpointAiGatewayGuardrailInputProperty[];
|
|
6346
|
+
outputs?: inputs.GetServingEndpointsEndpointAiGatewayGuardrailOutput[];
|
|
6347
|
+
}
|
|
6348
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailArgs {
|
|
6349
|
+
inputProperties?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyArgs>[]>;
|
|
6350
|
+
outputs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayGuardrailOutputArgs>[]>;
|
|
6351
|
+
}
|
|
6352
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailInputProperty {
|
|
6353
|
+
invalidKeywords?: string[];
|
|
6354
|
+
piis?: inputs.GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPii[];
|
|
6355
|
+
safety?: boolean;
|
|
6356
|
+
validTopics?: string[];
|
|
6357
|
+
}
|
|
6358
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyArgs {
|
|
6359
|
+
invalidKeywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6360
|
+
piis?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPiiArgs>[]>;
|
|
6361
|
+
safety?: pulumi.Input<boolean>;
|
|
6362
|
+
validTopics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6363
|
+
}
|
|
6364
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPii {
|
|
6365
|
+
behavior: string;
|
|
6366
|
+
}
|
|
6367
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPiiArgs {
|
|
6368
|
+
behavior: pulumi.Input<string>;
|
|
6369
|
+
}
|
|
6370
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailOutput {
|
|
6371
|
+
invalidKeywords?: string[];
|
|
6372
|
+
piis?: inputs.GetServingEndpointsEndpointAiGatewayGuardrailOutputPii[];
|
|
6373
|
+
safety?: boolean;
|
|
6374
|
+
validTopics?: string[];
|
|
6375
|
+
}
|
|
6376
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailOutputArgs {
|
|
6377
|
+
invalidKeywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6378
|
+
piis?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointAiGatewayGuardrailOutputPiiArgs>[]>;
|
|
6379
|
+
safety?: pulumi.Input<boolean>;
|
|
6380
|
+
validTopics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6381
|
+
}
|
|
6382
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailOutputPii {
|
|
6383
|
+
behavior: string;
|
|
6384
|
+
}
|
|
6385
|
+
export interface GetServingEndpointsEndpointAiGatewayGuardrailOutputPiiArgs {
|
|
6386
|
+
behavior: pulumi.Input<string>;
|
|
6387
|
+
}
|
|
6388
|
+
export interface GetServingEndpointsEndpointAiGatewayInferenceTableConfig {
|
|
6389
|
+
catalogName?: string;
|
|
6390
|
+
enabled?: boolean;
|
|
6391
|
+
schemaName?: string;
|
|
6392
|
+
tableNamePrefix?: string;
|
|
6393
|
+
}
|
|
6394
|
+
export interface GetServingEndpointsEndpointAiGatewayInferenceTableConfigArgs {
|
|
6395
|
+
catalogName?: pulumi.Input<string>;
|
|
6396
|
+
enabled?: pulumi.Input<boolean>;
|
|
6397
|
+
schemaName?: pulumi.Input<string>;
|
|
6398
|
+
tableNamePrefix?: pulumi.Input<string>;
|
|
6399
|
+
}
|
|
6400
|
+
export interface GetServingEndpointsEndpointAiGatewayRateLimit {
|
|
6401
|
+
calls: number;
|
|
6402
|
+
key?: string;
|
|
6403
|
+
renewalPeriod: string;
|
|
6404
|
+
}
|
|
6405
|
+
export interface GetServingEndpointsEndpointAiGatewayRateLimitArgs {
|
|
6406
|
+
calls: pulumi.Input<number>;
|
|
6407
|
+
key?: pulumi.Input<string>;
|
|
6408
|
+
renewalPeriod: pulumi.Input<string>;
|
|
6409
|
+
}
|
|
6410
|
+
export interface GetServingEndpointsEndpointAiGatewayUsageTrackingConfig {
|
|
6411
|
+
enabled?: boolean;
|
|
6412
|
+
}
|
|
6413
|
+
export interface GetServingEndpointsEndpointAiGatewayUsageTrackingConfigArgs {
|
|
6414
|
+
enabled?: pulumi.Input<boolean>;
|
|
6415
|
+
}
|
|
6416
|
+
export interface GetServingEndpointsEndpointConfig {
|
|
6417
|
+
servedEntities?: inputs.GetServingEndpointsEndpointConfigServedEntity[];
|
|
6418
|
+
servedModels?: inputs.GetServingEndpointsEndpointConfigServedModel[];
|
|
6419
|
+
}
|
|
6420
|
+
export interface GetServingEndpointsEndpointConfigArgs {
|
|
6421
|
+
servedEntities?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityArgs>[]>;
|
|
6422
|
+
servedModels?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedModelArgs>[]>;
|
|
6423
|
+
}
|
|
6424
|
+
export interface GetServingEndpointsEndpointConfigServedEntity {
|
|
6425
|
+
entityName?: string;
|
|
6426
|
+
entityVersion?: string;
|
|
6427
|
+
externalModels?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModel[];
|
|
6428
|
+
foundationModels?: inputs.GetServingEndpointsEndpointConfigServedEntityFoundationModel[];
|
|
6429
|
+
/**
|
|
6430
|
+
* The name of the model serving endpoint.
|
|
6431
|
+
*/
|
|
6432
|
+
name?: string;
|
|
6433
|
+
}
|
|
6434
|
+
export interface GetServingEndpointsEndpointConfigServedEntityArgs {
|
|
6435
|
+
entityName?: pulumi.Input<string>;
|
|
6436
|
+
entityVersion?: pulumi.Input<string>;
|
|
6437
|
+
externalModels?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelArgs>[]>;
|
|
6438
|
+
foundationModels?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityFoundationModelArgs>[]>;
|
|
6439
|
+
/**
|
|
6440
|
+
* The name of the model serving endpoint.
|
|
6441
|
+
*/
|
|
6442
|
+
name?: pulumi.Input<string>;
|
|
6443
|
+
}
|
|
6444
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModel {
|
|
6445
|
+
ai21labsConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig[];
|
|
6446
|
+
amazonBedrockConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig[];
|
|
6447
|
+
anthropicConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig[];
|
|
6448
|
+
cohereConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig[];
|
|
6449
|
+
databricksModelServingConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig[];
|
|
6450
|
+
googleCloudVertexAiConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig[];
|
|
6451
|
+
/**
|
|
6452
|
+
* The name of the model serving endpoint.
|
|
6453
|
+
*/
|
|
6454
|
+
name: string;
|
|
6455
|
+
openaiConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig[];
|
|
6456
|
+
palmConfigs?: inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig[];
|
|
6457
|
+
provider: string;
|
|
6458
|
+
task: string;
|
|
6459
|
+
}
|
|
6460
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelArgs {
|
|
6461
|
+
ai21labsConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfigArgs>[]>;
|
|
6462
|
+
amazonBedrockConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfigArgs>[]>;
|
|
6463
|
+
anthropicConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfigArgs>[]>;
|
|
6464
|
+
cohereConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfigArgs>[]>;
|
|
6465
|
+
databricksModelServingConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfigArgs>[]>;
|
|
6466
|
+
googleCloudVertexAiConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfigArgs>[]>;
|
|
6467
|
+
/**
|
|
6468
|
+
* The name of the model serving endpoint.
|
|
6469
|
+
*/
|
|
6470
|
+
name: pulumi.Input<string>;
|
|
6471
|
+
openaiConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfigArgs>[]>;
|
|
6472
|
+
palmConfigs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfigArgs>[]>;
|
|
6473
|
+
provider: pulumi.Input<string>;
|
|
6474
|
+
task: pulumi.Input<string>;
|
|
6475
|
+
}
|
|
6476
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig {
|
|
6477
|
+
ai21labsApiKey?: string;
|
|
6478
|
+
ai21labsApiKeyPlaintext?: string;
|
|
6479
|
+
}
|
|
6480
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfigArgs {
|
|
6481
|
+
ai21labsApiKey?: pulumi.Input<string>;
|
|
6482
|
+
ai21labsApiKeyPlaintext?: pulumi.Input<string>;
|
|
6483
|
+
}
|
|
6484
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig {
|
|
6485
|
+
awsAccessKeyId?: string;
|
|
6486
|
+
awsAccessKeyIdPlaintext?: string;
|
|
6487
|
+
awsRegion: string;
|
|
6488
|
+
awsSecretAccessKey?: string;
|
|
6489
|
+
awsSecretAccessKeyPlaintext?: string;
|
|
6490
|
+
bedrockProvider: string;
|
|
6491
|
+
}
|
|
6492
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfigArgs {
|
|
6493
|
+
awsAccessKeyId?: pulumi.Input<string>;
|
|
6494
|
+
awsAccessKeyIdPlaintext?: pulumi.Input<string>;
|
|
6495
|
+
awsRegion: pulumi.Input<string>;
|
|
6496
|
+
awsSecretAccessKey?: pulumi.Input<string>;
|
|
6497
|
+
awsSecretAccessKeyPlaintext?: pulumi.Input<string>;
|
|
6498
|
+
bedrockProvider: pulumi.Input<string>;
|
|
6499
|
+
}
|
|
6500
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig {
|
|
6501
|
+
anthropicApiKey?: string;
|
|
6502
|
+
anthropicApiKeyPlaintext?: string;
|
|
6503
|
+
}
|
|
6504
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfigArgs {
|
|
6505
|
+
anthropicApiKey?: pulumi.Input<string>;
|
|
6506
|
+
anthropicApiKeyPlaintext?: pulumi.Input<string>;
|
|
6507
|
+
}
|
|
6508
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig {
|
|
6509
|
+
cohereApiBase?: string;
|
|
6510
|
+
cohereApiKey?: string;
|
|
6511
|
+
cohereApiKeyPlaintext?: string;
|
|
6512
|
+
}
|
|
6513
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfigArgs {
|
|
6514
|
+
cohereApiBase?: pulumi.Input<string>;
|
|
6515
|
+
cohereApiKey?: pulumi.Input<string>;
|
|
6516
|
+
cohereApiKeyPlaintext?: pulumi.Input<string>;
|
|
6517
|
+
}
|
|
6518
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig {
|
|
6519
|
+
databricksApiToken?: string;
|
|
6520
|
+
databricksApiTokenPlaintext?: string;
|
|
6521
|
+
databricksWorkspaceUrl: string;
|
|
6522
|
+
}
|
|
6523
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfigArgs {
|
|
6524
|
+
databricksApiToken?: pulumi.Input<string>;
|
|
6525
|
+
databricksApiTokenPlaintext?: pulumi.Input<string>;
|
|
6526
|
+
databricksWorkspaceUrl: pulumi.Input<string>;
|
|
6527
|
+
}
|
|
6528
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig {
|
|
6529
|
+
privateKey?: string;
|
|
6530
|
+
privateKeyPlaintext?: string;
|
|
6531
|
+
projectId?: string;
|
|
6532
|
+
region?: string;
|
|
6533
|
+
}
|
|
6534
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfigArgs {
|
|
6535
|
+
privateKey?: pulumi.Input<string>;
|
|
6536
|
+
privateKeyPlaintext?: pulumi.Input<string>;
|
|
6537
|
+
projectId?: pulumi.Input<string>;
|
|
6538
|
+
region?: pulumi.Input<string>;
|
|
6539
|
+
}
|
|
6540
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig {
|
|
6541
|
+
microsoftEntraClientId?: string;
|
|
6542
|
+
microsoftEntraClientSecret?: string;
|
|
6543
|
+
microsoftEntraClientSecretPlaintext?: string;
|
|
6544
|
+
microsoftEntraTenantId?: string;
|
|
6545
|
+
openaiApiBase?: string;
|
|
6546
|
+
openaiApiKey?: string;
|
|
6547
|
+
openaiApiKeyPlaintext?: string;
|
|
6548
|
+
openaiApiType?: string;
|
|
6549
|
+
openaiApiVersion?: string;
|
|
6550
|
+
openaiDeploymentName?: string;
|
|
6551
|
+
openaiOrganization?: string;
|
|
6552
|
+
}
|
|
6553
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfigArgs {
|
|
6554
|
+
microsoftEntraClientId?: pulumi.Input<string>;
|
|
6555
|
+
microsoftEntraClientSecret?: pulumi.Input<string>;
|
|
6556
|
+
microsoftEntraClientSecretPlaintext?: pulumi.Input<string>;
|
|
6557
|
+
microsoftEntraTenantId?: pulumi.Input<string>;
|
|
6558
|
+
openaiApiBase?: pulumi.Input<string>;
|
|
6559
|
+
openaiApiKey?: pulumi.Input<string>;
|
|
6560
|
+
openaiApiKeyPlaintext?: pulumi.Input<string>;
|
|
6561
|
+
openaiApiType?: pulumi.Input<string>;
|
|
6562
|
+
openaiApiVersion?: pulumi.Input<string>;
|
|
6563
|
+
openaiDeploymentName?: pulumi.Input<string>;
|
|
6564
|
+
openaiOrganization?: pulumi.Input<string>;
|
|
6565
|
+
}
|
|
6566
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig {
|
|
6567
|
+
palmApiKey?: string;
|
|
6568
|
+
palmApiKeyPlaintext?: string;
|
|
6569
|
+
}
|
|
6570
|
+
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfigArgs {
|
|
6571
|
+
palmApiKey?: pulumi.Input<string>;
|
|
6572
|
+
palmApiKeyPlaintext?: pulumi.Input<string>;
|
|
6573
|
+
}
|
|
6574
|
+
export interface GetServingEndpointsEndpointConfigServedEntityFoundationModel {
|
|
6575
|
+
description?: string;
|
|
6576
|
+
displayName?: string;
|
|
6577
|
+
docs?: string;
|
|
6578
|
+
/**
|
|
6579
|
+
* The name of the model serving endpoint.
|
|
6580
|
+
*/
|
|
6581
|
+
name?: string;
|
|
6582
|
+
}
|
|
6583
|
+
export interface GetServingEndpointsEndpointConfigServedEntityFoundationModelArgs {
|
|
6584
|
+
description?: pulumi.Input<string>;
|
|
6585
|
+
displayName?: pulumi.Input<string>;
|
|
6586
|
+
docs?: pulumi.Input<string>;
|
|
6587
|
+
/**
|
|
6588
|
+
* The name of the model serving endpoint.
|
|
6589
|
+
*/
|
|
6590
|
+
name?: pulumi.Input<string>;
|
|
6591
|
+
}
|
|
6592
|
+
export interface GetServingEndpointsEndpointConfigServedModel {
|
|
6593
|
+
modelName?: string;
|
|
6594
|
+
modelVersion?: string;
|
|
6595
|
+
/**
|
|
6596
|
+
* The name of the model serving endpoint.
|
|
6597
|
+
*/
|
|
6598
|
+
name?: string;
|
|
6599
|
+
}
|
|
6600
|
+
export interface GetServingEndpointsEndpointConfigServedModelArgs {
|
|
6601
|
+
modelName?: pulumi.Input<string>;
|
|
6602
|
+
modelVersion?: pulumi.Input<string>;
|
|
6603
|
+
/**
|
|
6604
|
+
* The name of the model serving endpoint.
|
|
6605
|
+
*/
|
|
6606
|
+
name?: pulumi.Input<string>;
|
|
6607
|
+
}
|
|
6608
|
+
export interface GetServingEndpointsEndpointState {
|
|
6609
|
+
configUpdate?: string;
|
|
6610
|
+
ready?: string;
|
|
6611
|
+
}
|
|
6612
|
+
export interface GetServingEndpointsEndpointStateArgs {
|
|
6613
|
+
configUpdate?: pulumi.Input<string>;
|
|
6614
|
+
ready?: pulumi.Input<string>;
|
|
6615
|
+
}
|
|
6616
|
+
export interface GetServingEndpointsEndpointTag {
|
|
6617
|
+
key: string;
|
|
6618
|
+
value?: string;
|
|
6619
|
+
}
|
|
6620
|
+
export interface GetServingEndpointsEndpointTagArgs {
|
|
6621
|
+
key: pulumi.Input<string>;
|
|
6622
|
+
value?: pulumi.Input<string>;
|
|
6623
|
+
}
|
|
5689
6624
|
export interface GetShareObject {
|
|
5690
6625
|
addedAt?: number;
|
|
5691
6626
|
addedBy?: string;
|
|
@@ -6777,6 +7712,8 @@ export interface JobJobClusterNewCluster {
|
|
|
6777
7712
|
idempotencyToken?: pulumi.Input<string>;
|
|
6778
7713
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterInitScript>[]>;
|
|
6779
7714
|
instancePoolId?: pulumi.Input<string>;
|
|
7715
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
7716
|
+
kind?: pulumi.Input<string>;
|
|
6780
7717
|
/**
|
|
6781
7718
|
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
6782
7719
|
*/
|
|
@@ -6794,6 +7731,7 @@ export interface JobJobClusterNewCluster {
|
|
|
6794
7731
|
}>;
|
|
6795
7732
|
sparkVersion: pulumi.Input<string>;
|
|
6796
7733
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7734
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
6797
7735
|
/**
|
|
6798
7736
|
* isn't supported
|
|
6799
7737
|
*/
|
|
@@ -6984,6 +7922,8 @@ export interface JobNewCluster {
|
|
|
6984
7922
|
idempotencyToken?: pulumi.Input<string>;
|
|
6985
7923
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobNewClusterInitScript>[]>;
|
|
6986
7924
|
instancePoolId?: pulumi.Input<string>;
|
|
7925
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
7926
|
+
kind?: pulumi.Input<string>;
|
|
6987
7927
|
/**
|
|
6988
7928
|
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
6989
7929
|
*/
|
|
@@ -7001,6 +7941,7 @@ export interface JobNewCluster {
|
|
|
7001
7941
|
}>;
|
|
7002
7942
|
sparkVersion: pulumi.Input<string>;
|
|
7003
7943
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7944
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
7004
7945
|
/**
|
|
7005
7946
|
* isn't supported
|
|
7006
7947
|
*/
|
|
@@ -7308,6 +8249,7 @@ export interface JobSparkSubmitTask {
|
|
|
7308
8249
|
parameters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7309
8250
|
}
|
|
7310
8251
|
export interface JobTask {
|
|
8252
|
+
cleanRoomsNotebookTask?: pulumi.Input<inputs.JobTaskCleanRoomsNotebookTask>;
|
|
7311
8253
|
conditionTask?: pulumi.Input<inputs.JobTaskConditionTask>;
|
|
7312
8254
|
dbtTask?: pulumi.Input<inputs.JobTaskDbtTask>;
|
|
7313
8255
|
/**
|
|
@@ -7395,6 +8337,14 @@ export interface JobTask {
|
|
|
7395
8337
|
*/
|
|
7396
8338
|
webhookNotifications?: pulumi.Input<inputs.JobTaskWebhookNotifications>;
|
|
7397
8339
|
}
|
|
8340
|
+
export interface JobTaskCleanRoomsNotebookTask {
|
|
8341
|
+
cleanRoomName: pulumi.Input<string>;
|
|
8342
|
+
etag?: pulumi.Input<string>;
|
|
8343
|
+
notebookBaseParameters?: pulumi.Input<{
|
|
8344
|
+
[key: string]: pulumi.Input<string>;
|
|
8345
|
+
}>;
|
|
8346
|
+
notebookName: pulumi.Input<string>;
|
|
8347
|
+
}
|
|
7398
8348
|
export interface JobTaskConditionTask {
|
|
7399
8349
|
/**
|
|
7400
8350
|
* The left operand of the condition task. It could be a string value, job state, or a parameter reference.
|
|
@@ -7497,6 +8447,7 @@ export interface JobTaskForEachTask {
|
|
|
7497
8447
|
task: pulumi.Input<inputs.JobTaskForEachTaskTask>;
|
|
7498
8448
|
}
|
|
7499
8449
|
export interface JobTaskForEachTaskTask {
|
|
8450
|
+
cleanRoomsNotebookTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskCleanRoomsNotebookTask>;
|
|
7500
8451
|
conditionTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskConditionTask>;
|
|
7501
8452
|
dbtTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskDbtTask>;
|
|
7502
8453
|
/**
|
|
@@ -7583,6 +8534,14 @@ export interface JobTaskForEachTaskTask {
|
|
|
7583
8534
|
*/
|
|
7584
8535
|
webhookNotifications?: pulumi.Input<inputs.JobTaskForEachTaskTaskWebhookNotifications>;
|
|
7585
8536
|
}
|
|
8537
|
+
export interface JobTaskForEachTaskTaskCleanRoomsNotebookTask {
|
|
8538
|
+
cleanRoomName: pulumi.Input<string>;
|
|
8539
|
+
etag?: pulumi.Input<string>;
|
|
8540
|
+
notebookBaseParameters?: pulumi.Input<{
|
|
8541
|
+
[key: string]: pulumi.Input<string>;
|
|
8542
|
+
}>;
|
|
8543
|
+
notebookName: pulumi.Input<string>;
|
|
8544
|
+
}
|
|
7586
8545
|
export interface JobTaskForEachTaskTaskConditionTask {
|
|
7587
8546
|
/**
|
|
7588
8547
|
* The left operand of the condition task. It could be a string value, job state, or a parameter reference.
|
|
@@ -7734,6 +8693,8 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
7734
8693
|
idempotencyToken?: pulumi.Input<string>;
|
|
7735
8694
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScript>[]>;
|
|
7736
8695
|
instancePoolId?: pulumi.Input<string>;
|
|
8696
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
8697
|
+
kind?: pulumi.Input<string>;
|
|
7737
8698
|
/**
|
|
7738
8699
|
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
7739
8700
|
*/
|
|
@@ -7751,6 +8712,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
7751
8712
|
}>;
|
|
7752
8713
|
sparkVersion: pulumi.Input<string>;
|
|
7753
8714
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8715
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
7754
8716
|
/**
|
|
7755
8717
|
* isn't supported
|
|
7756
8718
|
*/
|
|
@@ -8280,6 +9242,8 @@ export interface JobTaskNewCluster {
|
|
|
8280
9242
|
idempotencyToken?: pulumi.Input<string>;
|
|
8281
9243
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterInitScript>[]>;
|
|
8282
9244
|
instancePoolId?: pulumi.Input<string>;
|
|
9245
|
+
isSingleNode?: pulumi.Input<boolean>;
|
|
9246
|
+
kind?: pulumi.Input<string>;
|
|
8283
9247
|
/**
|
|
8284
9248
|
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
8285
9249
|
*/
|
|
@@ -8297,6 +9261,7 @@ export interface JobTaskNewCluster {
|
|
|
8297
9261
|
}>;
|
|
8298
9262
|
sparkVersion: pulumi.Input<string>;
|
|
8299
9263
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9264
|
+
useMlRuntime?: pulumi.Input<boolean>;
|
|
8300
9265
|
/**
|
|
8301
9266
|
* isn't supported
|
|
8302
9267
|
*/
|
|
@@ -10169,7 +11134,7 @@ export interface PipelineNotification {
|
|
|
10169
11134
|
emailRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10170
11135
|
}
|
|
10171
11136
|
export interface PipelineRestartWindow {
|
|
10172
|
-
|
|
11137
|
+
daysOfWeeks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10173
11138
|
startHour: pulumi.Input<number>;
|
|
10174
11139
|
timeZoneId?: pulumi.Input<string>;
|
|
10175
11140
|
}
|