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

oci.Jms.JmsPlugin

Explore with Pulumi AI

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

    This resource provides the Jms Plugin resource in Oracle Cloud Infrastructure Jms service.

    Registers an agent’s JmsPlugin, optionally attaching to an existing fleet of the tenancy. JmsPlugins registered fleet-less are created with lifecycle state INACTIVE. For the operation to be authorized, the agent must exist, and the authorized user requires JMS_PLUGIN_CREATE permission for the agent’s compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testJmsPlugin = new oci.jms.JmsPlugin("test_jms_plugin", {
        agentId: jmsPluginAgentId,
        compartmentId: compartmentId,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        fleetId: testFleet.id,
        freeformTags: {
            "bar-key": "value",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_jms_plugin = oci.jms.JmsPlugin("test_jms_plugin",
        agent_id=jms_plugin_agent_id,
        compartment_id=compartment_id,
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        fleet_id=test_fleet["id"],
        freeform_tags={
            "bar-key": "value",
        })
    
    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.NewJmsPlugin(ctx, "test_jms_plugin", &Jms.JmsPluginArgs{
    			AgentId:       pulumi.Any(jmsPluginAgentId),
    			CompartmentId: pulumi.Any(compartmentId),
    			DefinedTags: pulumi.StringMap{
    				"foo-namespace.bar-key": pulumi.String("value"),
    			},
    			FleetId: pulumi.Any(testFleet.Id),
    			FreeformTags: pulumi.StringMap{
    				"bar-key": pulumi.String("value"),
    			},
    		})
    		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 testJmsPlugin = new Oci.Jms.JmsPlugin("test_jms_plugin", new()
        {
            AgentId = jmsPluginAgentId,
            CompartmentId = compartmentId,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FleetId = testFleet.Id,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.JmsPlugin;
    import com.pulumi.oci.Jms.JmsPluginArgs;
    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) {
            var testJmsPlugin = new JmsPlugin("testJmsPlugin", JmsPluginArgs.builder()
                .agentId(jmsPluginAgentId)
                .compartmentId(compartmentId)
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .fleetId(testFleet.id())
                .freeformTags(Map.of("bar-key", "value"))
                .build());
    
        }
    }
    
    resources:
      testJmsPlugin:
        type: oci:Jms:JmsPlugin
        name: test_jms_plugin
        properties:
          agentId: ${jmsPluginAgentId}
          compartmentId: ${compartmentId}
          definedTags:
            foo-namespace.bar-key: value
          fleetId: ${testFleet.id}
          freeformTags:
            bar-key: value
    

    Create JmsPlugin Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new JmsPlugin(name: string, args: JmsPluginArgs, opts?: CustomResourceOptions);
    @overload
    def JmsPlugin(resource_name: str,
                  args: JmsPluginArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def JmsPlugin(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  agent_id: Optional[str] = None,
                  compartment_id: Optional[str] = None,
                  defined_tags: Optional[Mapping[str, str]] = None,
                  fleet_id: Optional[str] = None,
                  freeform_tags: Optional[Mapping[str, str]] = None)
    func NewJmsPlugin(ctx *Context, name string, args JmsPluginArgs, opts ...ResourceOption) (*JmsPlugin, error)
    public JmsPlugin(string name, JmsPluginArgs args, CustomResourceOptions? opts = null)
    public JmsPlugin(String name, JmsPluginArgs args)
    public JmsPlugin(String name, JmsPluginArgs args, CustomResourceOptions options)
    
    type: oci:Jms:JmsPlugin
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args JmsPluginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args JmsPluginArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args JmsPluginArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args JmsPluginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args JmsPluginArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var jmsPluginResource = new Oci.Jms.JmsPlugin("jmsPluginResource", new()
    {
        AgentId = "string",
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FleetId = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := Jms.NewJmsPlugin(ctx, "jmsPluginResource", &Jms.JmsPluginArgs{
    	AgentId:       pulumi.String("string"),
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FleetId: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var jmsPluginResource = new JmsPlugin("jmsPluginResource", JmsPluginArgs.builder()
        .agentId("string")
        .compartmentId("string")
        .definedTags(Map.of("string", "string"))
        .fleetId("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    jms_plugin_resource = oci.jms.JmsPlugin("jmsPluginResource",
        agent_id="string",
        compartment_id="string",
        defined_tags={
            "string": "string",
        },
        fleet_id="string",
        freeform_tags={
            "string": "string",
        })
    
    const jmsPluginResource = new oci.jms.JmsPlugin("jmsPluginResource", {
        agentId: "string",
        compartmentId: "string",
        definedTags: {
            string: "string",
        },
        fleetId: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:Jms:JmsPlugin
    properties:
        agentId: string
        compartmentId: string
        definedTags:
            string: string
        fleetId: string
        freeformTags:
            string: string
    

    JmsPlugin Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The JmsPlugin resource accepts the following input properties:

    AgentId string
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    CompartmentId string
    The OMA/OCA agent's compartment OCID.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    FreeformTags Dictionary<string, string>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AgentId string
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    CompartmentId string
    The OMA/OCA agent's compartment OCID.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    FreeformTags map[string]string

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId String
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    compartmentId String
    The OMA/OCA agent's compartment OCID.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags Map<String,String>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId string
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    compartmentId string
    The OMA/OCA agent's compartment OCID.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags {[key: string]: string}

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agent_id str
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    compartment_id str
    The OMA/OCA agent's compartment OCID.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeform_tags Mapping[str, str]

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId String
    The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
    compartmentId String
    The OMA/OCA agent's compartment OCID.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags Map<String>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the JmsPlugin resource produces the following output properties:

    AgentType string
    The agent type.
    AvailabilityStatus string
    The availability status.
    Hostname string
    The hostname of the agent.
    Id string
    The provider-assigned unique ID for this managed resource.
    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
    The 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.
    AgentType string
    The agent type.
    AvailabilityStatus string
    The availability status.
    Hostname string
    The hostname of the agent.
    Id string
    The provider-assigned unique ID for this managed resource.
    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
    The 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.
    agentType String
    The agent type.
    availabilityStatus String
    The availability status.
    hostname String
    The hostname of the agent.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    The 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.
    agentType string
    The agent type.
    availabilityStatus string
    The availability status.
    hostname string
    The hostname of the agent.
    id string
    The provider-assigned unique ID for this managed resource.
    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
    The 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_type str
    The agent type.
    availability_status str
    The availability status.
    hostname str
    The hostname of the agent.
    id str
    The provider-assigned unique ID for this managed resource.
    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
    The 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.
    agentType String
    The agent type.
    availabilityStatus String
    The availability status.
    hostname String
    The hostname of the agent.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    The 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.

    Look up Existing JmsPlugin Resource

    Get an existing JmsPlugin resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: JmsPluginState, opts?: CustomResourceOptions): JmsPlugin
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            agent_id: Optional[str] = None,
            agent_type: Optional[str] = None,
            availability_status: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            fleet_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            hostname: Optional[str] = None,
            os_architecture: Optional[str] = None,
            os_distribution: Optional[str] = None,
            os_family: Optional[str] = None,
            plugin_version: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_last_seen: Optional[str] = None,
            time_registered: Optional[str] = None) -> JmsPlugin
    func GetJmsPlugin(ctx *Context, name string, id IDInput, state *JmsPluginState, opts ...ResourceOption) (*JmsPlugin, error)
    public static JmsPlugin Get(string name, Input<string> id, JmsPluginState? state, CustomResourceOptions? opts = null)
    public static JmsPlugin get(String name, Output<String> id, JmsPluginState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    FreeformTags Dictionary<string, string>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Hostname string
    The hostname of the agent.
    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
    The 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 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.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    FreeformTags map[string]string

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Hostname string
    The hostname of the agent.
    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
    The 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 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.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags Map<String,String>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    hostname String
    The hostname of the agent.
    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
    The 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 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.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags {[key: string]: string}

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    hostname string
    The hostname of the agent.
    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
    The 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 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.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeform_tags Mapping[str, str]

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    hostname str
    The hostname of the agent.
    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
    The 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 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.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) The OCID of the fleet.
    freeformTags Map<String>

    (Updatable) 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.)

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    hostname String
    The hostname of the agent.
    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
    The 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.

    Import

    JmsPlugins can be imported using the id, e.g.

    $ pulumi import oci:Jms/jmsPlugin:JmsPlugin test_jms_plugin "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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