Show / Hide Table of Contents

Class Configuration

Details of the compartment-specific configuration.

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

Properties

CompartmentId

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

The compartment OCID to which the configuration is specified.

Remarks

Required

EmailIds

Declaration
[Required(ErrorMessage = "EmailIds is required.")]
[JsonProperty(PropertyName = "emailIds")]
public List<string> EmailIds { get; set; }
Property Value
Type Description
List<string>

The list of associated configuration email IDs.

Remarks

Required

TimeCreated

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

The time the configuration was created. An RFC 3339-formatted datetime string.

TimeUpdated

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

The time the configuration was updated. An RFC 3339-formatted datetime string.

In this article
Back to top