Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.Jms.getJmsPlugins
Explore with Pulumi AI
This data source provides the list of Jms Plugins in Oracle Cloud Infrastructure Jms service.
Lists the JmsPlugins.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testJmsPlugins = oci.Jms.getJmsPlugins({
agentId: jmsPluginAgentId,
availabilityStatus: jmsPluginAvailabilityStatus,
compartmentId: compartmentId,
compartmentIdInSubtree: jmsPluginCompartmentIdInSubtree,
fleetId: testFleet.id,
hostnameContains: jmsPluginHostnameContains,
id: jmsPluginId,
state: jmsPluginState,
timeLastSeenLessThanOrEqualTo: jmsPluginTimeLastSeenLessThanOrEqualTo,
timeRegisteredLessThanOrEqualTo: jmsPluginTimeRegisteredLessThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_jms_plugins = oci.Jms.get_jms_plugins(agent_id=jms_plugin_agent_id,
availability_status=jms_plugin_availability_status,
compartment_id=compartment_id,
compartment_id_in_subtree=jms_plugin_compartment_id_in_subtree,
fleet_id=test_fleet["id"],
hostname_contains=jms_plugin_hostname_contains,
id=jms_plugin_id,
state=jms_plugin_state,
time_last_seen_less_than_or_equal_to=jms_plugin_time_last_seen_less_than_or_equal_to,
time_registered_less_than_or_equal_to=jms_plugin_time_registered_less_than_or_equal_to)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Jms"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Jms.GetJmsPlugins(ctx, &jms.GetJmsPluginsArgs{
AgentId: pulumi.StringRef(jmsPluginAgentId),
AvailabilityStatus: pulumi.StringRef(jmsPluginAvailabilityStatus),
CompartmentId: pulumi.StringRef(compartmentId),
CompartmentIdInSubtree: pulumi.BoolRef(jmsPluginCompartmentIdInSubtree),
FleetId: pulumi.StringRef(testFleet.Id),
HostnameContains: pulumi.StringRef(jmsPluginHostnameContains),
Id: pulumi.StringRef(jmsPluginId),
State: pulumi.StringRef(jmsPluginState),
TimeLastSeenLessThanOrEqualTo: pulumi.StringRef(jmsPluginTimeLastSeenLessThanOrEqualTo),
TimeRegisteredLessThanOrEqualTo: pulumi.StringRef(jmsPluginTimeRegisteredLessThanOrEqualTo),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testJmsPlugins = Oci.Jms.GetJmsPlugins.Invoke(new()
{
AgentId = jmsPluginAgentId,
AvailabilityStatus = jmsPluginAvailabilityStatus,
CompartmentId = compartmentId,
CompartmentIdInSubtree = jmsPluginCompartmentIdInSubtree,
FleetId = testFleet.Id,
HostnameContains = jmsPluginHostnameContains,
Id = jmsPluginId,
State = jmsPluginState,
TimeLastSeenLessThanOrEqualTo = jmsPluginTimeLastSeenLessThanOrEqualTo,
TimeRegisteredLessThanOrEqualTo = jmsPluginTimeRegisteredLessThanOrEqualTo,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Jms.JmsFunctions;
import com.pulumi.oci.Jms.inputs.GetJmsPluginsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testJmsPlugins = JmsFunctions.getJmsPlugins(GetJmsPluginsArgs.builder()
.agentId(jmsPluginAgentId)
.availabilityStatus(jmsPluginAvailabilityStatus)
.compartmentId(compartmentId)
.compartmentIdInSubtree(jmsPluginCompartmentIdInSubtree)
.fleetId(testFleet.id())
.hostnameContains(jmsPluginHostnameContains)
.id(jmsPluginId)
.state(jmsPluginState)
.timeLastSeenLessThanOrEqualTo(jmsPluginTimeLastSeenLessThanOrEqualTo)
.timeRegisteredLessThanOrEqualTo(jmsPluginTimeRegisteredLessThanOrEqualTo)
.build());
}
}
variables:
testJmsPlugins:
fn::invoke:
Function: oci:Jms:getJmsPlugins
Arguments:
agentId: ${jmsPluginAgentId}
availabilityStatus: ${jmsPluginAvailabilityStatus}
compartmentId: ${compartmentId}
compartmentIdInSubtree: ${jmsPluginCompartmentIdInSubtree}
fleetId: ${testFleet.id}
hostnameContains: ${jmsPluginHostnameContains}
id: ${jmsPluginId}
state: ${jmsPluginState}
timeLastSeenLessThanOrEqualTo: ${jmsPluginTimeLastSeenLessThanOrEqualTo}
timeRegisteredLessThanOrEqualTo: ${jmsPluginTimeRegisteredLessThanOrEqualTo}
Using getJmsPlugins
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getJmsPlugins(args: GetJmsPluginsArgs, opts?: InvokeOptions): Promise<GetJmsPluginsResult>
function getJmsPluginsOutput(args: GetJmsPluginsOutputArgs, opts?: InvokeOptions): Output<GetJmsPluginsResult>
def get_jms_plugins(agent_id: Optional[str] = None,
availability_status: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
filters: Optional[Sequence[_jms.GetJmsPluginsFilter]] = None,
fleet_id: Optional[str] = None,
hostname_contains: Optional[str] = None,
id: Optional[str] = None,
state: Optional[str] = None,
time_last_seen_less_than_or_equal_to: Optional[str] = None,
time_registered_less_than_or_equal_to: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetJmsPluginsResult
def get_jms_plugins_output(agent_id: Optional[pulumi.Input[str]] = None,
availability_status: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.GetJmsPluginsFilterArgs]]]] = None,
fleet_id: Optional[pulumi.Input[str]] = None,
hostname_contains: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
time_last_seen_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_registered_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetJmsPluginsResult]
func GetJmsPlugins(ctx *Context, args *GetJmsPluginsArgs, opts ...InvokeOption) (*GetJmsPluginsResult, error)
func GetJmsPluginsOutput(ctx *Context, args *GetJmsPluginsOutputArgs, opts ...InvokeOption) GetJmsPluginsResultOutput
> Note: This function is named GetJmsPlugins
in the Go SDK.
public static class GetJmsPlugins
{
public static Task<GetJmsPluginsResult> InvokeAsync(GetJmsPluginsArgs args, InvokeOptions? opts = null)
public static Output<GetJmsPluginsResult> Invoke(GetJmsPluginsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetJmsPluginsResult> getJmsPlugins(GetJmsPluginsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Jms/getJmsPlugins:getJmsPlugins
arguments:
# arguments dictionary
The following arguments are supported:
- Agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- Availability
Status string - Filter JmsPlugin with its availability status.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Compartment
Id boolIn Subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- Filters
List<Get
Jms Plugins Filter> - Fleet
Id string - The ID of the Fleet.
- Hostname
Contains string - Filter the list with hostname contains the given value.
- Id string
- The OCID of the JmsPlugin.
- State string
- Filter JmsPlugin with its lifecycle state.
- Time
Last stringSeen Less Than Or Equal To - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- Time
Registered stringLess Than Or Equal To - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- Agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- Availability
Status string - Filter JmsPlugin with its availability status.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Compartment
Id boolIn Subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- Filters
[]Get
Jms Plugins Filter - Fleet
Id string - The ID of the Fleet.
- Hostname
Contains string - Filter the list with hostname contains the given value.
- Id string
- The OCID of the JmsPlugin.
- State string
- Filter JmsPlugin with its lifecycle state.
- Time
Last stringSeen Less Than Or Equal To - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- Time
Registered stringLess Than Or Equal To - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agent
Id String - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- availability
Status String - Filter JmsPlugin with its availability status.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Id BooleanIn Subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters
List<Get
Plugins Filter> - fleet
Id String - The ID of the Fleet.
- hostname
Contains String - Filter the list with hostname contains the given value.
- id String
- The OCID of the JmsPlugin.
- state String
- Filter JmsPlugin with its lifecycle state.
- time
Last StringSeen Less Than Or Equal To - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- time
Registered StringLess Than Or Equal To - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- availability
Status string - Filter JmsPlugin with its availability status.
- compartment
Id string - The OCID of the compartment in which to list resources.
- compartment
Id booleanIn Subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters
Get
Jms Plugins Filter[] - fleet
Id string - The ID of the Fleet.
- hostname
Contains string - Filter the list with hostname contains the given value.
- id string
- The OCID of the JmsPlugin.
- state string
- Filter JmsPlugin with its lifecycle state.
- time
Last stringSeen Less Than Or Equal To - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- time
Registered stringLess Than Or Equal To - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agent_
id str - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- availability_
status str - Filter JmsPlugin with its availability status.
- compartment_
id str - The OCID of the compartment in which to list resources.
- compartment_
id_ boolin_ subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters
Sequence[jms.
Get Jms Plugins Filter] - fleet_
id str - The ID of the Fleet.
- hostname_
contains str - Filter the list with hostname contains the given value.
- id str
- The OCID of the JmsPlugin.
- state str
- Filter JmsPlugin with its lifecycle state.
- time_
last_ strseen_ less_ than_ or_ equal_ to - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- time_
registered_ strless_ than_ or_ equal_ to - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agent
Id String - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- availability
Status String - Filter JmsPlugin with its availability status.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Id BooleanIn Subtree - Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters List<Property Map>
- fleet
Id String - The ID of the Fleet.
- hostname
Contains String - Filter the list with hostname contains the given value.
- id String
- The OCID of the JmsPlugin.
- state String
- Filter JmsPlugin with its lifecycle state.
- time
Last StringSeen Less Than Or Equal To - If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- time
Registered StringLess Than Or Equal To - If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
getJmsPlugins Result
The following output properties are available:
- Jms
Plugin List<GetCollections Jms Plugins Jms Plugin Collection> - The list of jms_plugin_collection.
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Availability
Status string - The availability status.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- Compartment
Id boolIn Subtree - Filters
List<Get
Jms Plugins Filter> - Fleet
Id string - The OCID of the fleet.
- Hostname
Contains string - Id string
- The OCID to identify this JmsPlugin.
- State string
- The lifecycle state.
- Time
Last stringSeen Less Than Or Equal To - Time
Registered stringLess Than Or Equal To
- Jms
Plugin []GetCollections Jms Plugins Jms Plugin Collection - The list of jms_plugin_collection.
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Availability
Status string - The availability status.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- Compartment
Id boolIn Subtree - Filters
[]Get
Jms Plugins Filter - Fleet
Id string - The OCID of the fleet.
- Hostname
Contains string - Id string
- The OCID to identify this JmsPlugin.
- State string
- The lifecycle state.
- Time
Last stringSeen Less Than Or Equal To - Time
Registered stringLess Than Or Equal To
- jms
Plugin List<GetCollections Plugins Plugin Collection> - The list of jms_plugin_collection.
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- availability
Status String - The availability status.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- compartment
Id BooleanIn Subtree - filters
List<Get
Plugins Filter> - fleet
Id String - The OCID of the fleet.
- hostname
Contains String - id String
- The OCID to identify this JmsPlugin.
- state String
- The lifecycle state.
- time
Last StringSeen Less Than Or Equal To - time
Registered StringLess Than Or Equal To
- jms
Plugin GetCollections Jms Plugins Jms Plugin Collection[] - The list of jms_plugin_collection.
- agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- availability
Status string - The availability status.
- compartment
Id string - The OMA/OCA agent's compartment OCID.
- compartment
Id booleanIn Subtree - filters
Get
Jms Plugins Filter[] - fleet
Id string - The OCID of the fleet.
- hostname
Contains string - id string
- The OCID to identify this JmsPlugin.
- state string
- The lifecycle state.
- time
Last stringSeen Less Than Or Equal To - time
Registered stringLess Than Or Equal To
- jms_
plugin_ Sequence[jms.collections Get Jms Plugins Jms Plugin Collection] - The list of jms_plugin_collection.
- agent_
id str - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- availability_
status str - The availability status.
- compartment_
id str - The OMA/OCA agent's compartment OCID.
- compartment_
id_ boolin_ subtree - filters
Sequence[jms.
Get Jms Plugins Filter] - fleet_
id str - The OCID of the fleet.
- hostname_
contains str - id str
- The OCID to identify this JmsPlugin.
- state str
- The lifecycle state.
- time_
last_ strseen_ less_ than_ or_ equal_ to - time_
registered_ strless_ than_ or_ equal_ to
- jms
Plugin List<Property Map>Collections - The list of jms_plugin_collection.
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- availability
Status String - The availability status.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- compartment
Id BooleanIn Subtree - filters List<Property Map>
- fleet
Id String - The OCID of the fleet.
- hostname
Contains String - id String
- The OCID to identify this JmsPlugin.
- state String
- The lifecycle state.
- time
Last StringSeen Less Than Or Equal To - time
Registered StringLess Than Or Equal To
Supporting Types
GetJmsPluginsFilter
GetJmsPluginsJmsPluginCollection
GetJmsPluginsJmsPluginCollectionItem
- Agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- Agent
Type string - The agent type.
- Availability
Status string - Filter JmsPlugin with its availability status.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, 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). - Fleet
Id string - The ID of the Fleet.
- Dictionary<string, 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.) - Hostname string
- The hostname of the agent.
- Id string
- The OCID of the JmsPlugin.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- Filter JmsPlugin with its lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - 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.
- Time
Registered string - The date and time the plugin was registered.
- Agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- Agent
Type string - The agent type.
- Availability
Status string - Filter JmsPlugin with its availability status.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- map[string]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). - Fleet
Id string - The ID of the Fleet.
- map[string]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.) - Hostname string
- The hostname of the agent.
- Id string
- The OCID of the JmsPlugin.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- Filter JmsPlugin with its lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - 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.
- Time
Registered string - The date and time the plugin was registered.
- agent
Id String - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agent
Type String - The agent type.
- availability
Status String - Filter JmsPlugin with its availability status.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String,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). - fleet
Id String - The ID of the Fleet.
- Map<String,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.) - hostname String
- The hostname of the agent.
- id String
- The OCID of the JmsPlugin.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- Filter JmsPlugin with its lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - 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.
- time
Registered String - The date and time the plugin was registered.
- agent
Id string - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agent
Type string - The agent type.
- availability
Status string - Filter JmsPlugin with its availability status.
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[key: string]: 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). - fleet
Id string - The ID of the Fleet.
- {[key: string]: 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.) - hostname string
- The hostname of the agent.
- id string
- The OCID of the JmsPlugin.
- os
Architecture string - The architecture of the operating system of the plugin.
- os
Distribution string - The distribution of the operating system of the plugin.
- os
Family string - The operating system family for the plugin.
- plugin
Version string - The version of the plugin.
- state string
- Filter JmsPlugin with its lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last stringSeen - 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.
- time
Registered string - The date and time the plugin was registered.
- agent_
id str - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agent_
type str - The agent type.
- availability_
status str - Filter JmsPlugin with its availability status.
- compartment_
id str - The OCID of the compartment in which to list resources.
- Mapping[str, str]
- 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). - fleet_
id str - The ID of the Fleet.
- Mapping[str, str]
- 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.) - hostname str
- The hostname of the agent.
- id str
- The OCID of the JmsPlugin.
- os_
architecture str - The architecture of the operating system of the plugin.
- os_
distribution str - The distribution of the operating system of the plugin.
- os_
family str - The operating system family for the plugin.
- plugin_
version str - The version of the plugin.
- state str
- Filter JmsPlugin with its lifecycle state.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
last_ strseen - 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.
- time_
registered str - The date and time the plugin was registered.
- agent
Id String - The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agent
Type String - The agent type.
- availability
Status String - Filter JmsPlugin with its availability status.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<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). - fleet
Id String - The ID of the Fleet.
- Map<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.) - hostname String
- The hostname of the agent.
- id String
- The OCID of the JmsPlugin.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- Filter JmsPlugin with its lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - 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.
- time
Registered String - The date and time the plugin was registered.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.