import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Agent Plugin resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets a plugin by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentPlugin = oci.cloudbridge.getAgentPlugin({ * agentId: testAgent.id, * pluginName: agentPluginPluginName, * }); * ``` */ export declare function getAgentPlugin(args: GetAgentPluginArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentPlugin. */ export interface GetAgentPluginArgs { /** * Unique Agent identifier path parameter. */ agentId: string; /** * Unique plugin identifier path parameter. */ pluginName: string; } /** * A collection of values returned by getAgentPlugin. */ export interface GetAgentPluginResult { /** * Agent identifier. */ readonly agentId: string; /** * The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * State to which the customer wants the plugin to move to. */ readonly desiredState: string; /** * The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; readonly id: string; /** * A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Plugin identifier, which can be renamed. */ readonly name: string; readonly pluginName: string; /** * Plugin version. */ readonly pluginVersion: string; /** * The current state of the plugin. */ readonly state: string; /** * The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The time when the Agent was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time when the Agent was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Agent Plugin resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets a plugin by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentPlugin = oci.cloudbridge.getAgentPlugin({ * agentId: testAgent.id, * pluginName: agentPluginPluginName, * }); * ``` */ export declare function getAgentPluginOutput(args: GetAgentPluginOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentPlugin. */ export interface GetAgentPluginOutputArgs { /** * Unique Agent identifier path parameter. */ agentId: pulumi.Input; /** * Unique plugin identifier path parameter. */ pluginName: pulumi.Input; } //# sourceMappingURL=getAgentPlugin.d.ts.map