Show / Hide Table of Contents

Class OlvmAgent

Type representing a fence agent.

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

Properties

Address

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

Fence agent address

Comment

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

Free text containing comments about this object.

Description

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

Free text containing comments about this object.

Id

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

A unique identifier.

IsConcurrent

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

Specified whether the agent should be used concurrently or sequentially

IsEncryptOptions

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

Specifies whether the options should be encrypted.

Name

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

A human-readable name in plain text

Order

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

The order of this agent if used with other agents.

Port

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

Fence agent port.

Type

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

Fence agent type.

Username

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

Fence agent user name.

In this article
Back to top