Show / Hide Table of Contents

Class ComputeImageCapabilitySchema

Compute Image Capability Schema is a set of capabilities that filter the compute global capability schema version for an image.

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

Properties

CompartmentId

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

The OCID of the compartment that contains the resource.

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

ComputeGlobalImageCapabilitySchemaVersionName

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

The name of the compute global image capability schema version

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

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

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Id

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

The id of the compute global image capability schema version

Remarks

Required

ImageId

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

The OCID of the image associated with this compute image capability schema

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 image capability schema was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

In this article
Back to top