/** * 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. */ import * as model from "../model"; /** * Configuration options for the Oracle Cloud Agent software running on the instance. */ export interface LaunchInstanceAgentConfigDetails { /** * Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the * monitoring plugins. By default, the value is false (monitoring plugins are enabled). *

These are the monitoring plugins: Compute instance monitoring * and Custom logs monitoring. *

The monitoring plugins are controlled by this parameter and by the per-plugin * configuration in the {@code pluginsConfig} object. *

- If {@code isMonitoringDisabled} is true, all the monitoring plugins are disabled, regardless of * the per-plugin configuration. * - If {@code isMonitoringDisabled} is false, all the monitoring plugins are enabled. You * can optionally disable individual monitoring plugins by providing a value in the {@code pluginsConfig} * object. * */ "isMonitoringDisabled"?: boolean; /** * Whether Oracle Cloud Agent can run all the available management plugins. * By default, the value is false (management plugins are enabled). *

These are the management plugins: OS Management Service Agent and Compute instance * run command. *

The management plugins are controlled by this parameter and the per-plugin * configuration in the {@code pluginsConfig} object. *

- If {@code isManagementDisabled} is true, all the management plugins are disabled, regardless of * the per-plugin configuration. * - If {@code isManagementDisabled} is false, all the management plugins are enabled. You * can optionally disable individual management plugins by providing a value in the {@code pluginsConfig} * object. * */ "isManagementDisabled"?: boolean; /** * Whether Oracle Cloud Agent can run all the available plugins. * This includes the management and monitoring plugins. *

To get a list of available plugins, use the * {@link #listInstanceagentAvailablePlugins(ListInstanceagentAvailablePluginsRequest) listInstanceagentAvailablePlugins} * operation in the Oracle Cloud Agent API. For more information about the available plugins, see * [Managing Plugins with Oracle Cloud Agent](https://docs.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm). * */ "areAllPluginsDisabled"?: boolean; /** * The configuration of plugins associated with this instance. */ "pluginsConfig"?: Array; } export declare namespace LaunchInstanceAgentConfigDetails { function getJsonObj(obj: LaunchInstanceAgentConfigDetails): object; function getDeserializedJsonObj(obj: LaunchInstanceAgentConfigDetails): object; }