Show / Hide Table of Contents

Class ByolRealmAllocationSummary

Represents a BYOL allocation for a specific region

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

Properties

AllocatedUnits

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

The quantity of licensed units that allocated to this region.

Remarks

Required

ByolId

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

The OCID of the BYOL resource from which this BYOL Allocation is derived.

Remarks

Required

CompartmentId

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

The OCID of the compartment that contains the BYOL Allocation.

Remarks

Required

Region

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

The region name for this allocation, in the format defined by Region Identifier. Example: ap-sydney-1

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

Remarks

Required

TimeUpdated

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

The date and time the BYOL Allocation was updated, in the format defined by RFC3339.

Remarks

Required

In this article
Back to top