Show / Hide Table of Contents

Class CreateOccAvailabilityCatalogDetails

Details about the create request for the availability catalog.

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

Properties

Base64EncodedCatalogDetails

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

The base 64 encoded string corresponding to the catalog file contents.

Remarks

Required

CompartmentId

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

Since all resources are at tenancy level hence this will be the ocid of the tenancy where operation is to be performed.

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. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

Additional information about the availability catalog.

DisplayName

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

The display name of the availability catalog.

Remarks

Required

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

MetadataDetails

Declaration
[JsonProperty(PropertyName = "metadataDetails")]
public MetadataDetails MetadataDetails { get; set; }
Property Value
Type Description
MetadataDetails

Namespace

Declaration
[Required(ErrorMessage = "Namespace is required.")]
[JsonProperty(PropertyName = "namespace")]
[JsonConverter(typeof(StringEnumConverter))]
public Namespace? Namespace { get; set; }
Property Value
Type Description
Namespace?

The name of the OCI service in consideration. For example, Compute, Exadata, and so on.

Remarks

Required

OccCustomerGroupId

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

The OCID of the customer group.

Remarks

Required

In this article
Back to top