update_ipv6
Modifies the IPv6 configuration for a specified website by enabling or disabling it, using the site ID, and targeting specific regions as needed.
Instructions
Modifies the IPv6 configuration of a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable | Yes | Specifies whether to enable IPv6. | |
region | No | Enable IPV6 in the region. | |
siteId | Yes | The website ID, which can be obtained by calling the ListSites operation. |
Input Schema (JSON Schema)
{
"annotations": {
"destructiveHint": false,
"idempotentHint": false,
"readOnlyHint": false
},
"properties": {
"enable": {
"description": "Specifies whether to enable IPv6.",
"enum": [
"on",
"off"
],
"type": "string"
},
"region": {
"description": "Enable IPV6 in the region.",
"enum": [
"x.x",
"cn.cn"
],
"type": "string"
},
"siteId": {
"description": "The website ID, which can be obtained by calling the ListSites operation.",
"example": [
12228828888
],
"type": "number"
}
},
"required": [
"siteId",
"enable"
],
"type": "object"
}