Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 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,
    agentType: jmsPluginAgentType,
    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,
    agent_type=jms_plugin_agent_type,
    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),
			AgentType:                       pulumi.StringRef(jmsPluginAgentType),
			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,
        AgentType = jmsPluginAgentType,
        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)
            .agentType(jmsPluginAgentType)
            .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}
        agentType: ${jmsPluginAgentType}
        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,
                    agent_type: Optional[str] = None,
                    availability_status: Optional[str] = None,
                    compartment_id: Optional[str] = None,
                    compartment_id_in_subtree: Optional[bool] = None,
                    filters: Optional[Sequence[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,
                    agent_type: 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[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)
public static Output<GetJmsPluginsResult> getJmsPlugins(GetJmsPluginsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Jms/getJmsPlugins:getJmsPlugins
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AgentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- AgentType string
- Filter JmsPlugin with agent type.
- AvailabilityStatus string
- Filter JmsPlugin with its availability status.
- CompartmentId string
- The OCID of the compartment in which to list resources.
- CompartmentId boolIn Subtree 
- Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- Filters
List<GetJms Plugins Filter> 
- FleetId string
- The ID of the Fleet.
- HostnameContains 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.
- TimeLast stringSeen Less Than Or Equal To 
- If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- TimeRegistered stringLess Than Or Equal To 
- If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- AgentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- AgentType string
- Filter JmsPlugin with agent type.
- AvailabilityStatus string
- Filter JmsPlugin with its availability status.
- CompartmentId string
- The OCID of the compartment in which to list resources.
- CompartmentId boolIn Subtree 
- Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- Filters
[]GetJms Plugins Filter 
- FleetId string
- The ID of the Fleet.
- HostnameContains 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.
- TimeLast stringSeen Less Than Or Equal To 
- If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- TimeRegistered stringLess Than Or Equal To 
- If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agentId String
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType String
- Filter JmsPlugin with agent type.
- availabilityStatus String
- Filter JmsPlugin with its availability status.
- compartmentId String
- The OCID of the compartment in which to list resources.
- compartmentId BooleanIn Subtree 
- Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters
List<GetPlugins Filter> 
- fleetId String
- The ID of the Fleet.
- hostnameContains 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.
- timeLast StringSeen Less Than Or Equal To 
- If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- timeRegistered StringLess Than Or Equal To 
- If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).
- agentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType string
- Filter JmsPlugin with agent type.
- availabilityStatus string
- Filter JmsPlugin with its availability status.
- compartmentId string
- The OCID of the compartment in which to list resources.
- compartmentId booleanIn Subtree 
- Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
- filters
GetJms Plugins Filter[] 
- fleetId string
- The ID of the Fleet.
- hostnameContains 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.
- timeLast stringSeen Less Than Or Equal To 
- If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- timeRegistered 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.
- agent_type str
- Filter JmsPlugin with agent type.
- 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[GetJms 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).
- agentId String
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType String
- Filter JmsPlugin with agent type.
- availabilityStatus String
- Filter JmsPlugin with its availability status.
- compartmentId String
- The OCID of the compartment in which to list resources.
- compartmentId 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>
- fleetId String
- The ID of the Fleet.
- hostnameContains 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.
- timeLast StringSeen Less Than Or Equal To 
- If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
- timeRegistered 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:
- JmsPlugin List<GetCollections Jms Plugins Jms Plugin Collection> 
- The list of jms_plugin_collection.
- AgentId string
- The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- AgentType string
- The agent type.
- AvailabilityStatus string
- The availability status.
- CompartmentId string
- The OMA/OCA agent's compartment OCID.
- CompartmentId boolIn Subtree 
- Filters
List<GetJms Plugins Filter> 
- FleetId string
- The OCID of the fleet.
- HostnameContains string
- Id string
- The OCID to identify this JmsPlugin.
- State string
- The lifecycle state.
- TimeLast stringSeen Less Than Or Equal To 
- TimeRegistered stringLess Than Or Equal To 
- JmsPlugin []GetCollections Jms Plugins Jms Plugin Collection 
- The list of jms_plugin_collection.
- AgentId string
- The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- AgentType string
- The agent type.
- AvailabilityStatus string
- The availability status.
- CompartmentId string
- The OMA/OCA agent's compartment OCID.
- CompartmentId boolIn Subtree 
- Filters
[]GetJms Plugins Filter 
- FleetId string
- The OCID of the fleet.
- HostnameContains string
- Id string
- The OCID to identify this JmsPlugin.
- State string
- The lifecycle state.
- TimeLast stringSeen Less Than Or Equal To 
- TimeRegistered stringLess Than Or Equal To 
- jmsPlugin List<GetCollections Plugins Plugin Collection> 
- The list of jms_plugin_collection.
- agentId String
- The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agentType String
- The agent type.
- availabilityStatus String
- The availability status.
- compartmentId String
- The OMA/OCA agent's compartment OCID.
- compartmentId BooleanIn Subtree 
- filters
List<GetPlugins Filter> 
- fleetId String
- The OCID of the fleet.
- hostnameContains String
- id String
- The OCID to identify this JmsPlugin.
- state String
- The lifecycle state.
- timeLast StringSeen Less Than Or Equal To 
- timeRegistered StringLess Than Or Equal To 
- jmsPlugin GetCollections Jms Plugins Jms Plugin Collection[] 
- The list of jms_plugin_collection.
- agentId string
- The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agentType string
- The agent type.
- availabilityStatus string
- The availability status.
- compartmentId string
- The OMA/OCA agent's compartment OCID.
- compartmentId booleanIn Subtree 
- filters
GetJms Plugins Filter[] 
- fleetId string
- The OCID of the fleet.
- hostnameContains string
- id string
- The OCID to identify this JmsPlugin.
- state string
- The lifecycle state.
- timeLast stringSeen Less Than Or Equal To 
- timeRegistered stringLess Than Or Equal To 
- jms_plugin_ Sequence[Getcollections 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.
- agent_type str
- The agent type.
- availability_status str
- The availability status.
- compartment_id str
- The OMA/OCA agent's compartment OCID.
- compartment_id_ boolin_ subtree 
- filters
Sequence[GetJms 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 
- jmsPlugin List<Property Map>Collections 
- The list of jms_plugin_collection.
- agentId String
- The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agentType String
- The agent type.
- availabilityStatus String
- The availability status.
- compartmentId String
- The OMA/OCA agent's compartment OCID.
- compartmentId BooleanIn Subtree 
- filters List<Property Map>
- fleetId String
- The OCID of the fleet.
- hostnameContains String
- id String
- The OCID to identify this JmsPlugin.
- state String
- The lifecycle state.
- timeLast StringSeen Less Than Or Equal To 
- timeRegistered StringLess Than Or Equal To 
Supporting Types
GetJmsPluginsFilter   
GetJmsPluginsJmsPluginCollection     
GetJmsPluginsJmsPluginCollectionItem      
- AgentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- AgentType string
- Filter JmsPlugin with agent type.
- AvailabilityStatus string
- Filter JmsPlugin with its availability status.
- CompartmentId 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).
- FleetId 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.
- OsArchitecture string
- The architecture of the operating system of the plugin.
- OsDistribution string
- The distribution of the operating system of the plugin.
- OsFamily string
- The operating system family for the plugin.
- PluginVersion 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"}
- TimeLast 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.
- TimeRegistered string
- The date and time the plugin was registered.
- AgentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- AgentType string
- Filter JmsPlugin with agent type.
- AvailabilityStatus string
- Filter JmsPlugin with its availability status.
- CompartmentId 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).
- FleetId 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.
- OsArchitecture string
- The architecture of the operating system of the plugin.
- OsDistribution string
- The distribution of the operating system of the plugin.
- OsFamily string
- The operating system family for the plugin.
- PluginVersion 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"}
- TimeLast 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.
- TimeRegistered string
- The date and time the plugin was registered.
- agentId String
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType String
- Filter JmsPlugin with agent type.
- availabilityStatus String
- Filter JmsPlugin with its availability status.
- compartmentId 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).
- fleetId 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.
- osArchitecture String
- The architecture of the operating system of the plugin.
- osDistribution String
- The distribution of the operating system of the plugin.
- osFamily String
- The operating system family for the plugin.
- pluginVersion 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"}
- timeLast 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.
- timeRegistered String
- The date and time the plugin was registered.
- agentId string
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType string
- Filter JmsPlugin with agent type.
- availabilityStatus string
- Filter JmsPlugin with its availability status.
- compartmentId 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).
- fleetId 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.
- osArchitecture string
- The architecture of the operating system of the plugin.
- osDistribution string
- The distribution of the operating system of the plugin.
- osFamily string
- The operating system family for the plugin.
- pluginVersion 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"}
- timeLast 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.
- timeRegistered 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
- Filter JmsPlugin with 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.
- agentId String
- The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
- agentType String
- Filter JmsPlugin with agent type.
- availabilityStatus String
- Filter JmsPlugin with its availability status.
- compartmentId 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).
- fleetId 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.
- osArchitecture String
- The architecture of the operating system of the plugin.
- osDistribution String
- The distribution of the operating system of the plugin.
- osFamily String
- The operating system family for the plugin.
- pluginVersion 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"}
- timeLast 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.
- timeRegistered 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 ociTerraform Provider.