@pulumi/databricks 1.57.0-alpha.1735914673 → 1.57.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.
Files changed (92) hide show
  1. package/app.d.ts +187 -0
  2. package/app.js +106 -0
  3. package/app.js.map +1 -0
  4. package/cluster.d.ts +9 -0
  5. package/cluster.js +6 -0
  6. package/cluster.js.map +1 -1
  7. package/credential.d.ts +275 -0
  8. package/credential.js +183 -0
  9. package/credential.js.map +1 -0
  10. package/getApp.d.ts +95 -0
  11. package/getApp.js +78 -0
  12. package/getApp.js.map +1 -0
  13. package/getApps.d.ts +66 -0
  14. package/getApps.js +70 -0
  15. package/getApps.js.map +1 -0
  16. package/getAwsAssumeRolePolicy.d.ts +18 -0
  17. package/getAwsAssumeRolePolicy.js +2 -0
  18. package/getAwsAssumeRolePolicy.js.map +1 -1
  19. package/getAwsBucketPolicy.d.ts +18 -0
  20. package/getAwsBucketPolicy.js +2 -0
  21. package/getAwsBucketPolicy.js.map +1 -1
  22. package/getAwsCrossAccountPolicy.d.ts +9 -0
  23. package/getAwsCrossAccountPolicy.js +2 -0
  24. package/getAwsCrossAccountPolicy.js.map +1 -1
  25. package/getAwsUnityCatalogAssumeRolePolicy.d.ts +11 -2
  26. package/getAwsUnityCatalogAssumeRolePolicy.js +2 -0
  27. package/getAwsUnityCatalogAssumeRolePolicy.js.map +1 -1
  28. package/getAwsUnityCatalogPolicy.d.ts +9 -0
  29. package/getAwsUnityCatalogPolicy.js +2 -0
  30. package/getAwsUnityCatalogPolicy.js.map +1 -1
  31. package/getFunctions.d.ts +1 -1
  32. package/getJobs.d.ts +15 -0
  33. package/getJobs.js +8 -0
  34. package/getJobs.js.map +1 -1
  35. package/getMwsNetworkConnectivityConfig.d.ts +160 -0
  36. package/getMwsNetworkConnectivityConfig.js +86 -0
  37. package/getMwsNetworkConnectivityConfig.js.map +1 -0
  38. package/getMwsNetworkConnectivityConfigs.d.ts +115 -0
  39. package/getMwsNetworkConnectivityConfigs.js +98 -0
  40. package/getMwsNetworkConnectivityConfigs.js.map +1 -0
  41. package/getNotificationDestinations.d.ts +1 -10
  42. package/getNotificationDestinations.js +0 -2
  43. package/getNotificationDestinations.js.map +1 -1
  44. package/getRegisteredModel.d.ts +1 -1
  45. package/getRegisteredModelVersions.d.ts +98 -0
  46. package/getRegisteredModelVersions.js +74 -0
  47. package/getRegisteredModelVersions.js.map +1 -0
  48. package/getServingEndpoints.d.ts +116 -0
  49. package/getServingEndpoints.js +104 -0
  50. package/getServingEndpoints.js.map +1 -0
  51. package/grant.d.ts +26 -0
  52. package/grant.js +25 -0
  53. package/grant.js.map +1 -1
  54. package/grants.d.ts +29 -1
  55. package/grants.js +28 -1
  56. package/grants.js.map +1 -1
  57. package/index.d.ts +24 -0
  58. package/index.js +33 -5
  59. package/index.js.map +1 -1
  60. package/mwsCustomerManagedKeys.d.ts +11 -1
  61. package/mwsCustomerManagedKeys.js +11 -1
  62. package/mwsCustomerManagedKeys.js.map +1 -1
  63. package/mwsNccPrivateEndpointRule.d.ts +3 -3
  64. package/mwsNetworks.d.ts +11 -1
  65. package/mwsNetworks.js +11 -1
  66. package/mwsNetworks.js.map +1 -1
  67. package/mwsPrivateAccessSettings.d.ts +5 -1
  68. package/mwsPrivateAccessSettings.js +5 -1
  69. package/mwsPrivateAccessSettings.js.map +1 -1
  70. package/mwsStorageConfigurations.d.ts +11 -1
  71. package/mwsStorageConfigurations.js +11 -1
  72. package/mwsStorageConfigurations.js.map +1 -1
  73. package/mwsWorkspaces.d.ts +21 -1
  74. package/mwsWorkspaces.js +21 -1
  75. package/mwsWorkspaces.js.map +1 -1
  76. package/notificationDestination.d.ts +10 -0
  77. package/notificationDestination.js +10 -0
  78. package/notificationDestination.js.map +1 -1
  79. package/package.json +2 -2
  80. package/permissions.d.ts +36 -0
  81. package/permissions.js +34 -0
  82. package/permissions.js.map +1 -1
  83. package/query.d.ts +3 -3
  84. package/storageCredential.d.ts +3 -1
  85. package/storageCredential.js +3 -1
  86. package/storageCredential.js.map +1 -1
  87. package/types/input.d.ts +1037 -72
  88. package/types/output.d.ts +1100 -62
  89. package/workspaceBinding.d.ts +4 -4
  90. package/workspaceBinding.js +1 -1
  91. package/workspaceConf.d.ts +1 -1
  92. package/workspaceConf.js +1 -1
package/types/output.d.ts CHANGED
@@ -66,6 +66,162 @@ export interface AlertConditionThresholdValue {
66
66
  */
67
67
  stringValue?: string;
68
68
  }
