Modifies a custom domain name.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
fc:UpdateCustomDomain |
update |
*All Resource
|
None | None |
Request syntax
PUT /2021-04-06/custom-domains/{domainName} HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| domainName |
string |
Yes |
The domain name. |
example.com |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| body |
object |
No |
The request body. |
|
| protocol |
string |
No |
The protocol types supported by the domain name. Valid values:
|
HTTP |
| routeConfig | RouteConfig |
No |
The route table configurations. The route table maps paths to functions when the functions are invoked by using custom domain names. |
|
| certConfig | CertConfig |
No |
The HTTPS certificate configurations. |
|
| tlsConfig | TLSConfig |
No |
The TLS configurations. |
|
| wafConfig | WAFConfig |
No |
The 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 elements
|
Element |
Type |
Description |
Example |
|
object |
The information about the modified domain name. |
||
| domainName |
string |
The domain name. |
example.com |
| accountId |
string |
The ID of your Alibaba Cloud account. |
1986114****4305 |
| protocol |
string |
The protocol type that is supported by the custom domain name.
|
HTTP |
| apiVersion |
string |
The version of the API. |
2016-08-15 |
| createdTime |
string |
The time when the custom domain name was created. |
2020-07-27T08:02:19Z |
| lastModifiedTime |
string |
The time when the domain name was last modified. |
2020-07-27T08:02:19Z |
| certConfig | CertConfig |
The HTTPS certificate configurations. |
|
| routeConfig | RouteConfig |
The route table configurations. The route table maps paths to functions when the functions are invoked by using custom domain names. |
|
| tlsConfig | TLSConfig |
The TLS configurations. |
|
| wafConfig | WAFConfig |
The WAF configurations. |
Examples
Success response
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
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.