Show / Hide Table of Contents

Class CreateManagementAgentInstallKeyDetails

The information about new Management Agent install Key.

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

Properties

AllowedKeyInstallCount

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

Total number of install for this keys

CompartmentId

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

Compartment Identifier

Remarks

Required

DisplayName

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

Management Agent install Key Name

Remarks

Required

IsUnlimited

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

If set to true, the install key has no expiration date or usage limit. Defaults to false

TimeExpires

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

date after which key would expire after creation

In this article
Back to top