Class MachineImageDetails
Machine image details.
Inherited Members
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class MachineImageDetails
Properties
ImageShapeCompatibilityEntries
Declaration
[Required(ErrorMessage = "ImageShapeCompatibilityEntries is required.")]
[JsonProperty(PropertyName = "imageShapeCompatibilityEntries")]
public List<ImageShapeCompatibility> ImageShapeCompatibilityEntries { get; set; }
Property Value
Type | Description |
---|---|
List<ImageShapeCompatibility> | List of shape configurations supported by the image. |
Remarks
Required
IsSnapshotAllowed
Declaration
[Required(ErrorMessage = "IsSnapshotAllowed is required.")]
[JsonProperty(PropertyName = "isSnapshotAllowed")]
public bool? IsSnapshotAllowed { get; set; }
Property Value
Type | Description |
---|---|
bool? | Identified if customer can take a snapshot of instance running on the machine image. |
Remarks
Required
SourceImageId
Declaration
[Required(ErrorMessage = "SourceImageId is required.")]
[JsonProperty(PropertyName = "sourceImageId")]
public string SourceImageId { get; set; }
Property Value
Type | Description |
---|---|
string | The source image ocid of the machine image. |
Remarks
Required
Username
Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string | The username for machine image. |
ValidationError
Declaration
[JsonProperty(PropertyName = "validationError")]
public string ValidationError { get; set; }
Property Value
Type | Description |
---|---|
string | Description of image validation errors. |
ValidationStatus
Declaration
[Required(ErrorMessage = "ValidationStatus is required.")]
[JsonProperty(PropertyName = "validationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ValidationStatus? ValidationStatus { get; set; }
Property Value
Type | Description |
---|---|
ValidationStatus? | Image validation status. |
Remarks
Required