/** * 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. */ /** * Summary information for a command. */ export interface InstanceAgentCommandSummary { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the command. */ "instanceAgentCommandId": string; /** * A user-friendly name. Does not have to be unique. */ "displayName"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the command. */ "compartmentId": string; /** * The date and time the command was created, in the format defined by * [RFC3339](https://tools.ietf.org/html/rfc3339). * */ "timeCreated": Date; /** * The date and time the command was last updated, in the format defined by * [RFC3339](https://tools.ietf.org/html/rfc3339). * */ "timeUpdated": Date; /** * Whether a request was made to cancel the command. Canceling a command is a best-effort attempt. */ "isCanceled"?: boolean; } export declare namespace InstanceAgentCommandSummary { function getJsonObj(obj: InstanceAgentCommandSummary): object; function getDeserializedJsonObj(obj: InstanceAgentCommandSummary): object; }