1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudBridge
  5. AgentPlugin
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.CloudBridge.AgentPlugin

Explore with Pulumi AI

This resource provides the Agent Plugin resource in Oracle Cloud Infrastructure Cloud Bridge service.

Updates the plugin.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAgentPlugin = new oci.cloudbridge.AgentPlugin("test_agent_plugin", {
    agentId: testAgent.id,
    pluginName: agentPluginPluginName,
    desiredState: agentPluginDesiredState,
});
Copy
import pulumi
import pulumi_oci as oci

test_agent_plugin = oci.cloud_bridge.AgentPlugin("test_agent_plugin",
    agent_id=test_agent["id"],
    plugin_name=agent_plugin_plugin_name,
    desired_state=agent_plugin_desired_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/cloudbridge"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudbridge.NewAgentPlugin(ctx, "test_agent_plugin", &cloudbridge.AgentPluginArgs{
			AgentId:      pulumi.Any(testAgent.Id),
			PluginName:   pulumi.Any(agentPluginPluginName),
			DesiredState: pulumi.Any(agentPluginDesiredState),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAgentPlugin = new Oci.CloudBridge.AgentPlugin("test_agent_plugin", new()
    {
        AgentId = testAgent.Id,
        PluginName = agentPluginPluginName,
        DesiredState = agentPluginDesiredState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudBridge.AgentPlugin;
import com.pulumi.oci.CloudBridge.AgentPluginArgs;
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 testAgentPlugin = new AgentPlugin("testAgentPlugin", AgentPluginArgs.builder()
            .agentId(testAgent.id())
            .pluginName(agentPluginPluginName)
            .desiredState(agentPluginDesiredState)
            .build());

    }
}
Copy
resources:
  testAgentPlugin:
    type: oci:CloudBridge:AgentPlugin
    name: test_agent_plugin
    properties:
      agentId: ${testAgent.id}
      pluginName: ${agentPluginPluginName}
      desiredState: ${agentPluginDesiredState}
Copy

Create AgentPlugin Resource

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

Constructor syntax

new AgentPlugin(name: string, args: AgentPluginArgs, opts?: CustomResourceOptions);
@overload
def AgentPlugin(resource_name: str,
                args: AgentPluginArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def AgentPlugin(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                agent_id: Optional[str] = None,
                plugin_name: Optional[str] = None,
                desired_state: Optional[str] = None)
func NewAgentPlugin(ctx *Context, name string, args AgentPluginArgs, opts ...ResourceOption) (*AgentPlugin, error)
public AgentPlugin(string name, AgentPluginArgs args, CustomResourceOptions? opts = null)
public AgentPlugin(String name, AgentPluginArgs args)
public AgentPlugin(String name, AgentPluginArgs args, CustomResourceOptions options)
type: oci:CloudBridge:AgentPlugin
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AgentPluginArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AgentPluginArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AgentPluginArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AgentPluginArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AgentPluginArgs
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 agentPluginResource = new Oci.CloudBridge.AgentPlugin("agentPluginResource", new()
{
    AgentId = "string",
    PluginName = "string",
    DesiredState = "string",
});
Copy
example, err := CloudBridge.NewAgentPlugin(ctx, "agentPluginResource", &CloudBridge.AgentPluginArgs{
	AgentId:      pulumi.String("string"),
	PluginName:   pulumi.String("string"),
	DesiredState: pulumi.String("string"),
})
Copy
var agentPluginResource = new AgentPlugin("agentPluginResource", AgentPluginArgs.builder()
    .agentId("string")
    .pluginName("string")
    .desiredState("string")
    .build());
Copy
agent_plugin_resource = oci.cloud_bridge.AgentPlugin("agentPluginResource",
    agent_id="string",
    plugin_name="string",
    desired_state="string")
Copy
const agentPluginResource = new oci.cloudbridge.AgentPlugin("agentPluginResource", {
    agentId: "string",
    pluginName: "string",
    desiredState: "string",
});
Copy
type: oci:CloudBridge:AgentPlugin
properties:
    agentId: string
    desiredState: string
    pluginName: string
Copy

AgentPlugin Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AgentPlugin resource accepts the following input properties:

AgentId
This property is required.
Changes to this property will trigger replacement.
string
Unique Agent identifier path parameter.
PluginName
This property is required.
Changes to this property will trigger replacement.
string

Unique plugin identifier path parameter.

** 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

DesiredState string
(Updatable) State to which the customer wants the plugin to move to.
AgentId
This property is required.
Changes to this property will trigger replacement.
string
Unique Agent identifier path parameter.
PluginName
This property is required.
Changes to this property will trigger replacement.
string

Unique plugin identifier path parameter.

** 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

DesiredState string
(Updatable) State to which the customer wants the plugin to move to.
agentId
This property is required.
Changes to this property will trigger replacement.
String
Unique Agent identifier path parameter.
pluginName
This property is required.
Changes to this property will trigger replacement.
String

Unique plugin identifier path parameter.

** 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

desiredState String
(Updatable) State to which the customer wants the plugin to move to.
agentId
This property is required.
Changes to this property will trigger replacement.
string
Unique Agent identifier path parameter.
pluginName
This property is required.
Changes to this property will trigger replacement.
string

Unique plugin identifier path parameter.

** 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

desiredState string
(Updatable) State to which the customer wants the plugin to move to.
agent_id
This property is required.
Changes to this property will trigger replacement.
str
Unique Agent identifier path parameter.
plugin_name
This property is required.
Changes to this property will trigger replacement.
str

Unique plugin identifier path parameter.

** 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

desired_state str
(Updatable) State to which the customer wants the plugin to move to.
agentId
This property is required.
Changes to this property will trigger replacement.
String
Unique Agent identifier path parameter.
pluginName
This property is required.
Changes to this property will trigger replacement.
String

Unique plugin identifier path parameter.

** 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

desiredState String
(Updatable) State to which the customer wants the plugin to move to.

Outputs

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

DefinedTags Dictionary<string, string>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Dictionary<string, string>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
Name string
Plugin identifier, which can be renamed.
PluginVersion string
Plugin version.
State string
The current state of the plugin.
SystemTags Dictionary<string, string>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
TimeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
DefinedTags map[string]string
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags map[string]string
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
Name string
Plugin identifier, which can be renamed.
PluginVersion string
Plugin version.
State string
The current state of the plugin.
SystemTags map[string]string
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
TimeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
definedTags Map<String,String>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Map<String,String>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name String
Plugin identifier, which can be renamed.
pluginVersion String
Plugin version.
state String
The current state of the plugin.
systemTags Map<String,String>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated String
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Agent was updated. An RFC3339 formatted datetime string.
definedTags {[key: string]: string}
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags {[key: string]: string}
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name string
Plugin identifier, which can be renamed.
pluginVersion string
Plugin version.
state string
The current state of the plugin.
systemTags {[key: string]: string}
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
defined_tags Mapping[str, str]
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeform_tags Mapping[str, str]
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name str
Plugin identifier, which can be renamed.
plugin_version str
Plugin version.
state str
The current state of the plugin.
system_tags Mapping[str, str]
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
time_created str
The time when the Agent was created. An RFC3339 formatted datetime string.
time_updated str
The time when the Agent was updated. An RFC3339 formatted datetime string.
definedTags Map<String>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Map<String>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name String
Plugin identifier, which can be renamed.
pluginVersion String
Plugin version.
state String
The current state of the plugin.
systemTags Map<String>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated String
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Agent was updated. An RFC3339 formatted datetime string.

Look up Existing AgentPlugin Resource

Get an existing AgentPlugin 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?: AgentPluginState, opts?: CustomResourceOptions): AgentPlugin
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        agent_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        desired_state: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        name: Optional[str] = None,
        plugin_name: Optional[str] = None,
        plugin_version: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> AgentPlugin
func GetAgentPlugin(ctx *Context, name string, id IDInput, state *AgentPluginState, opts ...ResourceOption) (*AgentPlugin, error)
public static AgentPlugin Get(string name, Input<string> id, AgentPluginState? state, CustomResourceOptions? opts = null)
public static AgentPlugin get(String name, Output<String> id, AgentPluginState state, CustomResourceOptions options)
resources:  _:    type: oci:CloudBridge:AgentPlugin    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
Unique Agent identifier path parameter.
DefinedTags Dictionary<string, string>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DesiredState string
(Updatable) State to which the customer wants the plugin to move to.
FreeformTags Dictionary<string, string>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
Name string
Plugin identifier, which can be renamed.
PluginName Changes to this property will trigger replacement. string

Unique plugin identifier path parameter.

** 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

PluginVersion string
Plugin version.
State string
The current state of the plugin.
SystemTags Dictionary<string, string>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
TimeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
AgentId Changes to this property will trigger replacement. string
Unique Agent identifier path parameter.
DefinedTags map[string]string
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DesiredState string
(Updatable) State to which the customer wants the plugin to move to.
FreeformTags map[string]string
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
Name string
Plugin identifier, which can be renamed.
PluginName Changes to this property will trigger replacement. string

Unique plugin identifier path parameter.

** 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

PluginVersion string
Plugin version.
State string
The current state of the plugin.
SystemTags map[string]string
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
TimeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
TimeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
agentId Changes to this property will trigger replacement. String
Unique Agent identifier path parameter.
definedTags Map<String,String>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
desiredState String
(Updatable) State to which the customer wants the plugin to move to.
freeformTags Map<String,String>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name String
Plugin identifier, which can be renamed.
pluginName Changes to this property will trigger replacement. String

Unique plugin identifier path parameter.

** 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

pluginVersion String
Plugin version.
state String
The current state of the plugin.
systemTags Map<String,String>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated String
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Agent was updated. An RFC3339 formatted datetime string.
agentId Changes to this property will trigger replacement. string
Unique Agent identifier path parameter.
definedTags {[key: string]: string}
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
desiredState string
(Updatable) State to which the customer wants the plugin to move to.
freeformTags {[key: string]: string}
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
lifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name string
Plugin identifier, which can be renamed.
pluginName Changes to this property will trigger replacement. string

Unique plugin identifier path parameter.

** 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

pluginVersion string
Plugin version.
state string
The current state of the plugin.
systemTags {[key: string]: string}
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated string
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated string
The time when the Agent was updated. An RFC3339 formatted datetime string.
agent_id Changes to this property will trigger replacement. str
Unique Agent identifier path parameter.
defined_tags Mapping[str, str]
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
desired_state str
(Updatable) State to which the customer wants the plugin to move to.
freeform_tags Mapping[str, str]
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
lifecycle_details str
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name str
Plugin identifier, which can be renamed.
plugin_name Changes to this property will trigger replacement. str

Unique plugin identifier path parameter.

** 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

plugin_version str
Plugin version.
state str
The current state of the plugin.
system_tags Mapping[str, str]
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
time_created str
The time when the Agent was created. An RFC3339 formatted datetime string.
time_updated str
The time when the Agent was updated. An RFC3339 formatted datetime string.
agentId Changes to this property will trigger replacement. String
Unique Agent identifier path parameter.
definedTags Map<String>
The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
desiredState String
(Updatable) State to which the customer wants the plugin to move to.
freeformTags Map<String>
The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
name String
Plugin identifier, which can be renamed.
pluginName Changes to this property will trigger replacement. String

Unique plugin identifier path parameter.

** 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

pluginVersion String
Plugin version.
state String
The current state of the plugin.
systemTags Map<String>
The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
timeCreated String
The time when the Agent was created. An RFC3339 formatted datetime string.
timeUpdated String
The time when the Agent was updated. An RFC3339 formatted datetime string.

Import

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

$ pulumi import oci:CloudBridge/agentPlugin:AgentPlugin test_agent_plugin "agents/{agentId}/plugins/{pluginName}"
Copy

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.