Show / Hide Table of Contents

Class LicensingConfig

Configuration of the Operating System license.

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

Properties

LicenseType

Declaration
[JsonProperty(PropertyName = "licenseType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LicensingConfig.LicenseTypeEnum? LicenseType { get; set; }
Property Value
Type Description
LicensingConfig.LicenseTypeEnum?

License Type for the OS license.

  • OCI_PROVIDED - OCI provided license (e.g. metered $/OCPU-hour).
  • BRING_YOUR_OWN_LICENSE - Bring your own license.

OsVersion

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

The Operating System version of the license config.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LicensingConfig.TypeEnum? Type { get; set; }
Property Value
Type Description
LicensingConfig.TypeEnum?

Operating System type of the Configuration.

In this article
Back to top