Skip to main content
Glama

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
NameRequiredDescriptionDefault
enableYesSpecifies whether to enable IPv6.
regionNoEnable IPV6 in the region.
siteIdYesThe website ID, which can be obtained by calling the ListSites operation.

Implementation Reference

  • 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, }; };
  • 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, }, }, };
  • 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];
  • 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, };
  • 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, ); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aliyun/mcp-server-esa'

If you have feedback or need assistance with the MCP directory API, please join our Discord server