action cloudflare_aig_config_fetch_custom_domain { label: "Fetch a Custom Domain" description: "Retrieves details for a specific AI Gateway dataset." provider: cloudflare method: GET path: "/accounts/{account_id}/ai-gateway/gateways/{gateway_id}/custom-domains/{hostname}" encoding: json input: { type: "object" properties: { account_id: { type: "string" } gateway_id: { type: "string" description: "gateway id" } hostname: { type: "string" description: "the customer-owned custom hostname" } } required: ["account_id", "gateway_id", "hostname"] additionalProperties: false } output: { type: "object" required: ["result", "success"] properties: { result: { type: "object" required: ["created_at", "gateway_id", "hostname", "modified_at", "ssl_hostname_id", "status"] properties: { created_at: { type: "integer" description: "epoch milliseconds" } gateway_id: { type: "string" description: "gateway id" } hostname: { type: "string" description: "the customer-owned custom hostname" } modified_at: { type: "integer" description: "epoch milliseconds" } ssl_hostname_id: { type: "string" } status: { type: "string" enum: ["initializing", "pending_dcv", "active", "error"] } } } success: { type: "boolean" } } } }