tencent cloud

文档反馈

SyncImages

最后更新时间:2024-01-04 16:11:13

    1. API Description

    Domain name for API request: cvm.tencentcloudapi.com.

    This API is used to sync a custom image to other regions.

    • Each API call syncs a single image.
    • This API supports syncing an image to multiple regions.
    • Each account can have up to 10 custom images in each region.

    A maximum of 10 requests can be initiated per second for this API.

    We recommend you to use API Explorer
    Try it
    API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

    2. Input Parameters

    The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

    Parameter Name Required Type Description
    Action Yes String Common Params. The value used for this API: SyncImages.
    Version Yes String Common Params. The value used for this API: 2017-03-12.
    Region No String Common Params. This parameter is not required for this API.
    ImageIds.N Yes Array of String List of image IDs. You can obtain the image IDs in two ways:
  • Call the DescribeImages API and find the value of ImageId in the response.
  • Find the image IDs in the Image Console.
    The specified images must meet the following requirement:
  • the images must be in the NORMAL state.
    For more information on image status, see Image Data Table.
  • DestinationRegions.N Yes Array of String List of destination regions for synchronization. Limits:
  • It must be a valid region.
  • For a custom image, the destination region cannot be the source region.
  • For a shared image, the destination region must be the source region, which indicates to create a copy of the image as a custom image in the same region.
  • Image synchronization is only available in limited regions.
    See Region.
  • DryRun No Boolean Checks whether image synchronization can be initiated.
    ImageName No String Destination image name.
    ImageSetRequired No Boolean Whether to return the ID of image created in the destination region

    3. Output Parameters

    Parameter Name Type Description
    ImageSet Array of SyncImage ID of the image created in the destination region
    RequestId String The unique request ID, which is returned for each request. RequestId is required for locating a problem.

    4. Example

    Example1 Syncing an image

    This example shows you how to sync the image img-o3ycss2p to Guangzhou.

    Input Example

    POST / HTTP/1.1
    Host: cvm.tencentcloudapi.com
    Content-Type: application/json
    X-TC-Action: SyncImages
    <Common request parameters>
    
    {
        "ImageIds": [
            "img-o3ycss2p"
        ],
        "DestinationRegions": [
            "ap-guangzhou"
        ]
    }
    

    Output Example

    {
        "Response": {
            "RequestId": "71e69b56-32be-4412-ab45-49eded6a87be"
        }
    }
    

    Example2 Syncing an image to the specified region and returning the new image ID

    This example shows you how to sync the image img-o3ycss2p to Guangzhou.

    Input Example

    POST / HTTP/1.1
    Host: cvm.tencentcloudapi.com
    Content-Type: application/json
    X-TC-Action: SyncImages
    <Common request parameters>
    
    {
        "ImageIds": [
            "img-o3ycss2p"
        ],
        "DestinationRegions": [
            "ap-guangzhou"
        ],
        "ImageSetRequired": true
    }
    

    Output Example

    {
        "Response": {
            "ImageSet": [
                {
                    "Region": "ap-guangzhou",
                    "ImageId": "img-evhmf3fy"
                }
            ],
            "RequestId": "71e69b56-32be-4412-ab45-49eded6a87be"
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

    Error Code Description
    FailedOperation.InvalidImageState The image is busy. Please try again later.
    ImageQuotaLimitExceeded The image quota has been exceeded.
    InvalidImageId.IncorrectState Invalid image status.
    InvalidImageId.Malformed Invalid image ID format.
    InvalidImageId.NotFound The image cannot be found.
    InvalidImageId.TooLarge The image size exceeds the limit.
    InvalidImageName.Duplicate The specified image name already exists.
    InvalidParameter.InstanceImageNotSupport This API does not support instance images.
    InvalidParameterValue.InvalidImageId The image does not support this operation.
    InvalidParameterValue.InvalidImageState The image has another ongoing task. Please check and try again later.
    InvalidParameterValue.InvalidRegion The Region ID is unavailable.
    InvalidParameterValue.LimitExceeded The number of parameter values exceeds the limit.
    InvalidRegion.NotFound The region cannot be found.
    InvalidRegion.Unavailable Currently this region does not support image synchronization.
    UnsupportedOperation.EncryptedImagesNotSupported Encrypted images are not supported.
    UnsupportedOperation.LocationImageNotSupported
    UnsupportedOperation.Region The region is unsupported.