Skip to content

Commit 38ff7d1

Browse files
committed
fixed the framework types
1 parent 45dd070 commit 38ff7d1

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

internal/service/odb/cloud_vm_cluster.go

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -566,51 +566,51 @@ func FindCloudVmClusterForResourceByID(ctx context.Context, conn *odb.Client, id
566566

567567
type cloudVmClusterResourceModel struct {
568568
framework.WithRegionModel
569-
CloudVmClusterArn types.String `tfsdk:"arn"`
570-
CloudExadataInfrastructureId types.String `tfsdk:"cloud_exadata_infrastructure_id"`
571-
CloudVmClusterId types.String `tfsdk:"id"`
572-
ClusterName types.String `tfsdk:"cluster_name"`
573-
CpuCoreCount types.Int32 `tfsdk:"cpu_core_count"`
574-
DataCollectionOptions fwtypes.ObjectValueOf[cloudVMCDataCollectionOptionsResourceModel] `tfsdk:"data_collection_options"`
575-
DataStorageSizeInTBs types.Float64 `tfsdk:"data_storage_size_in_tbs"`
576-
DbNodeStorageSizeInGBs types.Int32 `tfsdk:"db_node_storage_size_in_gbs"`
577-
DbServers fwtypes.SetValueOf[types.String] `tfsdk:"db_servers"`
578-
DiskRedundancy fwtypes.StringEnum[odbtypes.DiskRedundancy] `tfsdk:"disk_redundancy"`
579-
DisplayName types.String `tfsdk:"display_name"`
580-
Domain types.String `tfsdk:"domain"`
581-
GiVersion types.String `tfsdk:"gi_version"`
582-
HostnamePrefixComputed types.String `tfsdk:"hostname_prefix_computed" autoflex:",noflatten"`
583-
HostnamePrefix types.String `tfsdk:"hostname_prefix" autoflex:"-"`
584-
IormConfigCache fwtypes.ListNestedObjectValueOf[cloudVMCExadataIormConfigResourceModel] `tfsdk:"iorm_config_cache"`
585-
IsLocalBackupEnabled types.Bool `tfsdk:"is_local_backup_enabled"`
586-
IsSparseDiskGroupEnabled types.Bool `tfsdk:"is_sparse_diskgroup_enabled"`
587-
LastUpdateHistoryEntryId types.String `tfsdk:"last_update_history_entry_id"`
588-
LicenseModel fwtypes.StringEnum[odbtypes.LicenseModel] `tfsdk:"license_model"`
589-
ListenerPort types.Int32 `tfsdk:"listener_port"`
590-
MemorySizeInGbs types.Int32 `tfsdk:"memory_size_in_gbs"`
591-
NodeCount types.Int32 `tfsdk:"node_count"`
592-
Ocid types.String `tfsdk:"ocid"`
593-
OciResourceAnchorName types.String `tfsdk:"oci_resource_anchor_name"`
594-
OciUrl types.String `tfsdk:"oci_url"`
595-
OdbNetworkId types.String `tfsdk:"odb_network_id"`
596-
PercentProgress types.Float32 `tfsdk:"percent_progress"`
597-
ScanDnsName types.String `tfsdk:"scan_dns_name"`
598-
ScanDnsRecordId types.String `tfsdk:"scan_dns_record_id"`
599-
ScanIpIds fwtypes.ListValueOf[types.String] `tfsdk:"scan_ip_ids"`
600-
Shape types.String `tfsdk:"shape"`
601-
SshPublicKeys fwtypes.SetValueOf[types.String] `tfsdk:"ssh_public_keys"`
602-
Status fwtypes.StringEnum[odbtypes.ResourceStatus] `tfsdk:"status"`
603-
StatusReason types.String `tfsdk:"status_reason"`
604-
StorageSizeInGBs types.Int32 `tfsdk:"storage_size_in_gbs"`
605-
SystemVersion types.String `tfsdk:"system_version"`
606-
Timeouts timeouts.Value `tfsdk:"timeouts"`
607-
Timezone types.String `tfsdk:"timezone"`
608-
VipIds fwtypes.ListValueOf[types.String] `tfsdk:"vip_ids"`
609-
CreatedAt timetypes.RFC3339 `tfsdk:"created_at"`
610-
ComputeModel fwtypes.StringEnum[odbtypes.ComputeModel] `tfsdk:"compute_model"`
611-
ScanListenerPortTcp types.Int32 `tfsdk:"scan_listener_port_tcp"`
612-
Tags tftags.Map `tfsdk:"tags"`
613-
TagsAll tftags.Map `tfsdk:"tags_all"`
569+
CloudVmClusterArn types.String `tfsdk:"arn"`
570+
CloudExadataInfrastructureId types.String `tfsdk:"cloud_exadata_infrastructure_id"`
571+
CloudVmClusterId types.String `tfsdk:"id"`
572+
ClusterName types.String `tfsdk:"cluster_name"`
573+
CpuCoreCount types.Int32 `tfsdk:"cpu_core_count"`
574+
DataCollectionOptions fwtypes.ListNestedObjectValueOf[cloudVMCDataCollectionOptionsResourceModel] `tfsdk:"data_collection_options"`
575+
DataStorageSizeInTBs types.Float64 `tfsdk:"data_storage_size_in_tbs"`
576+
DbNodeStorageSizeInGBs types.Int32 `tfsdk:"db_node_storage_size_in_gbs"`
577+
DbServers fwtypes.SetValueOf[types.String] `tfsdk:"db_servers"`
578+
DiskRedundancy fwtypes.StringEnum[odbtypes.DiskRedundancy] `tfsdk:"disk_redundancy"`
579+
DisplayName types.String `tfsdk:"display_name"`
580+
Domain types.String `tfsdk:"domain"`
581+
GiVersion types.String `tfsdk:"gi_version"`
582+
HostnamePrefixComputed types.String `tfsdk:"hostname_prefix_computed" autoflex:",noflatten"`
583+
HostnamePrefix types.String `tfsdk:"hostname_prefix" autoflex:"-"`
584+
IormConfigCache fwtypes.ListNestedObjectValueOf[cloudVMCExadataIormConfigResourceModel] `tfsdk:"iorm_config_cache"`
585+
IsLocalBackupEnabled types.Bool `tfsdk:"is_local_backup_enabled"`
586+
IsSparseDiskGroupEnabled types.Bool `tfsdk:"is_sparse_diskgroup_enabled"`
587+
LastUpdateHistoryEntryId types.String `tfsdk:"last_update_history_entry_id"`
588+
LicenseModel fwtypes.StringEnum[odbtypes.LicenseModel] `tfsdk:"license_model"`
589+
ListenerPort types.Int32 `tfsdk:"listener_port"`
590+
MemorySizeInGbs types.Int32 `tfsdk:"memory_size_in_gbs"`
591+
NodeCount types.Int32 `tfsdk:"node_count"`
592+
Ocid types.String `tfsdk:"ocid"`
593+
OciResourceAnchorName types.String `tfsdk:"oci_resource_anchor_name"`
594+
OciUrl types.String `tfsdk:"oci_url"`
595+
OdbNetworkId types.String `tfsdk:"odb_network_id"`
596+
PercentProgress types.Float32 `tfsdk:"percent_progress"`
597+
ScanDnsName types.String `tfsdk:"scan_dns_name"`
598+
ScanDnsRecordId types.String `tfsdk:"scan_dns_record_id"`
599+
ScanIpIds fwtypes.ListValueOf[types.String] `tfsdk:"scan_ip_ids"`
600+
Shape types.String `tfsdk:"shape"`
601+
SshPublicKeys fwtypes.SetValueOf[types.String] `tfsdk:"ssh_public_keys"`
602+
Status fwtypes.StringEnum[odbtypes.ResourceStatus] `tfsdk:"status"`
603+
StatusReason types.String `tfsdk:"status_reason"`
604+
StorageSizeInGBs types.Int32 `tfsdk:"storage_size_in_gbs"`
605+
SystemVersion types.String `tfsdk:"system_version"`
606+
Timeouts timeouts.Value `tfsdk:"timeouts"`
607+
Timezone types.String `tfsdk:"timezone"`
608+
VipIds fwtypes.ListValueOf[types.String] `tfsdk:"vip_ids"`
609+
CreatedAt timetypes.RFC3339 `tfsdk:"created_at"`
610+
ComputeModel fwtypes.StringEnum[odbtypes.ComputeModel] `tfsdk:"compute_model"`
611+
ScanListenerPortTcp types.Int32 `tfsdk:"scan_listener_port_tcp"`
612+
Tags tftags.Map `tfsdk:"tags"`
613+
TagsAll tftags.Map `tfsdk:"tags_all"`
614614
}
615615

616616
type cloudVMCDataCollectionOptionsResourceModel struct {

0 commit comments

Comments
 (0)