![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.eds_aic20230930.models.CreateCustomImageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eds_aic20230930 Show documentation
Show all versions of eds_aic20230930 Show documentation
Alibaba Cloud eds-aic (20230930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eds_aic20230930.models;
import com.aliyun.tea.*;
public class CreateCustomImageRequest extends TeaModel {
@NameInMap("ClientToken")
public String clientToken;
/**
* example:
* create for cc5g group auth rules test
*/
@NameInMap("Description")
public String description;
/**
* This parameter is required.
*
* example:
* custom image name
*/
@NameInMap("ImageName")
public String imageName;
/**
* This parameter is required.
*
* example:
* acp-2zecay9ponatdc4m****
*/
@NameInMap("InstanceId")
public String instanceId;
public static CreateCustomImageRequest build(java.util.Map map) throws Exception {
CreateCustomImageRequest self = new CreateCustomImageRequest();
return TeaModel.build(map, self);
}
public CreateCustomImageRequest setClientToken(String clientToken) {
this.clientToken = clientToken;
return this;
}
public String getClientToken() {
return this.clientToken;
}
public CreateCustomImageRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateCustomImageRequest setImageName(String imageName) {
this.imageName = imageName;
return this;
}
public String getImageName() {
return this.imageName;
}
public CreateCustomImageRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy