1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. getJmsPlugins
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.Jms.getJmsPlugins

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    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:

    AgentId string
    The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
    AvailabilityStatus string
    Filter JmsPlugin with its availability status.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    Filters List<GetJmsPluginsFilter>
    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.
    TimeLastSeenLessThanOrEqualTo string
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    TimeRegisteredLessThanOrEqualTo string
    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.
    AvailabilityStatus string
    Filter JmsPlugin with its availability status.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    Filters []GetJmsPluginsFilter
    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.
    TimeLastSeenLessThanOrEqualTo string
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    TimeRegisteredLessThanOrEqualTo string
    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.
    availabilityStatus String
    Filter JmsPlugin with its availability status.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters List<GetPluginsFilter>
    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.
    timeLastSeenLessThanOrEqualTo String
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    timeRegisteredLessThanOrEqualTo String
    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.
    availabilityStatus string
    Filter JmsPlugin with its availability status.
    compartmentId string
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree boolean
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters GetJmsPluginsFilter[]
    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.
    timeLastSeenLessThanOrEqualTo string
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    timeRegisteredLessThanOrEqualTo string
    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_in_subtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters Sequence[jms.GetJmsPluginsFilter]
    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_seen_less_than_or_equal_to str
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    time_registered_less_than_or_equal_to str
    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.
    availabilityStatus String
    Filter JmsPlugin with its availability status.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    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.
    timeLastSeenLessThanOrEqualTo String
    If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).
    timeRegisteredLessThanOrEqualTo String
    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:

    JmsPluginCollections List<GetJmsPluginsJmsPluginCollection>
    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.
    AvailabilityStatus string
    The availability status.
    CompartmentId string
    The OMA/OCA agent's compartment OCID.
    CompartmentIdInSubtree bool
    Filters List<GetJmsPluginsFilter>
    FleetId string
    The OCID of the fleet.
    HostnameContains string
    Id string
    The OCID to identify this JmsPlugin.
    State string
    The lifecycle state.
    TimeLastSeenLessThanOrEqualTo string
    TimeRegisteredLessThanOrEqualTo string
    JmsPluginCollections []GetJmsPluginsJmsPluginCollection
    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.
    AvailabilityStatus string
    The availability status.
    CompartmentId string
    The OMA/OCA agent's compartment OCID.
    CompartmentIdInSubtree bool
    Filters []GetJmsPluginsFilter
    FleetId string
    The OCID of the fleet.
    HostnameContains string
    Id string
    The OCID to identify this JmsPlugin.
    State string
    The lifecycle state.
    TimeLastSeenLessThanOrEqualTo string
    TimeRegisteredLessThanOrEqualTo string
    jmsPluginCollections List<GetPluginsPluginCollection>
    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.
    availabilityStatus String
    The availability status.
    compartmentId String
    The OMA/OCA agent's compartment OCID.
    compartmentIdInSubtree Boolean
    filters List<GetPluginsFilter>
    fleetId String
    The OCID of the fleet.
    hostnameContains String
    id String
    The OCID to identify this JmsPlugin.
    state String
    The lifecycle state.
    timeLastSeenLessThanOrEqualTo String
    timeRegisteredLessThanOrEqualTo String
    jmsPluginCollections GetJmsPluginsJmsPluginCollection[]
    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.
    availabilityStatus string
    The availability status.
    compartmentId string
    The OMA/OCA agent's compartment OCID.
    compartmentIdInSubtree boolean
    filters GetJmsPluginsFilter[]
    fleetId string
    The OCID of the fleet.
    hostnameContains string
    id string
    The OCID to identify this JmsPlugin.
    state string
    The lifecycle state.
    timeLastSeenLessThanOrEqualTo string
    timeRegisteredLessThanOrEqualTo string
    jms_plugin_collections Sequence[jms.GetJmsPluginsJmsPluginCollection]
    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_in_subtree bool
    filters Sequence[jms.GetJmsPluginsFilter]
    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_seen_less_than_or_equal_to str
    time_registered_less_than_or_equal_to str
    jmsPluginCollections List<Property Map>
    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.
    availabilityStatus String
    The availability status.
    compartmentId String
    The OMA/OCA agent's compartment OCID.
    compartmentIdInSubtree Boolean
    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.
    timeLastSeenLessThanOrEqualTo String
    timeRegisteredLessThanOrEqualTo String

    Supporting Types

    GetJmsPluginsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetJmsPluginsJmsPluginCollection

    GetJmsPluginsJmsPluginCollectionItem

    AgentId string
    The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.
    AgentType string
    The agent type.
    AvailabilityStatus string
    Filter JmsPlugin with its availability status.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags 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.
    FreeformTags 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.
    SystemTags 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"}
    TimeLastSeen 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.
    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
    The agent type.
    AvailabilityStatus string
    Filter JmsPlugin with its availability status.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags 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.
    FreeformTags 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.
    SystemTags 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"}
    TimeLastSeen 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.
    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
    The agent type.
    availabilityStatus String
    Filter JmsPlugin with its availability status.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags 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.
    freeformTags 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.
    systemTags 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"}
    timeLastSeen 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.
    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
    The agent type.
    availabilityStatus string
    Filter JmsPlugin with its availability status.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[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.
    freeformTags {[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.
    systemTags {[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"}
    timeLastSeen 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.
    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
    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.
    defined_tags 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.
    freeform_tags 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.
    system_tags 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_seen str
    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
    The agent type.
    availabilityStatus String
    Filter JmsPlugin with its availability status.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags 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.
    freeformTags 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.
    systemTags 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"}
    timeLastSeen 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.
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi