mirror of https://github.com/databricks/cli.git
Upgrade TF provider to 1.64.1 (#2247)
## Changes - Added support for `no_compute` in Apps - Added support for `run_as_repl` for job tasks
This commit is contained in:
parent
4ba222ab36
commit
099e9bed0f
|
@ -1,3 +1,3 @@
|
|||
package schema
|
||||
|
||||
const ProviderVersion = "1.63.0"
|
||||
const ProviderVersion = "1.64.1"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
package schema
|
||||
|
||||
type DataSourceServingEndpointsEndpointsAiGatewayGuardrailsInputPii struct {
|
||||
Behavior string `json:"behavior"`
|
||||
Behavior string `json:"behavior,omitempty"`
|
||||
}
|
||||
|
||||
type DataSourceServingEndpointsEndpointsAiGatewayGuardrailsInput struct {
|
||||
|
@ -14,7 +14,7 @@ type DataSourceServingEndpointsEndpointsAiGatewayGuardrailsInput struct {
|
|||
}
|
||||
|
||||
type DataSourceServingEndpointsEndpointsAiGatewayGuardrailsOutputPii struct {
|
||||
Behavior string `json:"behavior"`
|
||||
Behavior string `json:"behavior,omitempty"`
|
||||
}
|
||||
|
||||
type DataSourceServingEndpointsEndpointsAiGatewayGuardrailsOutput struct {
|
||||
|
@ -87,8 +87,8 @@ type DataSourceServingEndpointsEndpointsConfigServedEntitiesExternalModelDatabri
|
|||
type DataSourceServingEndpointsEndpointsConfigServedEntitiesExternalModelGoogleCloudVertexAiConfig struct {
|
||||
PrivateKey string `json:"private_key,omitempty"`
|
||||
PrivateKeyPlaintext string `json:"private_key_plaintext,omitempty"`
|
||||
ProjectId string `json:"project_id,omitempty"`
|
||||
Region string `json:"region,omitempty"`
|
||||
ProjectId string `json:"project_id"`
|
||||
Region string `json:"region"`
|
||||
}
|
||||
|
||||
type DataSourceServingEndpointsEndpointsConfigServedEntitiesExternalModelOpenaiConfig struct {
|
||||
|
|
|
@ -91,6 +91,7 @@ type ResourceApp struct {
|
|||
DefaultSourceCodePath string `json:"default_source_code_path,omitempty"`
|
||||
Description string `json:"description,omitempty"`
|
||||
Name string `json:"name"`
|
||||
NoCompute bool `json:"no_compute,omitempty"`
|
||||
PendingDeployment *ResourceAppPendingDeployment `json:"pending_deployment,omitempty"`
|
||||
Resources []ResourceAppResources `json:"resources,omitempty"`
|
||||
ServicePrincipalClientId string `json:"service_principal_client_id,omitempty"`
|
||||
|
|
|
@ -904,6 +904,7 @@ type ResourceJobTaskForEachTaskTaskSparkJarTask struct {
|
|||
JarUri string `json:"jar_uri,omitempty"`
|
||||
MainClassName string `json:"main_class_name,omitempty"`
|
||||
Parameters []string `json:"parameters,omitempty"`
|
||||
RunAsRepl bool `json:"run_as_repl,omitempty"`
|
||||
}
|
||||
|
||||
type ResourceJobTaskForEachTaskTaskSparkPythonTask struct {
|
||||
|
@ -1299,6 +1300,7 @@ type ResourceJobTaskSparkJarTask struct {
|
|||
JarUri string `json:"jar_uri,omitempty"`
|
||||
MainClassName string `json:"main_class_name,omitempty"`
|
||||
Parameters []string `json:"parameters,omitempty"`
|
||||
RunAsRepl bool `json:"run_as_repl,omitempty"`
|
||||
}
|
||||
|
||||
type ResourceJobTaskSparkPythonTask struct {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
package schema
|
||||
|
||||
type ResourceModelServingAiGatewayGuardrailsInputPii struct {
|
||||
Behavior string `json:"behavior"`
|
||||
Behavior string `json:"behavior,omitempty"`
|
||||
}
|
||||
|
||||
type ResourceModelServingAiGatewayGuardrailsInput struct {
|
||||
|
@ -14,7 +14,7 @@ type ResourceModelServingAiGatewayGuardrailsInput struct {
|
|||
}
|
||||
|
||||
type ResourceModelServingAiGatewayGuardrailsOutputPii struct {
|
||||
Behavior string `json:"behavior"`
|
||||
Behavior string `json:"behavior,omitempty"`
|
||||
}
|
||||
|
||||
type ResourceModelServingAiGatewayGuardrailsOutput struct {
|
||||
|
@ -94,8 +94,8 @@ type ResourceModelServingConfigServedEntitiesExternalModelDatabricksModelServing
|
|||
type ResourceModelServingConfigServedEntitiesExternalModelGoogleCloudVertexAiConfig struct {
|
||||
PrivateKey string `json:"private_key,omitempty"`
|
||||
PrivateKeyPlaintext string `json:"private_key_plaintext,omitempty"`
|
||||
ProjectId string `json:"project_id,omitempty"`
|
||||
Region string `json:"region,omitempty"`
|
||||
ProjectId string `json:"project_id"`
|
||||
Region string `json:"region"`
|
||||
}
|
||||
|
||||
type ResourceModelServingConfigServedEntitiesExternalModelOpenaiConfig struct {
|
||||
|
|
|
@ -29,6 +29,7 @@ type ResourceRecipient struct {
|
|||
CreatedAt int `json:"created_at,omitempty"`
|
||||
CreatedBy string `json:"created_by,omitempty"`
|
||||
DataRecipientGlobalMetastoreId string `json:"data_recipient_global_metastore_id,omitempty"`
|
||||
ExpirationTime int `json:"expiration_time,omitempty"`
|
||||
Id string `json:"id,omitempty"`
|
||||
MetastoreId string `json:"metastore_id,omitempty"`
|
||||
Name string `json:"name"`
|
||||
|
|
|
@ -21,7 +21,7 @@ type Root struct {
|
|||
|
||||
const ProviderHost = "registry.terraform.io"
|
||||
const ProviderSource = "databricks/databricks"
|
||||
const ProviderVersion = "1.63.0"
|
||||
const ProviderVersion = "1.64.1"
|
||||
|
||||
func NewRoot() *Root {
|
||||
return &Root{
|
||||
|
|
Loading…
Reference in New Issue