69
+ export interface AppActiveDeployment {
70
+ /**
71
+ * The creation time of the app.
72
+ */
73
+ createTime: string;
74
+ /**
75
+ * The email of the user that created the app.
76
+ */
77
+ creator: string;
78
+ deploymentArtifacts: outputs.AppActiveDeploymentDeploymentArtifacts;
79
+ deploymentId?: string;
80
+ mode?: string;
81
+ sourceCodePath?: string;
82
+ status: outputs.AppActiveDeploymentStatus;
83
+ /**
84
+ * The update time of the app.
85
+ */
86
+ updateTime: string;
87
+ }
88
+ export interface AppActiveDeploymentDeploymentArtifacts {
89
+ sourceCodePath?: string;
90
+ }
91
+ export interface AppActiveDeploymentStatus {
92
+ /**
93
+ * Application status message
94
+ */
95
+ message: string;
96
+ /**
97
+ * State of the application.
98
+ */
99
+ state: string;
100
+ }
101
+ export interface AppAppStatus {
102
+ /**
103
+ * Application status message
104
+ */
105
+ message: string;
106
+ /**
107
+ * State of the application.
108
+ */
109
+ state: string;
110
+ }
111
+ export interface AppComputeStatus {
112
+ /**
113
+ * Application status message
114
+ */
115
+ message: string;
116
+ /**
117
+ * State of the application.
118
+ */
119
+ state: string;
120
+ }
121
+ export interface AppPendingDeployment {
122
+ /**
123
+ * The creation time of the app.
124
+ */
125
+ createTime: string;
126
+ /**
127
+ * The email of the user that created the app.
128
+ */
129
+ creator: string;
130
+ deploymentArtifacts: outputs.AppPendingDeploymentDeploymentArtifacts;
131
+ deploymentId?: string;
132
+ mode?: string;
133
+ sourceCodePath?: string;
134
+ status: outputs.AppPendingDeploymentStatus;
135
+ /**
136
+ * The update time of the app.
137
+ */
138
+ updateTime: string;
139
+ }
140
+ export interface AppPendingDeploymentDeploymentArtifacts {
141
+ sourceCodePath?: string;
142
+ }
143
+ export interface AppPendingDeploymentStatus {
144
+ /**
145
+ * Application status message
146
+ */
147
+ message: string;
148
+ /**
149
+ * State of the application.
150
+ */
151
+ state: string;
152
+ }
153
+ export interface AppResource {
154
+ /**
155
+ * The description of the resource.
156
+ *
157
+ * Exactly one of the following attributes must be provided:
158
+ */
159
+ description?: string;
160
+ /**
161
+ * attribute
162
+ */
163
+ job?: outputs.AppResourceJob;
164
+ /**
165
+ * The name of the resource.
166
+ */
167
+ name: string;
168
+ /**
169
+ * attribute
170
+ */
171
+ secret?: outputs.AppResourceSecret;
172
+ /**
173
+ * attribute
174
+ */
175
+ servingEndpoint?: outputs.AppResourceServingEndpoint;
176
+ /**
177
+ * attribute
178
+ */
179
+ sqlWarehouse?: outputs.AppResourceSqlWarehouse;
180
+ }
181
+ export interface AppResourceJob {
182
+ /**
183
+ * Id of the job to grant permission on.
184
+ */
185
+ id: string;
186
+ /**
187
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
188
+ */
189
+ permission: string;
190
+ }
191
+ export interface AppResourceSecret {
192
+ /**
193
+ * Key of the secret to grant permission on.
194
+ */
195
+ key: string;
196
+ /**
197
+ * Permission to grant on the secret scope. For secrets, only one permission is allowed. Permission must be one of: `READ`, `WRITE`, `MANAGE`.
198
+ */
199
+ permission: string;
200
+ /**
201
+ * Scope of the secret to grant permission on.
202
+ */
203
+ scope: string;
204
+ }
205
+ export interface AppResourceServingEndpoint {
206
+ /**
207
+ * Name of the serving endpoint to grant permission on.
208
+ */
209
+ name: string;
210
+ /**
211
+ * Permission to grant on the serving endpoint. Supported permissions are: `CAN_MANAGE`, `CAN_QUERY`, `CAN_VIEW`.
212
+ */
213
+ permission: string;
214
+ }
215
+ export interface AppResourceSqlWarehouse {
216
+ /**
217
+ * Id of the SQL warehouse to grant permission on.
218
+ */
219
+ id: string;
220
+ /**
221
+ * Permission to grant on the SQL warehouse. Supported permissions are: `CAN_MANAGE`, `CAN_USE`, `IS_OWNER`.
222
+ */
223
+ permission: string;
224
+ }
69
225
  export interface ArtifactAllowlistArtifactMatcher {
70
226
  /**
71
227
  * The artifact path or maven coordinate.
@@ -571,6 +727,59 @@ export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProf
571
727
  complianceStandards: string[];
572
728
  isEnabled: boolean;
573
729
  }
730
+ export interface CredentialAwsIamRole {
731
+ externalId: string;
732
+ /**
733
+ * 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`
734
+ *
735
+ * `azureManagedIdentity` optional configuration block for using managed identity as credential details for Azure (recommended over `azureServicePrincipal`):
736
+ */
737
+ roleArn?: string;
738
+ unityCatalogIamArn: string;
739
+ }
740
+ export interface CredentialAzureManagedIdentity {
741
+ /**
742
+ * 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`.
743
+ */
744
+ accessConnectorId: string;
745
+ /**
746
+ * Unique ID of the credential.
747
+ */
748
+ credentialId: string;
749
+ /**
750
+ * 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`.
751
+ *
752
+ * `azureServicePrincipal` optional configuration block to use service principal as credential details for Azure. Only applicable when purpose is `STORAGE` (Legacy):
753
+ */
754
+ managedIdentityId?: string;
755
+ }
756
+ export interface CredentialAzureServicePrincipal {
757
+ /**
758
+ * The application ID of the application registration within the referenced AAD tenant
759
+ */
760
+ applicationId: string;
761
+ /**
762
+ * The client secret generated for the above app ID in AAD. **This field is redacted on output**
763
+ *
764
+ * `databricksGcpServiceAccount` optional configuration block for creating a Databricks-managed GCP Service Account. Only applicable when purpose is `STORAGE`:
765
+ */
766
+ clientSecret: string;
767
+ /**
768
+ * The directory ID corresponding to the Azure Active Directory (AAD) tenant of the application
769
+ */
770
+ directoryId: string;
771
+ }
772
+ export interface CredentialDatabricksGcpServiceAccount {
773
+ /**
774
+ * Unique ID of the credential.
775
+ */
776
+ credentialId: string;
777
+ /**
778
+ * The email of the GCP service account created, to be granted access to relevant buckets.
779
+ */
780
+ email: string;
781
+ privateKeyId: string;
782
+ }
574
783
  export interface CustomAppIntegrationTokenAccessPolicy {
575
784
  /**
576
785
  * access token time to live (TTL) in minutes.
@@ -597,6 +806,428 @@ export interface ExternalLocationEncryptionDetailsSseEncryptionDetails {
597
806
  algorithm?: string;
598
807
  awsKmsKeyArn?: string;
599
808
  }
809
+ export interface GetAppApp {
810
+ activeDeployment: outputs.GetAppAppActiveDeployment;
811
+ /**
812
+ * attribute
813
+ */
814
+ appStatus: outputs.GetAppAppAppStatus;
815
+ /**
816
+ * attribute
817
+ */
818
+ computeStatus: outputs.GetAppAppComputeStatus;
819
+ /**
820
+ * The creation time of the app.
821
+ */
822
+ createTime: string;
823
+ /**
824
+ * The email of the user that created the app.
825
+ */
826
+ creator: string;
827
+ /**
828
+ * The default workspace file system path of the source code from which app deployment are created. This field tracks the workspace source code path of the last active deployment.
829
+ */
830
+ defaultSourceCodePath: string;
831
+ /**
832
+ * The description of the resource.
833
+ */
834
+ description?: string;
835
+ /**
836
+ * The name of the app.
837
+ */
838
+ name: string;
839
+ pendingDeployment: outputs.GetAppAppPendingDeployment;
840
+ /**
841
+ * A list of resources that the app have access to.
842
+ */
843
+ resources?: outputs.GetAppAppResource[];
844
+ servicePrincipalClientId: string;
845
+ /**
846
+ * id of the app service principal
847
+ */
848
+ servicePrincipalId: number;
849
+ /**
850
+ * name of the app service principal
851
+ */
852
+ servicePrincipalName: string;
853
+ /**
854
+ * The update time of the app.
855
+ */
856
+ updateTime: string;
857
+ /**
858
+ * The email of the user that last updated the app.
859
+ */
860
+ updater: string;
861
+ /**
862
+ * The URL of the app once it is deployed.
863
+ */
864
+ url: string;
865
+ }
866
+ export interface GetAppAppActiveDeployment {
867
+ /**
868
+ * The creation time of the app.
869
+ */
870
+ createTime: string;
871
+ /**
872
+ * The email of the user that created the app.
873
+ */
874
+ creator: string;
875
+ deploymentArtifacts: outputs.GetAppAppActiveDeploymentDeploymentArtifacts;
876
+ deploymentId?: string;
877
+ mode?: string;
878
+ sourceCodePath?: string;
879
+ status: outputs.GetAppAppActiveDeploymentStatus;
880
+ /**
881
+ * The update time of the app.
882
+ */
883
+ updateTime: string;
884
+ }
885
+ export interface GetAppAppActiveDeploymentDeploymentArtifacts {
886
+ sourceCodePath?: string;
887
+ }
888
+ export interface GetAppAppActiveDeploymentStatus {
889
+ /**
890
+ * Application status message
891
+ */
892
+ message: string;
893
+ /**
894
+ * State of the application.
895
+ */
896
+ state: string;
897
+ }
898
+ export interface GetAppAppAppStatus {
899
+ /**
900
+ * Application status message
901
+ */
902
+ message: string;
903
+ /**
904
+ * State of the application.
905
+ */
906
+ state: string;
907
+ }
908
+ export interface GetAppAppComputeStatus {
909
+ /**
910
+ * Application status message
911
+ */
912
+ message: string;
913
+ /**
914
+ * State of the application.
915
+ */
916
+ state: string;
917
+ }
918
+ export interface GetAppAppPendingDeployment {
919
+ /**
920
+ * The creation time of the app.
921
+ */
922
+ createTime: string;
923
+ /**
924
+ * The email of the user that created the app.
925
+ */
926
+ creator: string;
927
+ deploymentArtifacts: outputs.GetAppAppPendingDeploymentDeploymentArtifacts;
928
+ deploymentId?: string;
929
+ mode?: string;
930
+ sourceCodePath?: string;
931
+ status: outputs.GetAppAppPendingDeploymentStatus;
932
+ /**
933
+ * The update time of the app.
934
+ */
935
+ updateTime: string;
936
+ }
937
+ export interface GetAppAppPendingDeploymentDeploymentArtifacts {
938
+ sourceCodePath?: string;
939
+ }
940
+ export interface GetAppAppPendingDeploymentStatus {
941
+ /**
942
+ * Application status message
943
+ */
944
+ message: string;
945
+ /**
946
+ * State of the application.
947
+ */
948
+ state: string;
949
+ }
950
+ export interface GetAppAppResource {
951
+ /**
952
+ * The description of the resource.
953
+ */
954
+ description?: string;
955
+ /**
956
+ * attribute
957
+ */
958
+ job?: outputs.GetAppAppResourceJob;
959
+ /**
960
+ * The name of the app.
961
+ */
962
+ name: string;
963
+ /**
964
+ * attribute
965
+ */
966
+ secret?: outputs.GetAppAppResourceSecret;
967
+ /**
968
+ * attribute
969
+ */
970
+ servingEndpoint?: outputs.GetAppAppResourceServingEndpoint;
971
+ /**
972
+ * attribute
973
+ */
974
+ sqlWarehouse?: outputs.GetAppAppResourceSqlWarehouse;
975
+ }
976
+ export interface GetAppAppResourceJob {
977
+ /**
978
+ * Id of the job to grant permission on.
979
+ */
980
+ id: string;
981
+ /**
982
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
983
+ */
984
+ permission: string;
985
+ }
986
+ export interface GetAppAppResourceSecret {
987
+ /**
988
+ * Key of the secret to grant permission on.
989
+ */
990
+ key: string;
991
+ /**
992
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
993
+ */
994
+ permission: string;
995
+ /**
996
+ * Scope of the secret to grant permission on.
997
+ */
998
+ scope: string;
999
+ }
1000
+ export interface GetAppAppResourceServingEndpoint {
1001
+ /**
1002
+ * The name of the app.
1003
+ */
1004
+ name: string;
1005
+ /**
1006
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1007
+ */
1008
+ permission: string;
1009
+ }
1010
+ export interface GetAppAppResourceSqlWarehouse {
1011
+ /**
1012
+ * Id of the job to grant permission on.
1013
+ */
1014
+ id: string;
1015
+ /**
1016
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1017
+ */
1018
+ permission: string;
1019
+ }
1020
+ export interface GetAppsApp {
1021
+ activeDeployment: outputs.GetAppsAppActiveDeployment;
1022
+ /**
1023
+ * attribute
1024
+ */
1025
+ appStatus: outputs.GetAppsAppAppStatus;
1026
+ /**
1027
+ * attribute
1028
+ */
1029
+ computeStatus: outputs.GetAppsAppComputeStatus;
1030
+ /**
1031
+ * The creation time of the app.
1032
+ */
1033
+ createTime: string;
1034
+ /**
1035
+ * The email of the user that created the app.
1036
+ */
1037
+ creator: string;
1038
+ /**
1039
+ * The default workspace file system path of the source code from which app deployment are created. This field tracks the workspace source code path of the last active deployment.
1040
+ */
1041
+ defaultSourceCodePath: string;
1042
+ /**
1043
+ * The description of the resource.
1044
+ */
1045
+ description?: string;
1046
+ /**
1047
+ * Name of the serving endpoint to grant permission on.
1048
+ */
1049
+ name: string;
1050
+ pendingDeployment: outputs.GetAppsAppPendingDeployment;
1051
+ /**
1052
+ * A list of resources that the app have access to.
1053
+ */
1054
+ resources?: outputs.GetAppsAppResource[];
1055
+ servicePrincipalClientId: string;
1056
+ /**
1057
+ * id of the app service principal
1058
+ */
1059
+ servicePrincipalId: number;
1060
+ /**
1061
+ * name of the app service principal
1062
+ */
1063
+ servicePrincipalName: string;
1064
+ /**
1065
+ * The update time of the app.
1066
+ */
1067
+ updateTime: string;
1068
+ /**
1069
+ * The email of the user that last updated the app.
1070
+ */
1071
+ updater: string;
1072
+ /**
1073
+ * The URL of the app once it is deployed.
1074
+ */
1075
+ url: string;
1076
+ }
1077
+ export interface GetAppsAppActiveDeployment {
1078
+ /**
1079
+ * The creation time of the app.
1080
+ */
1081
+ createTime: string;
1082
+ /**
1083
+ * The email of the user that created the app.
1084
+ */
1085
+ creator: string;
1086
+ deploymentArtifacts: outputs.GetAppsAppActiveDeploymentDeploymentArtifacts;
1087
+ deploymentId?: string;
1088
+ mode?: string;
1089
+ sourceCodePath?: string;
1090
+ status: outputs.GetAppsAppActiveDeploymentStatus;
1091
+ /**
1092
+ * The update time of the app.
1093
+ */
1094
+ updateTime: string;
1095
+ }
1096
+ export interface GetAppsAppActiveDeploymentDeploymentArtifacts {
1097
+ sourceCodePath?: string;
1098
+ }
1099
+ export interface GetAppsAppActiveDeploymentStatus {
1100
+ /**
1101
+ * Application status message
1102
+ */
1103
+ message: string;
1104
+ /**
1105
+ * State of the application.
1106
+ */
1107
+ state: string;
1108
+ }
1109
+ export interface GetAppsAppAppStatus {
1110
+ /**
1111
+ * Application status message
1112
+ */
1113
+ message: string;
1114
+ /**
1115
+ * State of the application.
1116
+ */
1117
+ state: string;
1118
+ }
1119
+ export interface GetAppsAppComputeStatus {
1120
+ /**
1121
+ * Application status message
1122
+ */
1123
+ message: string;
1124
+ /**
1125
+ * State of the application.
1126
+ */
1127
+ state: string;
1128
+ }
1129
+ export interface GetAppsAppPendingDeployment {
1130
+ /**
1131
+ * The creation time of the app.
1132
+ */
1133
+ createTime: string;
1134
+ /**
1135
+ * The email of the user that created the app.
1136
+ */
1137
+ creator: string;
1138
+ deploymentArtifacts: outputs.GetAppsAppPendingDeploymentDeploymentArtifacts;
1139
+ deploymentId?: string;
1140
+ mode?: string;
1141
+ sourceCodePath?: string;
1142
+ status: outputs.GetAppsAppPendingDeploymentStatus;
1143
+ /**
1144
+ * The update time of the app.
1145
+ */
1146
+ updateTime: string;
1147
+ }
1148
+ export interface GetAppsAppPendingDeploymentDeploymentArtifacts {
1149
+ sourceCodePath?: string;
1150
+ }
1151
+ export interface GetAppsAppPendingDeploymentStatus {
1152
+ /**
1153
+ * Application status message
1154
+ */
1155
+ message: string;
1156
+ /**
1157
+ * State of the application.
1158
+ */
1159
+ state: string;
1160
+ }
1161
+ export interface GetAppsAppResource {
1162
+ /**
1163
+ * The description of the resource.
1164
+ */
1165
+ description?: string;
1166
+ /**
1167
+ * attribute
1168
+ */
1169
+ job?: outputs.GetAppsAppResourceJob;
1170
+ /**
1171
+ * Name of the serving endpoint to grant permission on.
1172
+ */
1173
+ name: string;
1174
+ /**
1175
+ * attribute
1176
+ */
1177
+ secret?: outputs.GetAppsAppResourceSecret;
1178
+ /**
1179
+ * attribute
1180
+ */
1181
+ servingEndpoint?: outputs.GetAppsAppResourceServingEndpoint;
1182
+ /**
1183
+ * attribute
1184
+ */
1185
+ sqlWarehouse?: outputs.GetAppsAppResourceSqlWarehouse;
1186
+ }
1187
+ export interface GetAppsAppResourceJob {
1188
+ /**
1189
+ * Id of the job to grant permission on.
1190
+ */
1191
+ id: string;
1192
+ /**
1193
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1194
+ */
1195
+ permission: string;
1196
+ }
1197
+ export interface GetAppsAppResourceSecret {
1198
+ /**
1199
+ * Key of the secret to grant permission on.
1200
+ */
1201
+ key: string;
1202
+ /**
1203
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1204
+ */
1205
+ permission: string;
1206
+ /**
1207
+ * Scope of the secret to grant permission on.
1208
+ */
1209
+ scope: string;
1210
+ }
1211
+ export interface GetAppsAppResourceServingEndpoint {
1212
+ /**
1213
+ * Name of the serving endpoint to grant permission on.
1214
+ */
1215
+ name: string;
1216
+ /**
1217
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1218
+ */
1219
+ permission: string;
1220
+ }
1221
+ export interface GetAppsAppResourceSqlWarehouse {
1222
+ /**
1223
+ * Id of the job to grant permission on.
1224
+ */
1225
+ id: string;
1226
+ /**
1227
+ * Permissions to grant on the Job. Supported permissions are: `CAN_MANAGE`, `IS_OWNER`, `CAN_MANAGE_RUN`, `CAN_VIEW`.
1228
+ */
1229
+ permission: string;
1230
+ }
600
1231
  export interface GetCatalogCatalogInfo {
601
1232
  browseOnly?: boolean;
602
1233
  /**
@@ -761,7 +1392,9 @@ export interface GetClusterClusterInfo {
761
1392
  * The pool of idle instances the cluster is attached to.
762
1393
  */
763
1394
  instancePoolId?: string;
1395
+ isSingleNode?: boolean;
764
1396
  jdbcPort?: number;
1397
+ kind?: string;
765
1398
  lastRestartedTime?: number;
766
1399
  lastStateLossTime?: number;
767
1400
  /**
@@ -808,6 +1441,7 @@ export interface GetClusterClusterInfo {
808
1441
  stateMessage?: string;
809
1442
  terminatedTime?: number;
810
1443
  terminationReason?: outputs.GetClusterClusterInfoTerminationReason;
1444
+ useMlRuntime?: boolean;
811
1445
  workloadType?: outputs.GetClusterClusterInfoWorkloadType;
812
1446
  }
813
1447
  export interface GetClusterClusterInfoAutoscale {
@@ -984,6 +1618,8 @@ export interface GetClusterClusterInfoSpec {
984
1618
  * The pool of idle instances the cluster is attached to.
985
1619
  */
986
1620
  instancePoolId?: string;
1621
+ isSingleNode?: boolean;
1622
+ kind?: string;
987
1623
  libraries?: outputs.GetClusterClusterInfoSpecLibrary[];
988
1624
  /**
989
1625
  * Any supported databricks.getNodeType id.
@@ -1022,6 +1658,7 @@ export interface GetClusterClusterInfoSpec {
1022
1658
  * SSH public key contents that will be added to each Spark node in this cluster.
1023
1659
  */
1024
1660
  sshPublicKeys?: string[];
1661
+ useMlRuntime?: boolean;
1025
1662
  workloadType?: outputs.GetClusterClusterInfoSpecWorkloadType;
1026
1663
  }
