oci.Jms.JmsPlugin
Explore with Pulumi AI
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:
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- 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). - Fleet
Id string - (Updatable) The OCID of the fleet.
- 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
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- 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). - Fleet
Id string - (Updatable) The OCID of the fleet.
- 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
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- 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). - fleet
Id String - (Updatable) The OCID of the fleet.
- 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
- agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- compartment
Id string - The OMA/OCA agent's compartment OCID.
- {[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). - fleet
Id string - (Updatable) The OCID of the fleet.
- {[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.
- 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.
- 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
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- 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). - fleet
Id String - (Updatable) The OCID of the fleet.
- 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:
- Agent
Type string - The agent type.
- Availability
Status string - The availability status.
- Hostname string
- The hostname of the agent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- The lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- Time
Registered string - The date and time the plugin was registered.
- Agent
Type string - The agent type.
- Availability
Status string - The availability status.
- Hostname string
- The hostname of the agent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- The lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- Time
Registered string - The date and time the plugin was registered.
- agent
Type String - The agent type.
- availability
Status String - The availability status.
- hostname String
- The hostname of the agent.
- id String
- The provider-assigned unique ID for this managed resource.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- The lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered String - The date and time the plugin was registered.
- agent
Type string - The agent type.
- availability
Status string - The availability status.
- hostname string
- The hostname of the agent.
- id string
- The provider-assigned unique ID for this managed resource.
- os
Architecture string - The architecture of the operating system of the plugin.
- os
Distribution string - The distribution of the operating system of the plugin.
- os
Family string - The operating system family for the plugin.
- plugin
Version string - The version of the plugin.
- state string
- The lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered string - The date and time the plugin was registered.
- agent_
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.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
last_ strseen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time_
registered str - The date and time the plugin was registered.
- agent
Type String - The agent type.
- availability
Status String - The availability status.
- hostname String
- The hostname of the agent.
- id String
- The provider-assigned unique ID for this managed resource.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- The lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered String - The date and time the plugin was registered.
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.
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Agent
Type string - The agent type.
- Availability
Status string - The availability status.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- 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). - Fleet
Id string - (Updatable) The OCID of the fleet.
- 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.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- The lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- Time
Registered string - The date and time the plugin was registered.
- Agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- Agent
Type string - The agent type.
- Availability
Status string - The availability status.
- Compartment
Id string - The OMA/OCA agent's compartment OCID.
- 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). - Fleet
Id string - (Updatable) The OCID of the fleet.
- 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.
- Os
Architecture string - The architecture of the operating system of the plugin.
- Os
Distribution string - The distribution of the operating system of the plugin.
- Os
Family string - The operating system family for the plugin.
- Plugin
Version string - The version of the plugin.
- State string
- The lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- Time
Registered string - The date and time the plugin was registered.
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agent
Type String - The agent type.
- availability
Status String - The availability status.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- 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). - fleet
Id String - (Updatable) The OCID of the fleet.
- 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.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- The lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered String - The date and time the plugin was registered.
- agent
Id string - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agent
Type string - The agent type.
- availability
Status string - The availability status.
- compartment
Id string - The OMA/OCA agent's compartment OCID.
- {[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). - fleet
Id string - (Updatable) The OCID of the fleet.
- {[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.
- os
Architecture string - The architecture of the operating system of the plugin.
- os
Distribution string - The distribution of the operating system of the plugin.
- os
Family string - The operating system family for the plugin.
- plugin
Version string - The version of the plugin.
- state string
- The lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last stringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered string - The date and time the plugin was registered.
- agent_
id str - The 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.
- 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.
- 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.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
last_ strseen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time_
registered str - The date and time the plugin was registered.
- agent
Id String - The OCID of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
- agent
Type String - The agent type.
- availability
Status String - The availability status.
- compartment
Id String - The OMA/OCA agent's compartment OCID.
- 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). - fleet
Id String - (Updatable) The OCID of the fleet.
- 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.
- os
Architecture String - The architecture of the operating system of the plugin.
- os
Distribution String - The distribution of the operating system of the plugin.
- os
Family String - The operating system family for the plugin.
- plugin
Version String - The version of the plugin.
- state String
- The lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Last StringSeen - The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
- time
Registered String - The date and time the plugin was registered.
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.