import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Instance Agent Plugin resource in Oracle Cloud Infrastructure Compute Instance Agent service. * * Gets information about a specific Oracle Cloud Agent plugin on a compute instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstanceAgentPlugin = oci.computeinstanceagent.getInstanceAgentPlugin({ * compartmentId: compartmentId, * instanceagentId: instanceagent.id, * pluginName: instanceAgentPluginPluginName, * }); * ``` */ export declare function getInstanceAgentPlugin(args: GetInstanceAgentPluginArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstanceAgentPlugin. */ export interface GetInstanceAgentPluginArgs { /** * The ID of the compartment in which the instance resides */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ instanceagentId: string; /** * The name of the plugin. */ pluginName: string; } /** * A collection of values returned by getInstanceAgentPlugin. */ export interface GetInstanceAgentPluginResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly instanceagentId: string; /** * An optional message from the plugin. */ readonly message: string; /** * The plugin name. */ readonly name: string; readonly pluginName: string; /** * The plugin status. */ readonly status: string; /** * The last updated time of the plugin, in UTC. */ readonly timeLastUpdatedUtc: string; } /** * This data source provides details about a specific Instance Agent Plugin resource in Oracle Cloud Infrastructure Compute Instance Agent service. * * Gets information about a specific Oracle Cloud Agent plugin on a compute instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstanceAgentPlugin = oci.computeinstanceagent.getInstanceAgentPlugin({ * compartmentId: compartmentId, * instanceagentId: instanceagent.id, * pluginName: instanceAgentPluginPluginName, * }); * ``` */ export declare function getInstanceAgentPluginOutput(args: GetInstanceAgentPluginOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstanceAgentPlugin. */ export interface GetInstanceAgentPluginOutputArgs { /** * The ID of the compartment in which the instance resides */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ instanceagentId: pulumi.Input; /** * The name of the plugin. */ pluginName: pulumi.Input; } //# sourceMappingURL=getInstanceAgentPlugin.d.ts.map