update_ipv6
Modify IPv6 configuration for websites to enable or disable IPv6 support in specific regions, controlling network protocol settings.
Instructions
Modifies the IPv6 configuration of a website.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| siteId | Yes | The website ID, which can be obtained by calling the ListSites operation. | |
| enable | Yes | Specifies whether to enable IPv6. | |
| region | No | Enable IPV6 in the region. |
Implementation Reference
- src/tools/site/ipv6.ts:59-68 (handler)The handler function for the 'update_ipv6' tool. It takes a CallToolRequest, calls the API service's updateIPv6 method with the provided arguments, and returns a formatted response with the result.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)The schema definition for the 'update_ipv6' tool, including name, description, input schema with properties for siteId, enable, and optional region, required fields, and annotations.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:164-208 (registration)Registration of tool handlers in the esaHandlers object, including 'update_ipv6' which maps to the handler function imported from './site/ipv6'.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/tools/list-esa-function.ts:73-77 (registration)Import of the update_ipv6 handler and UPDATE_IPV6_TOOL schema from site/ipv6.ts for registration.get_ipv6, GET_IPV6_TOOL, update_ipv6, UPDATE_IPV6_TOOL, } from './site/ipv6';
- src/utils/service.ts:455-464 (helper)Helper method in the API service client that wraps the Alibaba Cloud ESA updateIPv6 API call, used by the tool handler.updateIPv6(params: UpdateIPv6Request) { const request = new UpdateIPv6Request(params); return this.callApi( this.client.updateIPv6.bind(this.client) as ApiMethod< UpdateIPv6Request, UpdateIPv6Response >, request, ); }