Show / Hide Table of Contents

Class ComputeGlobalImageCapabilitySchemaVersion

Compute Global Image Capability Schema Version is a set of all possible capabilities for a collection of images.

Inheritance
object
ComputeGlobalImageCapabilitySchemaVersion
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 ComputeGlobalImageCapabilitySchemaVersion

Properties

ComputeGlobalImageCapabilitySchemaId

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

The ocid of the compute global image capability schema

Remarks

Required

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

Name

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

The name of the compute global image capability schema version

Remarks

Required

SchemaData

Declaration
[Required(ErrorMessage = "SchemaData is required.")]
[JsonProperty(PropertyName = "schemaData")]
public Dictionary<string, ImageCapabilitySchemaDescriptor> SchemaData { get; set; }
Property Value
Type Description
Dictionary<string, ImageCapabilitySchemaDescriptor>

The map of each capability name to its ImageCapabilityDescriptor.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the compute global image capability schema version was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

In this article
Back to top