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
TableJSON 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. |
Implementation Reference
- src/tools/site/ipv6.ts:59-68 (handler)The handler function that implements the core logic of the 'update_ipv6' tool by invoking the service API.export const update_ipv6 = async (request: CallToolRequest) => { const res = await api.updateIPv6( request.params.arguments as UpdateIPv6Request, ); return { content: [{ type: 'text', text: JSON.stringify(res) }], success: true, }; };
- src/tools/site/ipv6.ts:5-35 (schema)Tool definition containing the input schema for validating parameters of 'update_ipv6'.export const UPDATE_IPV6_TOOL: Tool = { name: 'update_ipv6', description: 'Modifies the IPv6 configuration of a website.', inputSchema: { type: 'object', properties: { siteId: { type: 'number', description: 'The website ID, which can be obtained by calling the ListSites operation.', example: [12228828888], }, enable: { type: 'string', description: 'Specifies whether to enable IPv6.', enum: ['on', 'off'], }, region: { type: 'string', description: 'Enable IPV6 in the region.', enum: ['x.x', 'cn.cn'], }, }, required: ['siteId', 'enable'], annotations: { readOnlyHint: false, destructiveHint: false, idempotentHint: false, }, }, };
- src/tools/list-esa-function.ts:141-141 (registration)Registers the tool schema (UPDATE_IPV6_TOOL) in a list that is included in the main ESA_OPENAPI_LIST for tool discovery.export const IPV6_LIST = [UPDATE_IPV6_TOOL, GET_IPV6_TOOL];
- src/tools/list-esa-function.ts:164-208 (registration)Registers the handler function (update_ipv6) in the esaHandlers map for dispatching tool calls.export const esaHandlers: ToolHandlers = { site_active_list, site_match, site_route_list, site_record_list, routine_create, routine_code_commit, routine_delete, routine_list, routine_get, routine_code_deploy, routine_route_list, deployment_delete, route_create, route_delete, route_update, route_get, er_record_create, er_record_delete, er_record_list, html_deploy, create_site, update_site_pause, get_site_pause, create_site_mx_record, create_site_ns_record, create_site_txt_record, create_site_cname_record, create_site_a_or_aaaa_record, update_record, list_records, get_record, delete_record, update_ipv6, get_ipv6, update_managed_transform, get_managed_transform, set_certificate, apply_certificate, get_certificate, delete_certificate, list_certificates, get_certificate_quota, list_sites, };
- src/utils/service.ts:455-464 (helper)Helper method in the service client that wraps the Alibaba Cloud ESA updateIPv6 API call.updateIPv6(params: UpdateIPv6Request) { const request = new UpdateIPv6Request(params); return this.callApi( this.client.updateIPv6.bind(this.client) as ApiMethod< UpdateIPv6Request, UpdateIPv6Response >, request, ); }