/** * Oracle Cloud Agent API * API for the Oracle Cloud Agent software running on compute instances. Oracle Cloud Agent is a lightweight process that monitors and manages compute instances. * OpenAPI spec version: 20180530 * * * 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"; /** * Creation details for an Oracle Cloud Agent command. */ export interface CreateInstanceAgentCommandDetails { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the command in. */ "compartmentId": string; /** * The amount of time that Oracle Cloud Agent is given to run the command on the instance before timing * out. The timer starts when Oracle Cloud Agent starts the command. Zero means no timeout. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "executionTimeOutInSeconds": number; /** * A user-friendly name for the command. It does not have to be unique. * Avoid entering confidential information. *

Example: {@code Database Backup Script} * */ "displayName"?: string; /** * The target instance to run the command on. */ "target": model.InstanceAgentCommandTarget; /** * The contents of the command. */ "content": model.InstanceAgentCommandContent; } export declare namespace CreateInstanceAgentCommandDetails { function getJsonObj(obj: CreateInstanceAgentCommandDetails): object; function getDeserializedJsonObj(obj: CreateInstanceAgentCommandDetails): object; }