@@ -130,29 +130,29 @@ type ZonesInfo struct {
130130// AwsAttributes encapsulates the aws attributes for aws based clusters
131131// https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterattributes
132132type AwsAttributes struct {
133- FirstOnDemand int32 `json:"first_on_demand,omitempty" tf:"computed" `
134- Availability Availability `json:"availability,omitempty" tf:"computed" `
135- ZoneID string `json:"zone_id,omitempty" tf:"computed" `
133+ FirstOnDemand int32 `json:"first_on_demand,omitempty"`
134+ Availability Availability `json:"availability,omitempty"`
135+ ZoneID string `json:"zone_id,omitempty"`
136136 InstanceProfileArn string `json:"instance_profile_arn,omitempty"`
137- SpotBidPricePercent int32 `json:"spot_bid_price_percent,omitempty" tf:"computed" `
138- EbsVolumeType EbsVolumeType `json:"ebs_volume_type,omitempty" tf:"computed" `
139- EbsVolumeCount int32 `json:"ebs_volume_count,omitempty" tf:"computed" `
140- EbsVolumeSize int32 `json:"ebs_volume_size,omitempty" tf:"computed" `
137+ SpotBidPricePercent int32 `json:"spot_bid_price_percent,omitempty"`
138+ EbsVolumeType EbsVolumeType `json:"ebs_volume_type,omitempty"`
139+ EbsVolumeCount int32 `json:"ebs_volume_count,omitempty"`
140+ EbsVolumeSize int32 `json:"ebs_volume_size,omitempty"`
141141}
142142
143143// AzureAttributes encapsulates the Azure attributes for Azure based clusters
144144// https://docs.microsoft.com/en-us/azure/databricks/dev-tools/api/latest/clusters#clusterazureattributes
145145type AzureAttributes struct {
146- FirstOnDemand int32 `json:"first_on_demand,omitempty" tf:"computed" `
147- Availability Availability `json:"availability,omitempty" tf:"computed" `
148- SpotBidMaxPrice float64 `json:"spot_bid_max_price,omitempty" tf:"computed" `
146+ FirstOnDemand int32 `json:"first_on_demand,omitempty"`
147+ Availability Availability `json:"availability,omitempty"`
148+ SpotBidMaxPrice float64 `json:"spot_bid_max_price,omitempty"`
149149}
150150
151151// GcpAttributes encapsultes GCP specific attributes
152152// https://docs.gcp.databricks.com/dev-tools/api/latest/clusters.html#clustergcpattributes
153153type GcpAttributes struct {
154- UsePreemptibleExecutors bool `json:"use_preemptible_executors,omitempty" tf:"computed" `
155- GoogleServiceAccount string `json:"google_service_account,omitempty" tf:"computed" `
154+ UsePreemptibleExecutors bool `json:"use_preemptible_executors,omitempty"`
155+ GoogleServiceAccount string `json:"google_service_account,omitempty"`
156156}
157157
158158// DbfsStorageInfo contains the destination string for DBFS
0 commit comments