/** * Oracle Cloud Migrations API * A description of the Oracle Cloud Migrations API. * OpenAPI spec version: 20220919 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * Type representing a fence agent. */ export interface OlvmAgent { /** * Fence agent address */ "address"?: string; /** * Free text containing comments about this object. */ "comment"?: string; /** * Specified whether the agent should be used concurrently or sequentially */ "isConcurrent"?: boolean; /** * Free text containing comments about this object. */ "description"?: string; /** * Specifies whether the options should be encrypted. */ "isEncryptOptions"?: boolean; /** * A unique identifier. */ "id"?: string; /** * A human-readable name in plain text */ "name"?: string; /** * The order of this agent if used with other agents. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "order"?: number; /** * Fence agent port. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "port"?: number; /** * Fence agent type. */ "type"?: string; /** * Fence agent user name. */ "username"?: string; } export declare namespace OlvmAgent { function getJsonObj(obj: OlvmAgent): object; function getDeserializedJsonObj(obj: OlvmAgent): object; }