1027
1664
  export interface GetClusterClusterInfoSpecAutoscale {
@@ -1386,7 +2023,7 @@ export interface GetFunctionsFunction {
1386
2023
  /**
1387
2024
  * object describing input parameters. Consists of the single attribute:
1388
2025
  */
1389
- inputParams?: outputs.GetFunctionsFunctionInputParams;
2026
+ inputParams?: outputs.GetFunctionsFunctionInputParam[];
1390
2027
  /**
1391
2028
  * Boolean flag specifying whether the function is deterministic.
1392
2029
  */
@@ -1418,7 +2055,7 @@ export interface GetFunctionsFunction {
1418
2055
  /**
1419
2056
  * Table function return parameters. See `inputParams` for description.
1420
2057
  */
1421
- returnParams?: outputs.GetFunctionsFunctionReturnParams;
2058
+ returnParams?: outputs.GetFunctionsFunctionReturnParam[];
1422
2059
  /**
1423
2060
  * 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`.
1424
2061
  */
@@ -1430,7 +2067,7 @@ export interface GetFunctionsFunction {
1430
2067
  /**
1431
2068
  * Function dependencies.
1432
2069
  */
1433
- routineDependencies?: outputs.GetFunctionsFunctionRoutineDependencies;
2070
+ routineDependencies?: outputs.GetFunctionsFunctionRoutineDependency[];
1434
2071
  /**
1435
2072
  * Name of databricks_schema.
1436
2073
  */
@@ -1460,13 +2097,13 @@ export interface GetFunctionsFunction {
1460
2097
  */
1461
2098
  updatedBy?: string;
1462
2099
  }
1463
- export interface GetFunctionsFunctionInputParams {
2100
+ export interface GetFunctionsFunctionInputParam {
1464
2101
  /**
1465
2102
  * The array of definitions of the function's parameters:
1466
2103
  */
1467
- parameters?: outputs.GetFunctionsFunctionInputParamsParameter[];
2104
+ parameters?: outputs.GetFunctionsFunctionInputParamParameter[];
1468
2105
  }
1469
- export interface GetFunctionsFunctionInputParamsParameter {
2106
+ export interface GetFunctionsFunctionInputParamParameter {
1470
2107
  /**
1471
2108
  * User-provided free-form text description.
1472
2109
  */
@@ -1516,13 +2153,13 @@ export interface GetFunctionsFunctionInputParamsParameter {
1516
2153
  */
1517
2154
  typeText: string;
1518
2155
  }
1519
- export interface GetFunctionsFunctionReturnParams {
2156
+ export interface GetFunctionsFunctionReturnParam {
1520
2157
  /**
1521
2158
  * The array of definitions of the function's parameters:
1522
2159
  */
1523
- parameters?: outputs.GetFunctionsFunctionReturnParamsParameter[];
2160
+ parameters?: outputs.GetFunctionsFunctionReturnParamParameter[];
1524
2161
  }
1525
- export interface GetFunctionsFunctionReturnParamsParameter {
2162
+ export interface GetFunctionsFunctionReturnParamParameter {
1526
2163
  /**
1527
2164
  * User-provided free-form text description.
1528
2165
  */
@@ -1572,17 +2209,17 @@ export interface GetFunctionsFunctionReturnParamsParameter {
1572
2209
  */
1573
2210
  typeText: string;
1574
2211
  }
1575
- export interface GetFunctionsFunctionRoutineDependencies {
1576
- dependencies?: outputs.GetFunctionsFunctionRoutineDependenciesDependency[];
2212
+ export interface GetFunctionsFunctionRoutineDependency {
2213
+ dependencies?: outputs.GetFunctionsFunctionRoutineDependencyDependency[];
1577
2214
  }
1578
- export interface GetFunctionsFunctionRoutineDependenciesDependency {
1579
- function?: outputs.GetFunctionsFunctionRoutineDependenciesDependencyFunction;
1580
- table?: outputs.GetFunctionsFunctionRoutineDependenciesDependencyTable;
2215
+ export interface GetFunctionsFunctionRoutineDependencyDependency {
2216
+ functions?: outputs.GetFunctionsFunctionRoutineDependencyDependencyFunction[];
2217
+ tables?: outputs.GetFunctionsFunctionRoutineDependencyDependencyTable[];
1581
2218
  }
1582
- export interface GetFunctionsFunctionRoutineDependenciesDependencyFunction {
2219
+ export interface GetFunctionsFunctionRoutineDependencyDependencyFunction {
1583
2220
  functionFullName: string;
1584
2221
  }
1585
- export interface GetFunctionsFunctionRoutineDependenciesDependencyTable {
2222
+ export interface GetFunctionsFunctionRoutineDependencyDependencyTable {
1586
2223
  tableFullName: string;
1587
2224
  }
1588
2225
  export interface GetInstancePoolPoolInfo {
@@ -2926,67 +3563,155 @@ export interface GetMetastoreMetastoreInfo {
2926
3563
  /**
2927
3564
  * ID of the metastore
2928
3565
  */
2929
- metastoreId?: string;
3566
+ metastoreId?: string;
3567
+ /**
3568
+ * Name of the metastore
3569
+ */
3570
+ name?: string;
3571
+ /**
3572
+ * Username/groupname/sp applicationId of the metastore owner.
3573
+ */
3574
+ owner?: string;
3575
+ privilegeModelVersion?: string;
3576
+ /**
3577
+ * Region of the metastore
3578
+ */
3579
+ region?: string;
3580
+ /**
3581
+ * Path on cloud storage account, where managed `databricks.Table` are stored.
3582
+ */
3583
+ storageRoot?: string;
3584
+ storageRootCredentialId?: string;
3585
+ storageRootCredentialName?: string;
3586
+ updatedAt?: number;
3587
+ updatedBy?: string;
3588
+ }
3589
+ export interface GetMlflowExperimentTag {
3590
+ key?: string;
3591
+ value?: string;
3592
+ }
3593
+ export interface GetMlflowModelLatestVersion {
3594
+ creationTimestamp?: number;
3595
+ currentStage?: string;
3596
+ /**
3597
+ * User-specified description for the object.
3598
+ */
3599
+ description?: string;
3600
+ lastUpdatedTimestamp?: number;
3601
+ /**
3602
+ * Name of the registered model.
3603
+ */
3604
+ name?: string;
3605
+ runId?: string;
3606
+ runLink?: string;
3607
+ source?: string;
3608
+ status?: string;
3609
+ statusMessage?: string;
3610
+ /**
3611
+ * Array of tags associated with the model.
3612
+ */
3613
+ tags?: outputs.GetMlflowModelLatestVersionTag[];
3614
+ /**
3615
+ * The username of the user that created the object.
3616
+ */
3617
+ userId?: string;
3618
+ version?: string;
3619
+ }
3620
+ export interface GetMlflowModelLatestVersionTag {
3621
+ key?: string;
3622
+ value?: string;
3623
+ }
3624
+ export interface GetMlflowModelTag {
3625
+ key?: string;
3626
+ value?: string;
3627
+ }
3628
+ export interface GetMwsNetworkConnectivityConfigEgressConfig {
3629
+ /**
3630
+ * Array of default rules.
3631
+ */
3632
+ defaultRules?: outputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRules;
3633
+ /**
3634
+ * Array of target rules.
3635
+ */
3636
+ targetRules?: outputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRules;
3637
+ }
3638
+ export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRules {
3639
+ /**
3640
+ * The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
3641
+ */
3642
+ awsStableIpRule?: outputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule;
3643
+ /**
3644
+ * Array of Azure service endpoint rules.
3645
+ */
3646
+ azureServiceEndpointRule?: outputs.GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule;
3647
+ }
3648
+ export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule {
3649
+ /**
3650
+ * The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
3651
+ */
3652
+ cidrBlocks?: string[];
3653
+ }
3654
+ export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule {
3655
+ /**
3656
+ * Array of strings representing the subnet IDs.
3657
+ */
3658
+ subnets?: string[];
3659
+ /**
3660
+ * The target region for the service endpoint.
3661
+ */
3662
+ targetRegion?: string;
3663
+ /**
3664
+ * Array of target services.
3665
+ */
3666
+ targetServices?: string[];
3667
+ }
3668
+ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRules {
3669
+ /**
3670
+ * Array of private endpoint rule objects.
3671
+ */
3672
+ azurePrivateEndpointRules?: outputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule[];
3673
+ }
3674
+ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
3675
+ /**
3676
+ * The current status of this private endpoint.
3677
+ */
3678
+ connectionState?: string;
3679
+ /**
3680
+ * Time in epoch milliseconds when this object was created.
3681
+ */
3682
+ creationTime?: number;
2930
3683
  /**
2931
- * Name of the metastore
3684
+ * Whether this private endpoint is deactivated.
2932
3685
  */
2933
- name?: string;
3686
+ deactivated?: boolean;
2934
3687
  /**
2935
- * Username/groupname/sp applicationId of the metastore owner.
3688
+ * Time in epoch milliseconds when this object was deactivated.
2936
3689
  */
2937
- owner?: string;
2938
- privilegeModelVersion?: string;
3690
+ deactivatedAt?: number;
2939
3691
  /**
2940
- * Region of the metastore
3692
+ * The name of the Azure private endpoint resource.
2941
3693
  */
2942
- region?: string;
3694
+ endpointName?: string;
2943
3695
  /**
2944
- * Path on cloud storage account, where managed `databricks.Table` are stored.
3696
+ * The sub-resource type (group ID) of the target resource.
2945
3697
  */
2946
- storageRoot?: string;
2947
- storageRootCredentialId?: string;
2948
- storageRootCredentialName?: string;
2949
- updatedAt?: number;
2950
- updatedBy?: string;
2951
- }
2952
- export interface GetMlflowExperimentTag {
2953
- key?: string;
2954
- value?: string;
2955
- }
2956
- export interface GetMlflowModelLatestVersion {
2957
- creationTimestamp?: number;
2958
- currentStage?: string;
3698
+ groupId?: string;
2959
3699
  /**
2960
- * User-specified description for the object.
3700
+ * The Databricks network connectivity configuration ID.
2961
3701
  */
2962
- description?: string;
2963
- lastUpdatedTimestamp?: number;
3702
+ networkConnectivityConfigId?: string;
2964
3703
  /**
2965
- * Name of the registered model.
3704
+ * The Azure resource ID of the target resource.
2966
3705
  */
2967
- name?: string;
2968
- runId?: string;
2969
- runLink?: string;
2970
- source?: string;
2971
- status?: string;
2972
- statusMessage?: string;
3706
+ resourceId?: string;
2973
3707
  /**
2974
- * Array of tags associated with the model.
3708
+ * The ID of a private endpoint rule.
2975
3709
  */
2976
- tags?: outputs.GetMlflowModelLatestVersionTag[];
3710
+ ruleId?: string;
2977
3711
  /**
2978
- * The username of the user that created the object.
3712
+ * Time in epoch milliseconds when the network was updated.
2979
3713
  */
2980
- userId?: string;
2981
- version?: string;
2982
- }
2983
- export interface GetMlflowModelLatestVersionTag {
2984
- key?: string;
2985
- value?: string;
2986
- }
2987
- export interface GetMlflowModelTag {
2988
- key?: string;
2989
- value?: string;
3714
+ updatedTime?: number;
2990
3715
  }
2991
3716
  export interface GetNotebookPathsNotebookPathList {
2992
3717
  language?: string;
@@ -3074,6 +3799,116 @@ export interface GetRegisteredModelModelInfoAlias {
3074
3799
  */
3075
3800
  versionNum?: number;
3076
3801
  }
3802
+ export interface GetRegisteredModelVersionsModelVersion {
3803
+ /**
3804
+ * the list of aliases associated with this model. Each item is object consisting of following attributes:
3805
+ */
3806
+ aliases?: outputs.GetRegisteredModelVersionsModelVersionAlias[];
3807
+ browseOnly?: boolean;
3808
+ /**
3809
+ * The name of the catalog where the schema and the registered model reside.
3810
+ */
3811
+ catalogName?: string;
3812
+ /**
3813
+ * The comment attached to the registered model.
3814
+ */
3815
+ comment?: string;
3816
+ /**
3817
+ * the Unix timestamp at the model's creation
3818
+ */
3819
+ createdAt?: number;
3820
+ /**
3821
+ * the identifier of the user who created the model
3822
+ */
3823
+ createdBy?: string;
3824
+ /**
3825
+ * The unique identifier of the model version
3826
+ */
3827
+ id?: string;
3828
+ /**
3829
+ * the unique identifier of the metastore
3830
+ */
3831
+ metastoreId?: string;
3832
+ modelName?: string;
3833
+ /**
3834
+ * block describing model version dependencies, for feature-store packaged models. Consists of following attributes:
3835
+ */
3836
+ modelVersionDependencies?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependency[];
3837
+ /**
3838
+ * MLflow run ID used when creating the model version, if `source` was generated by an experiment run stored in an MLflow tracking server
3839
+ */
3840
+ runId?: string;
3841
+ /**
3842
+ * ID of the Databricks workspace containing the MLflow run that generated this model version, if applicable
3843
+ */
3844
+ runWorkspaceId?: number;
3845
+ /**
3846
+ * The name of the schema where the registered model resides.
3847
+ */
3848
+ schemaName?: string;
3849
+ /**
3850
+ * URI indicating the location of the source artifacts (files) for the model version.
3851
+ */
3852
+ source?: string;
3853
+ /**
3854
+ * Current status of the model version.
3855
+ */
3856
+ status?: string;
3857
+ /**
3858
+ * The storage location under which model version data files are stored.
3859
+ */
3860
+ storageLocation?: string;
3861
+ /**
3862
+ * the timestamp of the last time changes were made to the model
3863
+ */
3864
+ updatedAt?: number;
3865
+ /**
3866
+ * the identifier of the user who updated the model last time
3867
+ */
3868
+ updatedBy?: string;
3869
+ /**
3870
+ * Integer model version number, used to reference the model version in API requests.
3871
+ */
3872
+ version?: number;
3873
+ }
3874
+ export interface GetRegisteredModelVersionsModelVersionAlias {
3875
+ /**
3876
+ * string with the name of alias
3877
+ */
3878
+ aliasName?: string;
3879
+ /**
3880
+ * associated model version
3881
+ */
3882
+ versionNum?: number;
3883
+ }
3884
+ export interface GetRegisteredModelVersionsModelVersionModelVersionDependency {
3885
+ /**
3886
+ * list of dependencies consisting of following attributes:
3887
+ */
3888
+ dependencies?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependency[];
3889
+ }
3890
+ export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependency {
3891
+ /**
3892
+ * A function that is dependent on a SQL object:
3893
+ */
3894
+ functions?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunction[];
3895
+ /**
3896
+ * A table that is dependent on a SQL object
3897
+ */
3898
+ tables?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTable[];
3899
+ }
3900
+ export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyFunction {
3901
+ /**
3902
+ * Full name of the dependent function
3903
+ */
3904
+ functionFullName: string;
3905
+ }
3906
+ export interface GetRegisteredModelVersionsModelVersionModelVersionDependencyDependencyTable {
3907
+ /**
3908
+ * Full name of the dependent table
3909
+ */
3910
+ tableFullName: string;
3911
+ }
3077
3912
  export interface GetSchemaSchemaInfo {
3078
3913
  /**
3079
3914
  * indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
@@ -3155,6 +3990,179 @@ export interface GetSchemaSchemaInfoEffectivePredictiveOptimizationFlag {
3155
3990
  inheritedFromType?: string;
3156
3991
  value: string;
3157
3992
  }
3993
+ export interface GetServingEndpointsEndpoint {
3994
+ /**
3995
+ * A block with AI Gateway configuration for the serving endpoint.
3996
+ */
3997
+ aiGateways?: outputs.GetServingEndpointsEndpointAiGateway[];
3998
+ /**
3999
+ * The model serving endpoint configuration.
4000
+ */
4001
+ configs?: outputs.GetServingEndpointsEndpointConfig[];
4002
+ creationTimestamp?: number;
4003
+ creator?: string;
4004
+ id?: string;
4005
+ lastUpdatedTimestamp?: number;
4006
+ /**
4007
+ * The name of the model serving endpoint.
4008
+ */
4009
+ name?: string;
4010
+ states?: outputs.GetServingEndpointsEndpointState[];
4011
+ /**
4012
+ * Tags to be attached to the serving endpoint and automatically propagated to billing logs.
4013
+ */
4014
+ tags?: outputs.GetServingEndpointsEndpointTag[];
4015
+ task?: string;
4016
+ }
4017
+ export interface GetServingEndpointsEndpointAiGateway {
4018
+ guardrails?: outputs.GetServingEndpointsEndpointAiGatewayGuardrail[];
4019
+ inferenceTableConfigs?: outputs.GetServingEndpointsEndpointAiGatewayInferenceTableConfig[];
4020
+ /**
4021
+ * A list of rate limit blocks to be applied to the serving endpoint.
4022
+ */
4023
+ rateLimits?: outputs.GetServingEndpointsEndpointAiGatewayRateLimit[];
4024
+ usageTrackingConfigs?: outputs.GetServingEndpointsEndpointAiGatewayUsageTrackingConfig[];
4025
+ }
4026
+ export interface GetServingEndpointsEndpointAiGatewayGuardrail {
4027
+ inputProperties?: outputs.GetServingEndpointsEndpointAiGatewayGuardrailInputProperty[];
4028
+ outputs?: outputs.GetServingEndpointsEndpointAiGatewayGuardrailOutput[];
4029
+ }
4030
+ export interface GetServingEndpointsEndpointAiGatewayGuardrailInputProperty {
4031
+ invalidKeywords?: string[];
4032
+ piis?: outputs.GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPii[];
4033
+ safety?: boolean;
4034
+ validTopics?: string[];
4035
+ }
4036
+ export interface GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPii {
4037
+ behavior: string;
4038
+ }
4039
+ export interface GetServingEndpointsEndpointAiGatewayGuardrailOutput {
4040
+ invalidKeywords?: string[];
4041
+ piis?: outputs.GetServingEndpointsEndpointAiGatewayGuardrailOutputPii[];
4042
+ safety?: boolean;
4043
+ validTopics?: string[];
4044
+ }
4045
+ export interface GetServingEndpointsEndpointAiGatewayGuardrailOutputPii {
4046
+ behavior: string;
4047
+ }
4048
+ export interface GetServingEndpointsEndpointAiGatewayInferenceTableConfig {
4049
+ catalogName?: string;
4050
+ enabled?: boolean;
4051
+ schemaName?: string;
4052
+ tableNamePrefix?: string;
4053
+ }
4054
+ export interface GetServingEndpointsEndpointAiGatewayRateLimit {
4055
+ calls: number;
4056
+ key?: string;
4057
+ renewalPeriod: string;
4058
+ }
4059
+ export interface GetServingEndpointsEndpointAiGatewayUsageTrackingConfig {
4060
+ enabled?: boolean;
4061
+ }
4062
+ export interface GetServingEndpointsEndpointConfig {
4063
+ servedEntities?: outputs.GetServingEndpointsEndpointConfigServedEntity[];
4064
+ servedModels?: outputs.GetServingEndpointsEndpointConfigServedModel[];
4065
+ }
4066
+ export interface GetServingEndpointsEndpointConfigServedEntity {
4067
+ entityName?: string;
4068
+ entityVersion?: string;
4069
+ externalModels?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModel[];
4070
+ foundationModels?: outputs.GetServingEndpointsEndpointConfigServedEntityFoundationModel[];
4071
+ /**
4072
+ * The name of the model serving endpoint.
4073
+ */
4074
+ name?: string;
4075
+ }
4076
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModel {
4077
+ ai21labsConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig[];
4078
+ amazonBedrockConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig[];
4079
+ anthropicConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig[];
4080
+ cohereConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig[];
4081
+ databricksModelServingConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig[];
4082
+ googleCloudVertexAiConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig[];
4083
+ /**
4084
+ * The name of the model serving endpoint.
4085
+ */
4086
+ name: string;
4087
+ openaiConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig[];
4088
+ palmConfigs?: outputs.GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig[];
4089
+ provider: string;
4090
+ task: string;
4091
+ }
4092
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig {
4093
+ ai21labsApiKey?: string;
4094
+ ai21labsApiKeyPlaintext?: string;
4095
+ }
4096
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig {
4097
+ awsAccessKeyId?: string;
4098
+ awsAccessKeyIdPlaintext?: string;
4099
+ awsRegion: string;
4100
+ awsSecretAccessKey?: string;
4101
+ awsSecretAccessKeyPlaintext?: string;
4102
+ bedrockProvider: string;
4103
+ }
4104
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig {
4105
+ anthropicApiKey?: string;
4106
+ anthropicApiKeyPlaintext?: string;
4107
+ }
4108
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig {
4109
+ cohereApiBase?: string;
4110
+ cohereApiKey?: string;
4111
+ cohereApiKeyPlaintext?: string;
4112
+ }
4113
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig {
4114
+ databricksApiToken?: string;
4115
+ databricksApiTokenPlaintext?: string;
4116
+ databricksWorkspaceUrl: string;
4117
+ }
4118
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig {
4119
+ privateKey?: string;
4120
+ privateKeyPlaintext?: string;
4121
+ projectId?: string;
4122
+ region?: string;
4123
+ }
4124
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig {
4125
+ microsoftEntraClientId?: string;
4126
+ microsoftEntraClientSecret?: string;
4127
+ microsoftEntraClientSecretPlaintext?: string;
4128
+ microsoftEntraTenantId?: string;
4129
+ openaiApiBase?: string;
4130
+ openaiApiKey?: string;
4131
+ openaiApiKeyPlaintext?: string;
4132
+ openaiApiType?: string;
4133
+ openaiApiVersion?: string;
4134
+ openaiDeploymentName?: string;
4135
+ openaiOrganization?: string;
4136
+ }
4137
+ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig {
4138
+ palmApiKey?: string;
4139
+ palmApiKeyPlaintext?: string;
4140
+ }
4141
+ export interface GetServingEndpointsEndpointConfigServedEntityFoundationModel {
4142
+ description?: string;
4143
+ displayName?: string;
4144
+ docs?: string;
4145
+ /**
4146
+ * The name of the model serving endpoint.
4147
+ */
4148
+ name?: string;
4149
+ }
4150
+ export interface GetServingEndpointsEndpointConfigServedModel {
4151
+ modelName?: string;
4152
+ modelVersion?: string;
4153
+ /**
4154
+ * The name of the model serving endpoint.
4155
+ */
4156
+ name?: string;
4157
+ }
4158
+ export interface GetServingEndpointsEndpointState {
4159
+ configUpdate?: string;
4160
+ ready?: string;
4161
+ }
4162
+ export interface GetServingEndpointsEndpointTag {
4163
+ key: string;
4164
+ value?: string;
4165
+ }
3158
4166
  export interface GetShareObject {
3159
4167
  addedAt: number;
3160
4168
  addedBy: string;
@@ -3841,6 +4849,8 @@ export interface JobJobClusterNewCluster {
3841
4849
  idempotencyToken?: string;
3842
4850
  initScripts?: outputs.JobJobClusterNewClusterInitScript[];
3843
4851
  instancePoolId?: string;
4852
+ isSingleNode?: boolean;
4853
+ kind?: string;
3844
4854
  /**
3845
4855
  * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
3846
4856
  */
@@ -3858,6 +4868,7 @@ export interface JobJobClusterNewCluster {
3858
4868
  };
3859
4869
  sparkVersion: string;
3860
4870
  sshPublicKeys?: string[];
4871
+ useMlRuntime?: boolean;
3861
4872
  /**
3862
4873
  * isn't supported
3863
4874
  */
@@ -4048,6 +5059,8 @@ export interface JobNewCluster {
4048
5059
  idempotencyToken?: string;
4049
5060
  initScripts?: outputs.JobNewClusterInitScript[];
4050
5061
  instancePoolId?: string;
5062
+ isSingleNode?: boolean;
5063
+ kind?: string;
4051
5064
  /**
4052
5065
  * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
4053
5066
  */
@@ -4065,6 +5078,7 @@ export interface JobNewCluster {
4065
5078
  };
4066
5079
  sparkVersion: string;
4067
5080
  sshPublicKeys?: string[];
5081
+ useMlRuntime?: boolean;
4068
5082
  /**
4069
5083
  * isn't supported
4070
5084
  */
@@ -4372,6 +5386,7 @@ export interface JobSparkSubmitTask {
4372
5386
  parameters?: string[];
4373
5387
  }
4374
5388
  export interface JobTask {
5389
+ cleanRoomsNotebookTask?: outputs.JobTaskCleanRoomsNotebookTask;
4375
5390
  conditionTask?: outputs.JobTaskConditionTask;
4376
5391
  dbtTask?: outputs.JobTaskDbtTask;
4377
5392
  /**
@@ -4459,6 +5474,14 @@ export interface JobTask {
4459
5474
  */
4460
5475
  webhookNotifications?: outputs.JobTaskWebhookNotifications;
4461
5476
  }
5477
+ export interface JobTaskCleanRoomsNotebookTask {
5478
+ cleanRoomName: string;
5479
+ etag?: string;
5480
+ notebookBaseParameters?: {
5481
+ [key: string]: string;
5482
+ };
5483
+ notebookName: string;
5484
+ }
4462
5485
  export interface JobTaskConditionTask {
4463
5486
  /**
4464
5487
  * The left operand of the condition task. It could be a string value, job state, or a parameter reference.
@@ -4561,6 +5584,7 @@ export interface JobTaskForEachTask {
4561
5584
  task: outputs.JobTaskForEachTaskTask;
4562
5585
  }
4563
5586
  export interface JobTaskForEachTaskTask {
5587
+ cleanRoomsNotebookTask?: outputs.JobTaskForEachTaskTaskCleanRoomsNotebookTask;
4564
5588
  conditionTask?: outputs.JobTaskForEachTaskTaskConditionTask;
4565
5589
  dbtTask?: outputs.JobTaskForEachTaskTaskDbtTask;
4566
5590
  /**
@@ -4647,6 +5671,14 @@ export interface JobTaskForEachTaskTask {
4647
5671
  */
4648
5672
  webhookNotifications?: outputs.JobTaskForEachTaskTaskWebhookNotifications;
4649
5673
  }
5674
+ export interface JobTaskForEachTaskTaskCleanRoomsNotebookTask {
5675
+ cleanRoomName: string;
5676
+ etag?: string;
5677
+ notebookBaseParameters?: {
5678
+ [key: string]: string;
5679
+ };
5680
+ notebookName: string;
5681
+ }
4650
5682
  export interface JobTaskForEachTaskTaskConditionTask {
4651
5683
  /**
4652
5684
  * The left operand of the condition task. It could be a string value, job state, or a parameter reference.
@@ -4798,6 +5830,8 @@ export interface JobTaskForEachTaskTaskNewCluster {
4798
5830
  idempotencyToken?: string;
4799
5831
  initScripts?: outputs.JobTaskForEachTaskTaskNewClusterInitScript[];
4800
5832
  instancePoolId?: string;
5833
+ isSingleNode?: boolean;
5834
+ kind?: string;
4801
5835
  /**
4802
5836
  * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
4803
5837
  */
@@ -4815,6 +5849,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
4815
5849
  };
4816
5850
  sparkVersion: string;
4817
5851
  sshPublicKeys?: string[];
5852
+ useMlRuntime?: boolean;
4818
5853
  /**
4819
5854
  * isn't supported
4820
5855
  */
@@ -5344,6 +6379,8 @@ export interface JobTaskNewCluster {
5344
6379
  idempotencyToken?: string;
5345
6380
  initScripts?: outputs.JobTaskNewClusterInitScript[];
5346
6381
  instancePoolId?: string;
6382
+ isSingleNode?: boolean;
6383
+ kind?: string;
5347
6384
  /**
5348
6385
  * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
5349
6386
  */
@@ -5361,6 +6398,7 @@ export interface JobTaskNewCluster {
5361
6398
  };
5362
6399
  sparkVersion: string;
5363
6400
  sshPublicKeys?: string[];
6401
+ useMlRuntime?: boolean;
5364
6402
  /**
5365
6403
  * isn't supported
5366
6404
  */
@@ -7233,7 +8271,7 @@ export interface PipelineNotification {
7233
8271
  emailRecipients?: string[];
7234
8272
  }
7235
8273
  export interface PipelineRestartWindow {
7236
- daysOfWeek?: string;
8274
+ daysOfWeeks?: string[];
7237
8275
  startHour: number;
7238
8276
  timeZoneId?: string;
7239
8277
  }