You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.9 KiB
70 lines
2.9 KiB
package models
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform-plugin-framework-timeouts/resource/timeouts"
|
|
"github.com/hashicorp/terraform-plugin-framework/attr"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
)
|
|
|
|
type ImageResourceModel struct {
|
|
// request fields
|
|
ImageName types.String `tfsdk:"image_name"`
|
|
URL types.String `tfsdk:"url"`
|
|
BootType types.String `tfsdk:"boot_type"`
|
|
ImageType types.String `tfsdk:"image_type"`
|
|
Drivers types.List `tfsdk:"drivers"`
|
|
HotResize types.Bool `tfsdk:"hot_resize"`
|
|
NetworkInterfaceNaming types.String `tfsdk:"network_interface_naming"`
|
|
Username types.String `tfsdk:"username"`
|
|
Password types.String `tfsdk:"password"`
|
|
AccountID types.Int64 `tfsdk:"account_id"`
|
|
UsernameDL types.String `tfsdk:"username_dl"`
|
|
PasswordDL types.String `tfsdk:"password_dl"`
|
|
SepID types.Int64 `tfsdk:"sep_id"`
|
|
PoolName types.String `tfsdk:"pool_name"`
|
|
Architecture types.String `tfsdk:"architecture"`
|
|
Permanently types.Bool `tfsdk:"permanently"`
|
|
Timeouts timeouts.Value `tfsdk:"timeouts"`
|
|
// responce fields
|
|
Id types.String `tfsdk:"id"`
|
|
LastUpdated types.String `tfsdk:"last_updated"`
|
|
UNCPath types.String `tfsdk:"unc_path"`
|
|
CKey types.String `tfsdk:"ckey"`
|
|
ACL types.List `tfsdk:"acl"`
|
|
Bootable types.Bool `tfsdk:"bootable"`
|
|
ComputeCIID types.Int64 `tfsdk:"compute_ci_id"`
|
|
CdPresentedTo types.String `tfsdk:"cd_presented_to"`
|
|
GID types.Int64 `tfsdk:"gid"`
|
|
DeletedTime types.Int64 `tfsdk:"deleted_time"`
|
|
Description types.String `tfsdk:"desc"`
|
|
Enabled types.Bool `tfsdk:"enabled"`
|
|
GUID types.Int64 `tfsdk:"guid"`
|
|
History types.List `tfsdk:"history"`
|
|
LastModified types.Int64 `tfsdk:"last_modified"`
|
|
LinkTo types.Int64 `tfsdk:"link_to"`
|
|
Milestones types.Int64 `tfsdk:"milestones"`
|
|
ImageId types.Int64 `tfsdk:"image_id"`
|
|
PresentTo types.List `tfsdk:"present_to"`
|
|
ProviderName types.String `tfsdk:"provider_name"`
|
|
PurgeAttempts types.Int64 `tfsdk:"purge_attempts"`
|
|
ResID types.String `tfsdk:"res_id"`
|
|
RescueCD types.Bool `tfsdk:"rescuecd"`
|
|
SharedWith types.List `tfsdk:"shared_with"`
|
|
Size types.Int64 `tfsdk:"size"`
|
|
Status types.String `tfsdk:"status"`
|
|
TechStatus types.String `tfsdk:"tech_status"`
|
|
Version types.String `tfsdk:"version"`
|
|
}
|
|
|
|
type HistoryInImageResourceModel struct {
|
|
GUID types.String `tfsdk:"guid"`
|
|
ID types.Int64 `tfsdk:"id"`
|
|
Timestamp types.Int64 `tfsdk:"timestamp"`
|
|
}
|
|
|
|
var HistoryInResource = map[string]attr.Type{
|
|
"guid": types.StringType,
|
|
"id": types.Int64Type,
|
|
"timestamp": types.Int64Type,
|
|
}
|