Show / Hide Table of Contents

Class UpdateMachineImageDetails

Machine image details required to update a Image artifact.

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

Properties

ImageShapeCompatibilityEntries

Declaration
[JsonProperty(PropertyName = "imageShapeCompatibilityEntries")]
public List<ImageShapeCompatibility> ImageShapeCompatibilityEntries { get; set; }
Property Value
Type Description
List<ImageShapeCompatibility>

List of shape configurations supported by the image.

IsSnapshotAllowed

Declaration
[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.

SourceImageId

Declaration
[JsonProperty(PropertyName = "sourceImageId")]
public string SourceImageId { get; set; }
Property Value
Type Description
string

The OCID of source machine image.

Username

Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type Description
string

The username for machine image.

In this article
Back to top