Show / Hide Table of Contents

Class GenerateAgentDeployScriptDetails

Attributes to generate agent deploy script for a Fleet.

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

Properties

InstallKeyId

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

The OCID of the install key for which to generate the script.

Remarks

Required

IsUserNameEnabled

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

Enable/disable user name collection on agent.

Remarks

Required

OsFamily

Declaration
[Required(ErrorMessage = "OsFamily is required.")]
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(StringEnumConverter))]
public OsFamily? OsFamily { get; set; }
Property Value
Type Description
OsFamily?

The operating system type for the script. Currently only 'LINUX' and 'WINDOWS' are supported.

Remarks

Required

In this article
Back to top