ModifyCidrBlocksAttribute

1. API Description

The API is used to modify the attributes of one or more CIDR blocks. Only the CIDR block name to be displayed can be modified for now.

2. Input Parameters

The following request parameter list only provides API request parameters.

Parameter NameRequiredTypeDescription

cidrBlockIds

Yes

Array of String

CIDR block ID(s).

To obtain the CIDR block IDs, you can call DescribeCidrBlocks and look for cidrBlockId in the response.

The maximum number of CIDR blocks in each request is 100.

name

Yes

String

CIDR block name to be displayed.

This parameter can contain up to 64 characters.

3. Output Parameters

Parameter NameTypeDescription

requestId

String

The unique request ID, which is returned for each request. RequestId is required for locating a problem.

4. Code Example

Modify names of cidrBlockId1 and cidrBlockId2 to myCidrBlockName.

POST /api/v2/bmc HTTP/1.1
Host: console.zenlayer.com
Content-Type: application/json
X-ZC-Action: ModifyCidrBlocksAttribute
<Common Request Params>

Request:
{
  "cidrBlockIds": [
    "cidrBlockId1",
    "cidrBlockId2"
  ],
  "name": "myCidrBlockName"
}

Response:
{
  "requestId": "TF7DE750F-B3AA-4A65-BB46-1EE89072FC04",
  "response": {
    "requestId": "TF7DE750F-B3AA-4A65-BB46-1EE89072FC04"
  }
}

5. Developer Resources

Zenlayer Cloud API 2.0 integrates SDKs to make it easier for you to call APIs. More programming languages will be supported.

6. Error Codes

No error codes related to the API business logic. For other error codes, see Common Error Codes.​

Last updated