Show / Hide Table of Contents

Class CreateLicenseRecordDetails

The details about the new license record.

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

Properties

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"}}

DisplayName

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

License record name.

Remarks

Required

ExpirationDate

Declaration
[JsonProperty(PropertyName = "expirationDate")]
public DateTime? ExpirationDate { get; set; }
Property Value
Type Description
DateTime?

The license record end date in RFC 3339 date format. Example: 2018-09-12

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"}

IsPerpetual

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

Specifies if the license record term is perpertual.

Remarks

Required

IsUnlimited

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

Specifies if the license count is unlimited.

Remarks

Required

LicenseCount

Declaration
[JsonProperty(PropertyName = "licenseCount")]
public int? LicenseCount { get; set; }
Property Value
Type Description
int?

The number of license units added by a user in a license record. Default 1

ProductId

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

The license record product ID.

SupportEndDate

Declaration
[JsonProperty(PropertyName = "supportEndDate")]
public DateTime? SupportEndDate { get; set; }
Property Value
Type Description
DateTime?

The license record support end date in RFC 3339 date format. Example: 2018-09-12

In this article
Back to top