Modifies a custom domain name.
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action
policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- The required resource types are displayed in bold characters.
- If the permissions cannot be granted at the resource level,
All Resources
is used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
fc:UpdateCustomDomain | update |
|
| none |
Request syntax
PUT /2021-04-06/custom-domains/{domainName} HTTP/1.1
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
domainName | string | Yes | The domain name. | example.com |
body | object | No | The request body. | |
protocol | string | No | The protocol types supported by the domain name. Valid values:
| HTTP |
routeConfig | RouteConfig | No | The configuration of the route table. The route table maps paths to functions when the functions are invoked by using custom domain names. | |
certConfig | CertConfig | No | The configuration of the HTTPS certificate. | |
tlsConfig | TLSConfig | No | The TLS configurations. | |
wafConfig | WAFConfig | No | Web Application Firewall (WAF) configurations. | |
X-Fc-Account-Id | string | No | The ID of your Alibaba Cloud account. | 188077086902**** |
X-Fc-Date | string | No | The time when the operation is called. The format is: EEE,d MMM yyyy HH:mm:ss GMT. | Wed, 11 May 2022 09:00:00 GMT |
X-Fc-Trace-Id | string | No | The custom request ID. | asdf***** |
Response parameters
Examples
Sample success responses
JSON
format
{
"domainName": "example.com\t",
"accountId": "1986114****4305\t",
"protocol": "HTTP",
"apiVersion": "2016-08-15\t",
"createdTime": "2020-07-27T08:02:19Z\t",
"lastModifiedTime": "2020-07-27T08:02:19Z",
"certConfig": {
"certName": "my-cert",
"certificate": "-----BEGIN CERTIFICATE----- xxxxx -----END CERTIFICATE-----",
"privateKey": "-----BEGIN RSA PRIVATE KEY----- xxxxx -----END RSA PRIVATE KEY-----"
},
"routeConfig": {
"routes": [
{
"functionName": "f1",
"methods": [
"GET"
],
"path": "/login",
"qualifier": "prod",
"serviceName": "s1",
"rewriteConfig": {
"equalRules": [
{
"match": "/old",
"replacement": "/new"
}
],
"wildcardRules": [
{
"match": "/api/*",
"replacement": "/$1"
}
],
"regexRules": [
{
"match": "^/js/(.*?)$",
"replacement": "/public/javascripts/$1"
}
]
}
}
]
},
"tlsConfig": {
"minVersion": "TLSv1.0",
"cipherSuites": [
"TLS_RSA_WITH_RC4_128_SHA"
],
"maxVersion": "TLSv1.3"
},
"wafConfig": {
"enableWAF": true
}
}
Error codes
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2024-02-19 | The internal configuration of the API is changed, but the call is not affected | View Change Details |
2022-11-28 | The internal configuration of the API is changed, but the call is not affected | View Change Details |
2021-06-30 | The request parameters of the API has changed | View Change Details |
2021-06-30 | The request parameters of the API has changed | View Change Details |
2021-06-30 | The request parameters of the API has changed | View Change Details |