diff --git a/internal/resource_device_gateway/device_gateway_resource_gen.go b/internal/resource_device_gateway/device_gateway_resource_gen.go index 3a7135af..d6900024 100644 --- a/internal/resource_device_gateway/device_gateway_resource_gen.go +++ b/internal/resource_device_gateway/device_gateway_resource_gen.go @@ -1433,8 +1433,8 @@ func DeviceGatewayResourceSchema(ctx context.Context) schema.Schema { "dsl_type": schema.StringAttribute{ Optional: true, Computed: true, - Description: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", - MarkdownDescription: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", + Description: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", + MarkdownDescription: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", Validators: []validator.String{ stringvalidator.OneOf( "", @@ -1442,7 +1442,7 @@ func DeviceGatewayResourceSchema(ctx context.Context) schema.Schema { "adsl", ), mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("broadband")), - mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("dsl")), + mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("lte")), }, Default: stringdefault.StaticString("vdsl"), }, diff --git a/internal/resource_org_deviceprofile_gateway/org_deviceprofile_gateway_resource_gen.go b/internal/resource_org_deviceprofile_gateway/org_deviceprofile_gateway_resource_gen.go index 6a6584b2..9d060c66 100644 --- a/internal/resource_org_deviceprofile_gateway/org_deviceprofile_gateway_resource_gen.go +++ b/internal/resource_org_deviceprofile_gateway/org_deviceprofile_gateway_resource_gen.go @@ -1394,8 +1394,8 @@ func OrgDeviceprofileGatewayResourceSchema(ctx context.Context) schema.Schema { "dsl_type": schema.StringAttribute{ Optional: true, Computed: true, - Description: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", - MarkdownDescription: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", + Description: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", + MarkdownDescription: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", Validators: []validator.String{ stringvalidator.OneOf( "", @@ -1403,7 +1403,7 @@ func OrgDeviceprofileGatewayResourceSchema(ctx context.Context) schema.Schema { "adsl", ), mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("broadband")), - mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("dsl")), + mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("lte")), }, Default: stringdefault.StaticString("vdsl"), }, diff --git a/internal/resource_org_gatewaytemplate/org_gatewaytemplate_resource_gen.go b/internal/resource_org_gatewaytemplate/org_gatewaytemplate_resource_gen.go index 3c37c9a7..a75475be 100644 --- a/internal/resource_org_gatewaytemplate/org_gatewaytemplate_resource_gen.go +++ b/internal/resource_org_gatewaytemplate/org_gatewaytemplate_resource_gen.go @@ -1388,8 +1388,8 @@ func OrgGatewaytemplateResourceSchema(ctx context.Context) schema.Schema { "dsl_type": schema.StringAttribute{ Optional: true, Computed: true, - Description: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", - MarkdownDescription: "if `wan_type`==`lte`. enum: `adsl`, `vdsl`", + Description: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", + MarkdownDescription: "if `wan_type`==`dsl`. enum: `adsl`, `vdsl`", Validators: []validator.String{ stringvalidator.OneOf( "", @@ -1397,7 +1397,7 @@ func OrgGatewaytemplateResourceSchema(ctx context.Context) schema.Schema { "adsl", ), mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("broadband")), - mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("dsl")), + mistvalidator.ForbiddenWhenValueIs(path.MatchRelative().AtParent().AtName("wan_type"), types.StringValue("lte")), }, Default: stringdefault.StaticString("vdsl"), },