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

com.aliyun.sdk.service.ecs20140526.models.DescribeImageFromFamilyResponseBody Maven / Gradle / Ivy

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

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel}
 *
 * 

DescribeImageFromFamilyResponseBody

*/ public class DescribeImageFromFamilyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Image") private Image image; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeImageFromFamilyResponseBody(Builder builder) { this.image = builder.image; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeImageFromFamilyResponseBody create() { return builder().build(); } /** * @return image */ public Image getImage() { return this.image; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Image image; private String requestId; /** *

The image information.

*/ public Builder image(Image image) { this.image = image; return this; } /** *

The ID of the request.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeImageFromFamilyResponseBody build() { return new DescribeImageFromFamilyResponseBody(this); } } /** * * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel} * *

DescribeImageFromFamilyResponseBody

*/ public static class DiskDeviceMapping extends TeaModel { @com.aliyun.core.annotation.NameInMap("Device") private String device; @com.aliyun.core.annotation.NameInMap("Format") private String format; @com.aliyun.core.annotation.NameInMap("ImportOSSBucket") private String importOSSBucket; @com.aliyun.core.annotation.NameInMap("ImportOSSObject") private String importOSSObject; @com.aliyun.core.annotation.NameInMap("Size") private String size; @com.aliyun.core.annotation.NameInMap("SnapshotId") private String snapshotId; @com.aliyun.core.annotation.NameInMap("Type") private String type; private DiskDeviceMapping(Builder builder) { this.device = builder.device; this.format = builder.format; this.importOSSBucket = builder.importOSSBucket; this.importOSSObject = builder.importOSSObject; this.size = builder.size; this.snapshotId = builder.snapshotId; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DiskDeviceMapping create() { return builder().build(); } /** * @return device */ public String getDevice() { return this.device; } /** * @return format */ public String getFormat() { return this.format; } /** * @return importOSSBucket */ public String getImportOSSBucket() { return this.importOSSBucket; } /** * @return importOSSObject */ public String getImportOSSObject() { return this.importOSSObject; } /** * @return size */ public String getSize() { return this.size; } /** * @return snapshotId */ public String getSnapshotId() { return this.snapshotId; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String device; private String format; private String importOSSBucket; private String importOSSObject; private String size; private String snapshotId; private String type; /** *

The device name of the disk. Example: /dev/xvdb.

*
*

This parameter will be removed in the future. We recommend that you use other parameters to ensure future compatibility.

*
* * example: *

/dev/xvdb

*/ public Builder device(String device) { this.device = device; return this; } /** *

The format of the image.

* * example: *

qcow2

*/ public Builder format(String format) { this.format = format; return this; } /** *

The OSS bucket that contains the imported image file.

* * example: *

testEcsImport

*/ public Builder importOSSBucket(String importOSSBucket) { this.importOSSBucket = importOSSBucket; return this; } /** *

The OSS object corresponding to the imported image file.

* * example: *

imageImport

*/ public Builder importOSSObject(String importOSSObject) { this.importOSSObject = importOSSObject; return this; } /** *

The size of the disk. Unit: GiB.

* * example: *

80

*/ public Builder size(String size) { this.size = size; return this; } /** *

The ID of the snapshot.

* * example: *

s-bp17ot2q7x72ggtw****

*/ public Builder snapshotId(String snapshotId) { this.snapshotId = snapshotId; return this; } /** *

The type of the image.

* * example: *

custom

*/ public Builder type(String type) { this.type = type; return this; } public DiskDeviceMapping build() { return new DiskDeviceMapping(this); } } } /** * * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel} * *

DescribeImageFromFamilyResponseBody

*/ public static class DiskDeviceMappings extends TeaModel { @com.aliyun.core.annotation.NameInMap("DiskDeviceMapping") private java.util.List < DiskDeviceMapping> diskDeviceMapping; private DiskDeviceMappings(Builder builder) { this.diskDeviceMapping = builder.diskDeviceMapping; } public static Builder builder() { return new Builder(); } public static DiskDeviceMappings create() { return builder().build(); } /** * @return diskDeviceMapping */ public java.util.List < DiskDeviceMapping> getDiskDeviceMapping() { return this.diskDeviceMapping; } public static final class Builder { private java.util.List < DiskDeviceMapping> diskDeviceMapping; /** * DiskDeviceMapping. */ public Builder diskDeviceMapping(java.util.List < DiskDeviceMapping> diskDeviceMapping) { this.diskDeviceMapping = diskDeviceMapping; return this; } public DiskDeviceMappings build() { return new DiskDeviceMappings(this); } } } /** * * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel} * *

DescribeImageFromFamilyResponseBody

*/ public static class Tag extends TeaModel { @com.aliyun.core.annotation.NameInMap("TagKey") private String tagKey; @com.aliyun.core.annotation.NameInMap("TagValue") private String tagValue; private Tag(Builder builder) { this.tagKey = builder.tagKey; this.tagValue = builder.tagValue; } public static Builder builder() { return new Builder(); } public static Tag create() { return builder().build(); } /** * @return tagKey */ public String getTagKey() { return this.tagKey; } /** * @return tagValue */ public String getTagValue() { return this.tagValue; } public static final class Builder { private String tagKey; private String tagValue; /** *

The tag key of the image.

* * example: *

TestKey

*/ public Builder tagKey(String tagKey) { this.tagKey = tagKey; return this; } /** *

The tag value of the image.

* * example: *

TestValue

*/ public Builder tagValue(String tagValue) { this.tagValue = tagValue; return this; } public Tag build() { return new Tag(this); } } } /** * * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel} * *

DescribeImageFromFamilyResponseBody

*/ public static class Tags extends TeaModel { @com.aliyun.core.annotation.NameInMap("Tag") private java.util.List < Tag> tag; private Tags(Builder builder) { this.tag = builder.tag; } public static Builder builder() { return new Builder(); } public static Tags create() { return builder().build(); } /** * @return tag */ public java.util.List < Tag> getTag() { return this.tag; } public static final class Builder { private java.util.List < Tag> tag; /** * Tag. */ public Builder tag(java.util.List < Tag> tag) { this.tag = tag; return this; } public Tags build() { return new Tags(this); } } } /** * * {@link DescribeImageFromFamilyResponseBody} extends {@link TeaModel} * *

DescribeImageFromFamilyResponseBody

*/ public static class Image extends TeaModel { @com.aliyun.core.annotation.NameInMap("Architecture") private String architecture; @com.aliyun.core.annotation.NameInMap("CreationTime") private String creationTime; @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("DiskDeviceMappings") private DiskDeviceMappings diskDeviceMappings; @com.aliyun.core.annotation.NameInMap("ImageFamily") private String imageFamily; @com.aliyun.core.annotation.NameInMap("ImageId") private String imageId; @com.aliyun.core.annotation.NameInMap("ImageName") private String imageName; @com.aliyun.core.annotation.NameInMap("ImageOwnerAlias") private String imageOwnerAlias; @com.aliyun.core.annotation.NameInMap("ImageVersion") private String imageVersion; @com.aliyun.core.annotation.NameInMap("IsCopied") private Boolean isCopied; @com.aliyun.core.annotation.NameInMap("IsSelfShared") private String isSelfShared; @com.aliyun.core.annotation.NameInMap("IsSubscribed") private Boolean isSubscribed; @com.aliyun.core.annotation.NameInMap("IsSupportCloudinit") private Boolean isSupportCloudinit; @com.aliyun.core.annotation.NameInMap("IsSupportIoOptimized") private Boolean isSupportIoOptimized; @com.aliyun.core.annotation.NameInMap("OSName") private String OSName; @com.aliyun.core.annotation.NameInMap("OSType") private String OSType; @com.aliyun.core.annotation.NameInMap("Platform") private String platform; @com.aliyun.core.annotation.NameInMap("ProductCode") private String productCode; @com.aliyun.core.annotation.NameInMap("Progress") private String progress; @com.aliyun.core.annotation.NameInMap("Size") private Integer size; @com.aliyun.core.annotation.NameInMap("Status") private String status; @com.aliyun.core.annotation.NameInMap("Tags") private Tags tags; @com.aliyun.core.annotation.NameInMap("Usage") private String usage; private Image(Builder builder) { this.architecture = builder.architecture; this.creationTime = builder.creationTime; this.description = builder.description; this.diskDeviceMappings = builder.diskDeviceMappings; this.imageFamily = builder.imageFamily; this.imageId = builder.imageId; this.imageName = builder.imageName; this.imageOwnerAlias = builder.imageOwnerAlias; this.imageVersion = builder.imageVersion; this.isCopied = builder.isCopied; this.isSelfShared = builder.isSelfShared; this.isSubscribed = builder.isSubscribed; this.isSupportCloudinit = builder.isSupportCloudinit; this.isSupportIoOptimized = builder.isSupportIoOptimized; this.OSName = builder.OSName; this.OSType = builder.OSType; this.platform = builder.platform; this.productCode = builder.productCode; this.progress = builder.progress; this.size = builder.size; this.status = builder.status; this.tags = builder.tags; this.usage = builder.usage; } public static Builder builder() { return new Builder(); } public static Image create() { return builder().build(); } /** * @return architecture */ public String getArchitecture() { return this.architecture; } /** * @return creationTime */ public String getCreationTime() { return this.creationTime; } /** * @return description */ public String getDescription() { return this.description; } /** * @return diskDeviceMappings */ public DiskDeviceMappings getDiskDeviceMappings() { return this.diskDeviceMappings; } /** * @return imageFamily */ public String getImageFamily() { return this.imageFamily; } /** * @return imageId */ public String getImageId() { return this.imageId; } /** * @return imageName */ public String getImageName() { return this.imageName; } /** * @return imageOwnerAlias */ public String getImageOwnerAlias() { return this.imageOwnerAlias; } /** * @return imageVersion */ public String getImageVersion() { return this.imageVersion; } /** * @return isCopied */ public Boolean getIsCopied() { return this.isCopied; } /** * @return isSelfShared */ public String getIsSelfShared() { return this.isSelfShared; } /** * @return isSubscribed */ public Boolean getIsSubscribed() { return this.isSubscribed; } /** * @return isSupportCloudinit */ public Boolean getIsSupportCloudinit() { return this.isSupportCloudinit; } /** * @return isSupportIoOptimized */ public Boolean getIsSupportIoOptimized() { return this.isSupportIoOptimized; } /** * @return OSName */ public String getOSName() { return this.OSName; } /** * @return OSType */ public String getOSType() { return this.OSType; } /** * @return platform */ public String getPlatform() { return this.platform; } /** * @return productCode */ public String getProductCode() { return this.productCode; } /** * @return progress */ public String getProgress() { return this.progress; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return status */ public String getStatus() { return this.status; } /** * @return tags */ public Tags getTags() { return this.tags; } /** * @return usage */ public String getUsage() { return this.usage; } public static final class Builder { private String architecture; private String creationTime; private String description; private DiskDeviceMappings diskDeviceMappings; private String imageFamily; private String imageId; private String imageName; private String imageOwnerAlias; private String imageVersion; private Boolean isCopied; private String isSelfShared; private Boolean isSubscribed; private Boolean isSupportCloudinit; private Boolean isSupportIoOptimized; private String OSName; private String OSType; private String platform; private String productCode; private String progress; private Integer size; private String status; private Tags tags; private String usage; /** *

The image architecture. Valid values:

*
    *
  • i386
  • *
  • x86_64
  • *
* * example: *

x86_64

*/ public Builder architecture(String architecture) { this.architecture = architecture; return this; } /** *

The time when the image was created.

* * example: *

2018-01-10T01:01:10Z

*/ public Builder creationTime(String creationTime) { this.creationTime = creationTime; return this; } /** *

The description of the image.

* * example: *

testDescription

*/ public Builder description(String description) { this.description = description; return this; } /** *

The mappings between the disks and snapshots under the image.

*/ public Builder diskDeviceMappings(DiskDeviceMappings diskDeviceMappings) { this.diskDeviceMappings = diskDeviceMappings; return this; } /** *

The name of the image family.

* * example: *

testImageFamily

*/ public Builder imageFamily(String imageFamily) { this.imageFamily = imageFamily; return this; } /** *

The ID of the image.

* * example: *

m-bp1g7004ksh0oeuc****

*/ public Builder imageId(String imageId) { this.imageId = imageId; return this; } /** *

The name of the image.

* * example: *

testImageName

*/ public Builder imageName(String imageName) { this.imageName = imageName; return this; } /** *

The alias of the image owner. Valid values:

*
    *
  • system: public images provided by Alibaba Cloud
  • *
  • self: your custom images
  • *
  • others: shared images from other Alibaba Cloud accounts
  • *
  • marketplace: Alibaba Cloud Marketplace images
  • *
* * example: *

self

*/ public Builder imageOwnerAlias(String imageOwnerAlias) { this.imageOwnerAlias = imageOwnerAlias; return this; } /** *

The version of the image.

* * example: *

2

*/ public Builder imageVersion(String imageVersion) { this.imageVersion = imageVersion; return this; } /** *

Indicates whether the image is a copy of another image.

* * example: *

false

*/ public Builder isCopied(Boolean isCopied) { this.isCopied = isCopied; return this; } /** *

Indicates whether the image has been shared to other Alibaba Cloud accounts.

* * example: *

true

*/ public Builder isSelfShared(String isSelfShared) { this.isSelfShared = isSelfShared; return this; } /** *

Indicates whether you have subscribed to the image corresponding to the specified product code.

* * example: *

false

*/ public Builder isSubscribed(Boolean isSubscribed) { this.isSubscribed = isSubscribed; return this; } /** *

Indicates whether the image supports cloud-init.

* * example: *

true

*/ public Builder isSupportCloudinit(Boolean isSupportCloudinit) { this.isSupportCloudinit = isSupportCloudinit; return this; } /** *

Indicates whether the image can be used on I/O optimized instances.

* * example: *

true

*/ public Builder isSupportIoOptimized(Boolean isSupportIoOptimized) { this.isSupportIoOptimized = isSupportIoOptimized; return this; } /** *

The name of the operating system.

* * example: *

Alibaba Cloud Linux 2.1903

*/ public Builder OSName(String OSName) { this.OSName = OSName; return this; } /** *

The type of the operating system. Valid values:

*
    *
  • windows
  • *
  • linux
  • *
* * example: *

linux

*/ public Builder OSType(String OSType) { this.OSType = OSType; return this; } /** *

The platform of the operating system.

* * example: *

Aliyun

*/ public Builder platform(String platform) { this.platform = platform; return this; } /** *

The product code of the Alibaba Cloud Marketplace image.

* * example: *

jxsc00****

*/ public Builder productCode(String productCode) { this.productCode = productCode; return this; } /** *

The image creation progress. Unit: percent (%).

* * example: *

100

*/ public Builder progress(String progress) { this.progress = progress; return this; } /** *

The size of the image. Unit: GiB.

* * example: *

80

*/ public Builder size(Integer size) { this.size = size; return this; } /** *

The status of the image. Valid values:

*
    *
  • UnAvailable: The image is unavailable.
  • *
  • Available: The image is available.
  • *
  • Creating: The image is being created.
  • *
  • CreateFailed: The image failed to be created.
  • *
* * example: *

Available

*/ public Builder status(String status) { this.status = status; return this; } /** *

An array that consists of Tag data.

*/ public Builder tags(Tags tags) { this.tags = tags; return this; } /** *

Indicates whether the image has been used to create ECS instances. Valid values:

*
    *
  • instance: The image has been used to create one or more ECS instances.
  • *
  • none: The image has not been used to create ECS instances.
  • *
* * example: *

none

*/ public Builder usage(String usage) { this.usage = usage; return this; } public Image build() { return new Image(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy