All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ens20171110.models.ExportImageRequest Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class ExportImageRequest extends TeaModel {
    /**
     * 

The ID of the image.

*

This parameter is required.

* * example: *

m-5ragaz3s74b7go8ks7jp9****

*/ @NameInMap("ImageId") public String imageId; /** *

The OSS bucket to which you want to export the image.

*

This parameter is required.

* * example: *

whxyl****

*/ @NameInMap("OSSBucket") public String OSSBucket; /** *

The prefix of the object as which you want to store the image in the OSS bucket. The prefix must be 1 to 30 characters in length and can contain digits and letters.

*/ @NameInMap("OSSPrefix") public String OSSPrefix; /** *

The region ID.

*

This parameter is required.

* * example: *

cn-beijing

*/ @NameInMap("OSSRegionId") public String OSSRegionId; /** *

The name of the Resource Access Management (RAM) role.

* * example: *

AliyunMNSLoggingRole

*/ @NameInMap("RoleName") public String roleName; public static ExportImageRequest build(java.util.Map map) throws Exception { ExportImageRequest self = new ExportImageRequest(); return TeaModel.build(map, self); } public ExportImageRequest setImageId(String imageId) { this.imageId = imageId; return this; } public String getImageId() { return this.imageId; } public ExportImageRequest setOSSBucket(String OSSBucket) { this.OSSBucket = OSSBucket; return this; } public String getOSSBucket() { return this.OSSBucket; } public ExportImageRequest setOSSPrefix(String OSSPrefix) { this.OSSPrefix = OSSPrefix; return this; } public String getOSSPrefix() { return this.OSSPrefix; } public ExportImageRequest setOSSRegionId(String OSSRegionId) { this.OSSRegionId = OSSRegionId; return this; } public String getOSSRegionId() { return this.OSSRegionId; } public ExportImageRequest setRoleName(String roleName) { this.roleName = roleName; return this; } public String getRoleName() { return this.roleName; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy