import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Jms Plugin resource in Oracle Cloud Infrastructure Jms service. * * Returns the JmsPlugin. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJmsPlugin = oci.jms.getJmsPlugin({ * jmsPluginId: testJmsPluginOciJmsJmsPlugin.id, * }); * ``` */ export declare function getJmsPlugin(args: GetJmsPluginArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJmsPlugin. */ export interface GetJmsPluginArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the JmsPlugin. */ jmsPluginId: string; } /** * A collection of values returned by getJmsPlugin. */ export interface GetJmsPluginResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA), the Oracle Cloud Agent (OCA), or the Oracle Container Management Agent (OCMA) instance where the JMS plugin is deployed. */ readonly agentId: string; /** * The agent type. */ readonly agentType: string; /** * The availability status. */ readonly availabilityStatus: string; /** * The OMA/OCA/OCMA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)). */ readonly definedTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet. */ readonly fleetId: string; /** * Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).) */ readonly freeformTags: { [key: string]: string; }; /** * The hostname of the agent. */ readonly hostname: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this JmsPlugin. */ readonly id: string; readonly jmsPluginId: string; /** * The architecture of the operating system of the plugin. */ readonly osArchitecture: string; /** * The distribution of the operating system of the plugin. */ readonly osDistribution: string; /** * The operating system family for the plugin. */ readonly osFamily: string; /** * The version of the plugin. */ readonly pluginVersion: string; /** * The lifecycle state. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period. */ readonly timeLastSeen: string; /** * The date and time the plugin was registered. */ readonly timeRegistered: string; } /** * This data source provides details about a specific Jms Plugin resource in Oracle Cloud Infrastructure Jms service. * * Returns the JmsPlugin. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJmsPlugin = oci.jms.getJmsPlugin({ * jmsPluginId: testJmsPluginOciJmsJmsPlugin.id, * }); * ``` */ export declare function getJmsPluginOutput(args: GetJmsPluginOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJmsPlugin. */ export interface GetJmsPluginOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the JmsPlugin. */ jmsPluginId: pulumi.Input; } //# sourceMappingURL=getJmsPlugin.d.ts.map