@@ -42,7 +42,6 @@ var loadBalancerCopyNonUpdatableParams = []string{
42
42
// @API EPS POST /v1.0/enterprise-projects/{enterprise_project_id}/resources-migrat
43
43
// @API BSS GET /v2/orders/customer-orders/details/{order_id}
44
44
// @API BSS POST /v2/orders/suscriptions/resources/query
45
- // @API BSS POST /v2/orders/subscriptions/resources/unsubscribe
46
45
// @API BSS POST /v2/orders/subscriptions/resources/autorenew/{instance_id}
47
46
// @API BSS DELETE /v2/orders/subscriptions/resources/autorenew/{instance_id}
48
47
func ResourceLoadBalancerCopy () * schema.Resource {
@@ -227,6 +226,22 @@ func ResourceLoadBalancerCopy() *schema.Resource {
227
226
Type : schema .TypeString ,
228
227
Computed : true ,
229
228
},
229
+ "elb_virsubnet_type" : {
230
+ Type : schema .TypeString ,
231
+ Computed : true ,
232
+ },
233
+ "frozen_scene" : {
234
+ Type : schema .TypeString ,
235
+ Computed : true ,
236
+ },
237
+ "operating_status" : {
238
+ Type : schema .TypeString ,
239
+ Computed : true ,
240
+ },
241
+ "public_border_group" : {
242
+ Type : schema .TypeString ,
243
+ Computed : true ,
244
+ },
230
245
"charge_mode" : {
231
246
Type : schema .TypeString ,
232
247
Computed : true ,
@@ -431,6 +446,11 @@ func resourceLoadBalancerCopyRead(_ context.Context, d *schema.ResourceData, met
431
446
d .Set ("created_at" , utils .PathSearch ("loadbalancer.created_at" , getRespBody , nil )),
432
447
d .Set ("updated_at" , utils .PathSearch ("loadbalancer.updated_at" , getRespBody , nil )),
433
448
d .Set ("waf_failure_action" , utils .PathSearch ("loadbalancer.waf_failure_action" , getRespBody , nil )),
449
+ d .Set ("vpc_id" , utils .PathSearch ("loadbalancer.vpc_id" , getRespBody , nil )),
450
+ d .Set ("elb_virsubnet_type" , utils .PathSearch ("loadbalancer.elb_virsubnet_type" , getRespBody , nil )),
451
+ d .Set ("frozen_scene" , utils .PathSearch ("loadbalancer.frozen_scene" , getRespBody , nil )),
452
+ d .Set ("operating_status" , utils .PathSearch ("loadbalancer.operating_status" , getRespBody , nil )),
453
+ d .Set ("public_border_group" , utils .PathSearch ("loadbalancer.public_border_group" , getRespBody , nil )),
434
454
d .Set ("deletion_protection_enable" , strconv .FormatBool (
435
455
utils .PathSearch ("loadbalancer.deletion_protection_enable" , getRespBody , false ).(bool ))),
436
456
)
0 commit comments