oci.CloudBridge.Agent
Explore with Pulumi AI
This resource provides the Agent resource in Oracle Cloud Infrastructure Cloud Bridge service.
Creates an Agent.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAgent = new Oci.CloudBridge.Agent("testAgent", new()
{
AgentType = @var.Agent_agent_type,
AgentVersion = @var.Agent_agent_version,
CompartmentId = @var.Compartment_id,
DisplayName = @var.Agent_display_name,
EnvironmentId = oci_cloud_bridge_environment.Test_environment.Id,
OsVersion = @var.Agent_os_version,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudBridge"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := CloudBridge.NewAgent(ctx, "testAgent", &CloudBridge.AgentArgs{
AgentType: pulumi.Any(_var.Agent_agent_type),
AgentVersion: pulumi.Any(_var.Agent_agent_version),
CompartmentId: pulumi.Any(_var.Compartment_id),
DisplayName: pulumi.Any(_var.Agent_display_name),
EnvironmentId: pulumi.Any(oci_cloud_bridge_environment.Test_environment.Id),
OsVersion: pulumi.Any(_var.Agent_os_version),
DefinedTags: pulumi.AnyMap{
"Operations.CostCenter": pulumi.Any("42"),
},
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudBridge.Agent;
import com.pulumi.oci.CloudBridge.AgentArgs;
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 testAgent = new Agent("testAgent", AgentArgs.builder()
.agentType(var_.agent_agent_type())
.agentVersion(var_.agent_agent_version())
.compartmentId(var_.compartment_id())
.displayName(var_.agent_display_name())
.environmentId(oci_cloud_bridge_environment.test_environment().id())
.osVersion(var_.agent_os_version())
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
import pulumi
import pulumi_oci as oci
test_agent = oci.cloud_bridge.Agent("testAgent",
agent_type=var["agent_agent_type"],
agent_version=var["agent_agent_version"],
compartment_id=var["compartment_id"],
display_name=var["agent_display_name"],
environment_id=oci_cloud_bridge_environment["test_environment"]["id"],
os_version=var["agent_os_version"],
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
})
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAgent = new oci.cloudbridge.Agent("testAgent", {
agentType: _var.agent_agent_type,
agentVersion: _var.agent_agent_version,
compartmentId: _var.compartment_id,
displayName: _var.agent_display_name,
environmentId: oci_cloud_bridge_environment.test_environment.id,
osVersion: _var.agent_os_version,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
resources:
testAgent:
type: oci:CloudBridge:Agent
properties:
#Required
agentType: ${var.agent_agent_type}
agentVersion: ${var.agent_agent_version}
compartmentId: ${var.compartment_id}
displayName: ${var.agent_display_name}
environmentId: ${oci_cloud_bridge_environment.test_environment.id}
osVersion: ${var.agent_os_version}
#Optional
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create Agent Resource
new Agent(name: string, args: AgentArgs, opts?: CustomResourceOptions);
@overload
def Agent(resource_name: str,
opts: Optional[ResourceOptions] = None,
agent_type: Optional[str] = None,
agent_version: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
environment_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
os_version: Optional[str] = None)
@overload
def Agent(resource_name: str,
args: AgentArgs,
opts: Optional[ResourceOptions] = None)
func NewAgent(ctx *Context, name string, args AgentArgs, opts ...ResourceOption) (*Agent, error)
public Agent(string name, AgentArgs args, CustomResourceOptions? opts = null)
type: oci:CloudBridge:Agent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentArgs
- 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 AgentArgs
- 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 AgentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Agent 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 Agent resource accepts the following input properties:
- Agent
Type string Agent identifier.
- Agent
Version string Agent identifier.
- Compartment
Id string (Updatable) Compartment identifier.
- Display
Name string (Updatable) Agent identifier.
- Environment
Id string Environment identifier.
- Os
Version string OS version.
** 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
- Dictionary<string, object>
(Updatable) 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"}
- Dictionary<string, object>
(Updatable) 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"}
- Agent
Type string Agent identifier.
- Agent
Version string Agent identifier.
- Compartment
Id string (Updatable) Compartment identifier.
- Display
Name string (Updatable) Agent identifier.
- Environment
Id string Environment identifier.
- Os
Version string OS version.
** 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
- map[string]interface{}
(Updatable) 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"}
- map[string]interface{}
(Updatable) 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"}
- agent
Type String Agent identifier.
- agent
Version String Agent identifier.
- compartment
Id String (Updatable) Compartment identifier.
- display
Name String (Updatable) Agent identifier.
- environment
Id String Environment identifier.
- os
Version String OS version.
** 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
- Map<String,Object>
(Updatable) 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"}
- Map<String,Object>
(Updatable) 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"}
- agent
Type string Agent identifier.
- agent
Version string Agent identifier.
- compartment
Id string (Updatable) Compartment identifier.
- display
Name string (Updatable) Agent identifier.
- environment
Id string Environment identifier.
- os
Version string OS version.
** 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
- {[key: string]: any}
(Updatable) 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"}
- {[key: string]: any}
(Updatable) 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"}
- agent_
type str Agent identifier.
- agent_
version str Agent identifier.
- compartment_
id str (Updatable) Compartment identifier.
- display_
name str (Updatable) Agent identifier.
- environment_
id str Environment identifier.
- os_
version str OS version.
** 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
- Mapping[str, Any]
(Updatable) 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"}
- Mapping[str, Any]
(Updatable) 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"}
- agent
Type String Agent identifier.
- agent
Version String Agent identifier.
- compartment
Id String (Updatable) Compartment identifier.
- display
Name String (Updatable) Agent identifier.
- environment
Id String Environment identifier.
- os
Version String OS version.
** 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
- Map<Any>
(Updatable) 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"}
- Map<Any>
(Updatable) 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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the Agent resource produces the following output properties:
- Agent
Pub stringKey Resource principal public key.
- Heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Plugin
Lists List<AgentPlugin List> List of plugins associated with the agent.
- State string
The current state of the Agent.
- Dictionary<string, object>
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- Time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- Agent
Pub stringKey Resource principal public key.
- Heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Plugin
Lists []AgentPlugin List List of plugins associated with the agent.
- State string
The current state of the Agent.
- map[string]interface{}
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- Time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub StringKey Resource principal public key.
- heart
Beat StringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- plugin
Lists List<AgentPlugin List> List of plugins associated with the agent.
- state String
The current state of the Agent.
- Map<String,Object>
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 String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire StringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last StringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub stringKey Resource principal public key.
- heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- id string
The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- plugin
Lists AgentPlugin List[] List of plugins associated with the agent.
- state string
The current state of the Agent.
- {[key: string]: any}
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent_
pub_ strkey Resource principal public key.
- heart_
beat_ strstatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- 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.
- plugin_
lists AgentPlugin List] List of plugins associated with the agent.
- state str
The current state of the Agent.
- Mapping[str, Any]
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_
expire_ stragent_ key_ in_ ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time_
last_ strsync_ received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time_
updated str The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub StringKey Resource principal public key.
- heart
Beat StringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- plugin
Lists List<Property Map> List of plugins associated with the agent.
- state String
The current state of the Agent.
- Map<Any>
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 String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire StringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last StringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
Look up Existing Agent Resource
Get an existing Agent 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?: AgentState, opts?: CustomResourceOptions): Agent
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agent_pub_key: Optional[str] = None,
agent_type: Optional[str] = None,
agent_version: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
environment_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
heart_beat_status: Optional[str] = None,
lifecycle_details: Optional[str] = None,
os_version: Optional[str] = None,
plugin_lists: Optional[Sequence[_cloudbridge.AgentPluginListArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_expire_agent_key_in_ms: Optional[str] = None,
time_last_sync_received: Optional[str] = None,
time_updated: Optional[str] = None) -> Agent
func GetAgent(ctx *Context, name string, id IDInput, state *AgentState, opts ...ResourceOption) (*Agent, error)
public static Agent Get(string name, Input<string> id, AgentState? state, CustomResourceOptions? opts = null)
public static Agent get(String name, Output<String> id, AgentState 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
Pub stringKey Resource principal public key.
- Agent
Type string Agent identifier.
- Agent
Version string Agent identifier.
- Compartment
Id string (Updatable) Compartment identifier.
- Dictionary<string, object>
(Updatable) 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"}
- Display
Name string (Updatable) Agent identifier.
- Environment
Id string Environment identifier.
- Dictionary<string, object>
(Updatable) 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"}
- Heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- Lifecycle
Details 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.
- Os
Version string OS version.
** 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
Lists List<AgentPlugin List Args> List of plugins associated with the agent.
- State string
The current state of the Agent.
- Dictionary<string, object>
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- Time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- Agent
Pub stringKey Resource principal public key.
- Agent
Type string Agent identifier.
- Agent
Version string Agent identifier.
- Compartment
Id string (Updatable) Compartment identifier.
- map[string]interface{}
(Updatable) 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"}
- Display
Name string (Updatable) Agent identifier.
- Environment
Id string Environment identifier.
- map[string]interface{}
(Updatable) 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"}
- Heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- Lifecycle
Details 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.
- Os
Version string OS version.
** 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
Lists []AgentPlugin List Args List of plugins associated with the agent.
- State string
The current state of the Agent.
- map[string]interface{}
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- Time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub StringKey Resource principal public key.
- agent
Type String Agent identifier.
- agent
Version String Agent identifier.
- compartment
Id String (Updatable) Compartment identifier.
- Map<String,Object>
(Updatable) 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"}
- display
Name String (Updatable) Agent identifier.
- environment
Id String Environment identifier.
- Map<String,Object>
(Updatable) 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"}
- heart
Beat StringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- lifecycle
Details 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.
- os
Version String OS version.
** 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
Lists List<AgentPlugin List Args> List of plugins associated with the agent.
- state String
The current state of the Agent.
- Map<String,Object>
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 String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire StringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last StringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub stringKey Resource principal public key.
- agent
Type string Agent identifier.
- agent
Version string Agent identifier.
- compartment
Id string (Updatable) Compartment identifier.
- {[key: string]: any}
(Updatable) 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"}
- display
Name string (Updatable) Agent identifier.
- environment
Id string Environment identifier.
- {[key: string]: any}
(Updatable) 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"}
- heart
Beat stringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- lifecycle
Details 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.
- os
Version string OS version.
** 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
Lists AgentPlugin List Args[] List of plugins associated with the agent.
- state string
The current state of the Agent.
- {[key: string]: any}
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 string The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire stringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last stringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent_
pub_ strkey Resource principal public key.
- agent_
type str Agent identifier.
- agent_
version str Agent identifier.
- compartment_
id str (Updatable) Compartment identifier.
- Mapping[str, Any]
(Updatable) 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"}
- display_
name str (Updatable) Agent identifier.
- environment_
id str Environment identifier.
- Mapping[str, Any]
(Updatable) 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"}
- heart_
beat_ strstatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- 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.
- os_
version str OS version.
** 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_
lists AgentPlugin List Args] List of plugins associated with the agent.
- state str
The current state of the Agent.
- Mapping[str, Any]
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_
expire_ stragent_ key_ in_ ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time_
last_ strsync_ received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time_
updated str The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Pub StringKey Resource principal public key.
- agent
Type String Agent identifier.
- agent
Version String Agent identifier.
- compartment
Id String (Updatable) Compartment identifier.
- Map<Any>
(Updatable) 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"}
- display
Name String (Updatable) Agent identifier.
- environment
Id String Environment identifier.
- Map<Any>
(Updatable) 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"}
- heart
Beat StringStatus The current heartbeat status of the Agent based on its timeLastSyncReceived value.
- lifecycle
Details 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.
- os
Version String OS version.
** 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
Lists List<Property Map> List of plugins associated with the agent.
- state String
The current state of the Agent.
- Map<Any>
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 String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Expire StringAgent Key In Ms The time since epoch for when the public key will expire. An RFC3339 formatted datetime string.
- time
Last StringSync Received The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
Supporting Types
AgentPluginList
- Agent
Id string Agent identifier.
- Dictionary<string, object>
(Updatable) 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"}
- Dictionary<string, object>
(Updatable) 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 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.
- Plugin
Version string Plugin version.
- State string
The current state of the Agent.
- Time
Created string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- Agent
Id string Agent identifier.
- map[string]interface{}
(Updatable) 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"}
- map[string]interface{}
(Updatable) 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 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.
- Plugin
Version string Plugin version.
- State string
The current state of the Agent.
- Time
Created string The time when the Agent was created. An RFC3339 formatted datetime string.
- Time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Id String Agent identifier.
- Map<String,Object>
(Updatable) 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"}
- Map<String,Object>
(Updatable) 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 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.
- plugin
Version String Plugin version.
- state String
The current state of the Agent.
- time
Created String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent
Id string Agent identifier.
- {[key: string]: any}
(Updatable) 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"}
- {[key: string]: any}
(Updatable) 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 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.
- plugin
Version string Plugin version.
- state string
The current state of the Agent.
- time
Created string The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Updated string The time when the Agent was updated. An RFC3339 formatted datetime string.
- agent_
id str Agent identifier.
- Mapping[str, Any]
(Updatable) 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"}
- Mapping[str, Any]
(Updatable) 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_
version str Plugin version.
- state str
The current state of the Agent.
- 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.
- agent
Id String Agent identifier.
- Map<Any>
(Updatable) 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"}
- Map<Any>
(Updatable) 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 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.
- plugin
Version String Plugin version.
- state String
The current state of the Agent.
- time
Created String The time when the Agent was created. An RFC3339 formatted datetime string.
- time
Updated String The time when the Agent was updated. An RFC3339 formatted datetime string.
Import
Agents can be imported using the id
, e.g.
$ pulumi import oci:CloudBridge/agent:Agent test_agent "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.