This commit is contained in:
asteam
2025-01-21 12:16:49 +03:00
parent 76ea459b3d
commit 60e23338ad
751 changed files with 17877 additions and 1908 deletions

View File

@@ -204,6 +204,9 @@ func MakeSchemaDataSourceVINS() map[string]schema.Attribute {
"milestones": schema.Int64Attribute{
Computed: true,
},
"vnc_password": schema.StringAttribute{
Computed: true,
},
"vnf_name": schema.StringAttribute{
Computed: true,
},
@@ -371,16 +374,7 @@ func MakeSchemaDataSourceVINS() map[string]schema.Attribute {
Computed: true,
NestedObject: schema.NestedAttributeObject{
Attributes: map[string]schema.Attribute{
"client_type": schema.StringAttribute{
Computed: true,
},
"desc": schema.StringAttribute{
Computed: true,
},
"domainname": schema.StringAttribute{
Computed: true,
},
"hostname": schema.StringAttribute{
"account_id": schema.Int64Attribute{
Computed: true,
},
"ip": schema.StringAttribute{

View File

@@ -374,6 +374,9 @@ func MakeSchemaResourceVINS() map[string]schema.Attribute {
"vnf_name": schema.StringAttribute{
Computed: true,
},
"vnc_password": schema.StringAttribute{
Computed: true,
},
"status": schema.StringAttribute{
Computed: true,
},

View File

@@ -29,11 +29,6 @@ func MakeSchemaResourceVINSStaticRoute() map[string]schema.Attribute {
Computed: true,
Optional: true,
},
"compute_ids": schema.ListAttribute{
Computed: true,
Optional: true,
ElementType: types.Int64Type,
},
// computed attributes
"id": schema.StringAttribute{
@@ -48,5 +43,9 @@ func MakeSchemaResourceVINSStaticRoute() map[string]schema.Attribute {
"guid": schema.StringAttribute{
Computed: true,
},
"compute_ids": schema.ListAttribute{
Computed: true,
ElementType: types.Int64Type,
},
}
}