Show / Hide Table of Contents

Class ImageShapeCompatibilitySummary

Summary information for a compatible image and shape.

Inheritance
object
ImageShapeCompatibilitySummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class ImageShapeCompatibilitySummary

Properties

ImageId

Declaration
[Required(ErrorMessage = "ImageId is required.")]
[JsonProperty(PropertyName = "imageId")]
public string ImageId { get; set; }
Property Value
Type Description
string

The image OCID.

Remarks

Required

MemoryConstraints

Declaration
[JsonProperty(PropertyName = "memoryConstraints")]
public ImageMemoryConstraints MemoryConstraints { get; set; }
Property Value
Type Description
ImageMemoryConstraints

OcpuConstraints

Declaration
[JsonProperty(PropertyName = "ocpuConstraints")]
public ImageOcpuConstraints OcpuConstraints { get; set; }
Property Value
Type Description
ImageOcpuConstraints

Shape

Declaration
[Required(ErrorMessage = "Shape is required.")]
[JsonProperty(PropertyName = "shape")]
public string Shape { get; set; }
Property Value
Type Description
string

The shape name.

Remarks

Required

In this article
Back to top