1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ManagementAgent
  5. ManagementAgent
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.ManagementAgent.ManagementAgent

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This resource provides the Management Agent resource in Oracle Cloud Infrastructure Management Agent service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagementAgent = new oci.managementagent.ManagementAgent("test_management_agent", {managedAgentId: testManagedAgent.id});
    
    import pulumi
    import pulumi_oci as oci
    
    test_management_agent = oci.management_agent.ManagementAgent("test_management_agent", managed_agent_id=test_managed_agent["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ManagementAgent"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ManagementAgent.NewManagementAgent(ctx, "test_management_agent", &ManagementAgent.ManagementAgentArgs{
    			ManagedAgentId: pulumi.Any(testManagedAgent.Id),
    		})
    		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 testManagementAgent = new Oci.ManagementAgent.ManagementAgent("test_management_agent", new()
        {
            ManagedAgentId = testManagedAgent.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ManagementAgent.ManagementAgent;
    import com.pulumi.oci.ManagementAgent.ManagementAgentArgs;
    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 testManagementAgent = new ManagementAgent("testManagementAgent", ManagementAgentArgs.builder()        
                .managedAgentId(testManagedAgent.id())
                .build());
    
        }
    }
    
    resources:
      testManagementAgent:
        type: oci:ManagementAgent:ManagementAgent
        name: test_management_agent
        properties:
          managedAgentId: ${testManagedAgent.id}
    

    Add plugin to Management Agent created via OCI Compute instance.

    Compute instance must have OCA Plugin “Management Agent” enabled

    Import

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

    $ pulumi import oci:ManagementAgent/managementAgent:ManagementAgent test_management_agent "id"
    

    Create ManagementAgent Resource

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

    Constructor syntax

    new ManagementAgent(name: string, args: ManagementAgentArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementAgent(resource_name: str,
                        args: ManagementAgentArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementAgent(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        managed_agent_id: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, Any]] = None,
                        deploy_plugins_ids: Optional[Sequence[str]] = None,
                        display_name: Optional[str] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = None)
    func NewManagementAgent(ctx *Context, name string, args ManagementAgentArgs, opts ...ResourceOption) (*ManagementAgent, error)
    public ManagementAgent(string name, ManagementAgentArgs args, CustomResourceOptions? opts = null)
    public ManagementAgent(String name, ManagementAgentArgs args)
    public ManagementAgent(String name, ManagementAgentArgs args, CustomResourceOptions options)
    
    type: oci:ManagementAgent:ManagementAgent
    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 ManagementAgentArgs
    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 ManagementAgentArgs
    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 ManagementAgentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementAgentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementAgentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var managementAgentResource = new Oci.ManagementAgent.ManagementAgent("managementAgentResource", new()
    {
        ManagedAgentId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        DeployPluginsIds = new[]
        {
            "string",
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := ManagementAgent.NewManagementAgent(ctx, "managementAgentResource", &ManagementAgent.ManagementAgentArgs{
    	ManagedAgentId: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	DeployPluginsIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var managementAgentResource = new ManagementAgent("managementAgentResource", ManagementAgentArgs.builder()        
        .managedAgentId("string")
        .definedTags(Map.of("string", "any"))
        .deployPluginsIds("string")
        .displayName("string")
        .freeformTags(Map.of("string", "any"))
        .build());
    
    management_agent_resource = oci.management_agent.ManagementAgent("managementAgentResource",
        managed_agent_id="string",
        defined_tags={
            "string": "any",
        },
        deploy_plugins_ids=["string"],
        display_name="string",
        freeform_tags={
            "string": "any",
        })
    
    const managementAgentResource = new oci.managementagent.ManagementAgent("managementAgentResource", {
        managedAgentId: "string",
        definedTags: {
            string: "any",
        },
        deployPluginsIds: ["string"],
        displayName: "string",
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:ManagementAgent:ManagementAgent
    properties:
        definedTags:
            string: any
        deployPluginsIds:
            - string
        displayName: string
        freeformTags:
            string: any
        managedAgentId: string
    

    ManagementAgent 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 ManagementAgent resource accepts the following input properties:

    ManagedAgentId string
    Unique Management Agent identifier
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployPluginsIds List<string>
    DisplayName string
    Management Agent Name
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ManagedAgentId string
    Unique Management Agent identifier
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployPluginsIds []string
    DisplayName string
    Management Agent Name
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managedAgentId String
    Unique Management Agent identifier
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds List<String>
    displayName String
    Management Agent Name
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managedAgentId string
    Unique Management Agent identifier
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds string[]
    displayName string
    Management Agent Name
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managed_agent_id str
    Unique Management Agent identifier
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deploy_plugins_ids Sequence[str]
    display_name str
    Management Agent Name
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managedAgentId String
    Unique Management Agent identifier
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds List<String>
    displayName String
    Management Agent Name
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Outputs

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

    AvailabilityStatus string
    CompartmentId string
    DataSourceLists List<ManagementAgentDataSourceList>
    DataSourceSummaryLists List<ManagementAgentDataSourceSummaryList>
    Host string
    Management Agent host machine name
    HostId string
    Host resource ocid
    Id string
    The provider-assigned unique ID for this managed resource.
    InstallKeyId string
    agent install key identifier
    InstallPath string
    Path where Management Agent is installed
    InstallType string
    The install type, either AGENT or GATEWAY
    IsAgentAutoUpgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    IsCustomerDeployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagementAgentProperties List<ManagementAgentManagementAgentProperty>
    Additional properties for this Management Agent
    PlatformName string
    Platform Name
    PlatformType string
    Platform Type
    PlatformVersion string
    Platform Version
    PluginLists List<ManagementAgentPluginList>
    list of managementAgentPlugins associated with the agent
    ResourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Version string
    Management Agent Version
    AvailabilityStatus string
    CompartmentId string
    DataSourceLists []ManagementAgentDataSourceList
    DataSourceSummaryLists []ManagementAgentDataSourceSummaryList
    Host string
    Management Agent host machine name
    HostId string
    Host resource ocid
    Id string
    The provider-assigned unique ID for this managed resource.
    InstallKeyId string
    agent install key identifier
    InstallPath string
    Path where Management Agent is installed
    InstallType string
    The install type, either AGENT or GATEWAY
    IsAgentAutoUpgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    IsCustomerDeployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagementAgentProperties []ManagementAgentManagementAgentProperty
    Additional properties for this Management Agent
    PlatformName string
    Platform Name
    PlatformType string
    Platform Type
    PlatformVersion string
    Platform Version
    PluginLists []ManagementAgentPluginList
    list of managementAgentPlugins associated with the agent
    ResourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Version string
    Management Agent Version
    availabilityStatus String
    compartmentId String
    dataSourceLists List<DataSourceList>
    dataSourceSummaryLists List<DataSourceSummaryList>
    host String
    Management Agent host machine name
    hostId String
    Host resource ocid
    id String
    The provider-assigned unique ID for this managed resource.
    installKeyId String
    agent install key identifier
    installPath String
    Path where Management Agent is installed
    installType String
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable Boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed Boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managementAgentProperties List<Property>
    Additional properties for this Management Agent
    platformName String
    Platform Name
    platformType String
    Platform Type
    platformVersion String
    Platform Version
    pluginLists List<PluginList>
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion String
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat String
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version String
    Management Agent Version
    availabilityStatus string
    compartmentId string
    dataSourceLists ManagementAgentDataSourceList[]
    dataSourceSummaryLists ManagementAgentDataSourceSummaryList[]
    host string
    Management Agent host machine name
    hostId string
    Host resource ocid
    id string
    The provider-assigned unique ID for this managed resource.
    installKeyId string
    agent install key identifier
    installPath string
    Path where Management Agent is installed
    installType string
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managementAgentProperties ManagementAgentManagementAgentProperty[]
    Additional properties for this Management Agent
    platformName string
    Platform Name
    platformType string
    Platform Type
    platformVersion string
    Platform Version
    pluginLists ManagementAgentPluginList[]
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state string
    The current state of managementAgent
    timeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version string
    Management Agent Version
    availability_status str
    compartment_id str
    data_source_lists Sequence[managementagent.ManagementAgentDataSourceList]
    data_source_summary_lists Sequence[managementagent.ManagementAgentDataSourceSummaryList]
    host str
    Management Agent host machine name
    host_id str
    Host resource ocid
    id str
    The provider-assigned unique ID for this managed resource.
    install_key_id str
    agent install key identifier
    install_path str
    Path where Management Agent is installed
    install_type str
    The install type, either AGENT or GATEWAY
    is_agent_auto_upgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    is_customer_deployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    management_agent_properties Sequence[managementagent.ManagementAgentManagementAgentProperty]
    Additional properties for this Management Agent
    platform_name str
    Platform Name
    platform_type str
    Platform Type
    platform_version str
    Platform Version
    plugin_lists Sequence[managementagent.ManagementAgentPluginList]
    list of managementAgentPlugins associated with the agent
    resource_artifact_version str
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state str
    The current state of managementAgent
    time_created str
    The time the Management Agent was created. An RFC3339 formatted datetime string
    time_last_heartbeat str
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    time_updated str
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version str
    Management Agent Version
    availabilityStatus String
    compartmentId String
    dataSourceLists List<Property Map>
    dataSourceSummaryLists List<Property Map>
    host String
    Management Agent host machine name
    hostId String
    Host resource ocid
    id String
    The provider-assigned unique ID for this managed resource.
    installKeyId String
    agent install key identifier
    installPath String
    Path where Management Agent is installed
    installType String
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable Boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed Boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managementAgentProperties List<Property Map>
    Additional properties for this Management Agent
    platformName String
    Platform Name
    platformType String
    Platform Type
    platformVersion String
    Platform Version
    pluginLists List<Property Map>
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion String
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat String
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version String
    Management Agent Version

    Look up Existing ManagementAgent Resource

    Get an existing ManagementAgent 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?: ManagementAgentState, opts?: CustomResourceOptions): ManagementAgent
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_status: Optional[str] = None,
            compartment_id: Optional[str] = None,
            data_source_lists: Optional[Sequence[_managementagent.ManagementAgentDataSourceListArgs]] = None,
            data_source_summary_lists: Optional[Sequence[_managementagent.ManagementAgentDataSourceSummaryListArgs]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            deploy_plugins_ids: Optional[Sequence[str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            host: Optional[str] = None,
            host_id: Optional[str] = None,
            install_key_id: Optional[str] = None,
            install_path: Optional[str] = None,
            install_type: Optional[str] = None,
            is_agent_auto_upgradable: Optional[bool] = None,
            is_customer_deployed: Optional[bool] = None,
            lifecycle_details: Optional[str] = None,
            managed_agent_id: Optional[str] = None,
            management_agent_properties: Optional[Sequence[_managementagent.ManagementAgentManagementAgentPropertyArgs]] = None,
            platform_name: Optional[str] = None,
            platform_type: Optional[str] = None,
            platform_version: Optional[str] = None,
            plugin_lists: Optional[Sequence[_managementagent.ManagementAgentPluginListArgs]] = None,
            resource_artifact_version: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_last_heartbeat: Optional[str] = None,
            time_updated: Optional[str] = None,
            version: Optional[str] = None) -> ManagementAgent
    func GetManagementAgent(ctx *Context, name string, id IDInput, state *ManagementAgentState, opts ...ResourceOption) (*ManagementAgent, error)
    public static ManagementAgent Get(string name, Input<string> id, ManagementAgentState? state, CustomResourceOptions? opts = null)
    public static ManagementAgent get(String name, Output<String> id, ManagementAgentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AvailabilityStatus string
    CompartmentId string
    DataSourceLists List<ManagementAgentDataSourceList>
    DataSourceSummaryLists List<ManagementAgentDataSourceSummaryList>
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployPluginsIds List<string>
    DisplayName string
    Management Agent Name
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Host string
    Management Agent host machine name
    HostId string
    Host resource ocid
    InstallKeyId string
    agent install key identifier
    InstallPath string
    Path where Management Agent is installed
    InstallType string
    The install type, either AGENT or GATEWAY
    IsAgentAutoUpgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    IsCustomerDeployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedAgentId string
    Unique Management Agent identifier
    ManagementAgentProperties List<ManagementAgentManagementAgentProperty>
    Additional properties for this Management Agent
    PlatformName string
    Platform Name
    PlatformType string
    Platform Type
    PlatformVersion string
    Platform Version
    PluginLists List<ManagementAgentPluginList>
    list of managementAgentPlugins associated with the agent
    ResourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Version string
    Management Agent Version
    AvailabilityStatus string
    CompartmentId string
    DataSourceLists []ManagementAgentDataSourceListArgs
    DataSourceSummaryLists []ManagementAgentDataSourceSummaryListArgs
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DeployPluginsIds []string
    DisplayName string
    Management Agent Name
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Host string
    Management Agent host machine name
    HostId string
    Host resource ocid
    InstallKeyId string
    agent install key identifier
    InstallPath string
    Path where Management Agent is installed
    InstallType string
    The install type, either AGENT or GATEWAY
    IsAgentAutoUpgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    IsCustomerDeployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedAgentId string
    Unique Management Agent identifier
    ManagementAgentProperties []ManagementAgentManagementAgentPropertyArgs
    Additional properties for this Management Agent
    PlatformName string
    Platform Name
    PlatformType string
    Platform Type
    PlatformVersion string
    Platform Version
    PluginLists []ManagementAgentPluginListArgs
    list of managementAgentPlugins associated with the agent
    ResourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Version string
    Management Agent Version
    availabilityStatus String
    compartmentId String
    dataSourceLists List<DataSourceList>
    dataSourceSummaryLists List<DataSourceSummaryList>
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds List<String>
    displayName String
    Management Agent Name
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    host String
    Management Agent host machine name
    hostId String
    Host resource ocid
    installKeyId String
    agent install key identifier
    installPath String
    Path where Management Agent is installed
    installType String
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable Boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed Boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedAgentId String
    Unique Management Agent identifier
    managementAgentProperties List<Property>
    Additional properties for this Management Agent
    platformName String
    Platform Name
    platformType String
    Platform Type
    platformVersion String
    Platform Version
    pluginLists List<PluginList>
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion String
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat String
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version String
    Management Agent Version
    availabilityStatus string
    compartmentId string
    dataSourceLists ManagementAgentDataSourceList[]
    dataSourceSummaryLists ManagementAgentDataSourceSummaryList[]
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds string[]
    displayName string
    Management Agent Name
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    host string
    Management Agent host machine name
    hostId string
    Host resource ocid
    installKeyId string
    agent install key identifier
    installPath string
    Path where Management Agent is installed
    installType string
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedAgentId string
    Unique Management Agent identifier
    managementAgentProperties ManagementAgentManagementAgentProperty[]
    Additional properties for this Management Agent
    platformName string
    Platform Name
    platformType string
    Platform Type
    platformVersion string
    Platform Version
    pluginLists ManagementAgentPluginList[]
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion string
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state string
    The current state of managementAgent
    timeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat string
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version string
    Management Agent Version
    availability_status str
    compartment_id str
    data_source_lists Sequence[managementagent.ManagementAgentDataSourceListArgs]
    data_source_summary_lists Sequence[managementagent.ManagementAgentDataSourceSummaryListArgs]
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deploy_plugins_ids Sequence[str]
    display_name str
    Management Agent Name
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    host str
    Management Agent host machine name
    host_id str
    Host resource ocid
    install_key_id str
    agent install key identifier
    install_path str
    Path where Management Agent is installed
    install_type str
    The install type, either AGENT or GATEWAY
    is_agent_auto_upgradable bool
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    is_customer_deployed bool
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managed_agent_id str
    Unique Management Agent identifier
    management_agent_properties Sequence[managementagent.ManagementAgentManagementAgentPropertyArgs]
    Additional properties for this Management Agent
    platform_name str
    Platform Name
    platform_type str
    Platform Type
    platform_version str
    Platform Version
    plugin_lists Sequence[managementagent.ManagementAgentPluginListArgs]
    list of managementAgentPlugins associated with the agent
    resource_artifact_version str
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state str
    The current state of managementAgent
    time_created str
    The time the Management Agent was created. An RFC3339 formatted datetime string
    time_last_heartbeat str
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    time_updated str
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version str
    Management Agent Version
    availabilityStatus String
    compartmentId String
    dataSourceLists List<Property Map>
    dataSourceSummaryLists List<Property Map>
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    deployPluginsIds List<String>
    displayName String
    Management Agent Name
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    host String
    Management Agent host machine name
    hostId String
    Host resource ocid
    installKeyId String
    agent install key identifier
    installPath String
    Path where Management Agent is installed
    installType String
    The install type, either AGENT or GATEWAY
    isAgentAutoUpgradable Boolean
    true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
    isCustomerDeployed Boolean
    true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedAgentId String
    Unique Management Agent identifier
    managementAgentProperties List<Property Map>
    Additional properties for this Management Agent
    platformName String
    Platform Name
    platformType String
    Platform Type
    platformVersion String
    Platform Version
    pluginLists List<Property Map>
    list of managementAgentPlugins associated with the agent
    resourceArtifactVersion String
    Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeLastHeartbeat String
    The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    version String
    Management Agent Version

    Supporting Types

    ManagementAgentDataSourceList, ManagementAgentDataSourceListArgs

    AllowMetrics string
    CompartmentId string
    ConnectionTimeout int
    IsDaemonSet bool
    Key string
    MetricDimensions List<ManagementAgentDataSourceListMetricDimension>
    Name string
    Name of the property
    Namespace string
    ProxyUrl string
    ReadDataLimit int
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    ReadTimeout int
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    ResourceGroup string
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    ScheduleMins int
    Number in minutes. The scraping occurs at the specified interval.
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Type string
    The type of the DataSource.
    Url string
    The url through which the Prometheus Exporter publishes its metrics. (http only)
    AllowMetrics string
    CompartmentId string
    ConnectionTimeout int
    IsDaemonSet bool
    Key string
    MetricDimensions []ManagementAgentDataSourceListMetricDimension
    Name string
    Name of the property
    Namespace string
    ProxyUrl string
    ReadDataLimit int
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    ReadTimeout int
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    ResourceGroup string
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    ScheduleMins int
    Number in minutes. The scraping occurs at the specified interval.
    State string
    The current state of managementAgent
    TimeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    Type string
    The type of the DataSource.
    Url string
    The url through which the Prometheus Exporter publishes its metrics. (http only)
    allowMetrics String
    compartmentId String
    connectionTimeout Integer
    isDaemonSet Boolean
    key String
    metricDimensions List<DataSourceListMetricDimension>
    name String
    Name of the property
    namespace String
    proxyUrl String
    readDataLimit Integer
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    readTimeout Integer
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    resourceGroup String
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    scheduleMins Integer
    Number in minutes. The scraping occurs at the specified interval.
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    type String
    The type of the DataSource.
    url String
    The url through which the Prometheus Exporter publishes its metrics. (http only)
    allowMetrics string
    compartmentId string
    connectionTimeout number
    isDaemonSet boolean
    key string
    metricDimensions ManagementAgentDataSourceListMetricDimension[]
    name string
    Name of the property
    namespace string
    proxyUrl string
    readDataLimit number
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    readTimeout number
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    resourceGroup string
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    scheduleMins number
    Number in minutes. The scraping occurs at the specified interval.
    state string
    The current state of managementAgent
    timeCreated string
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeUpdated string
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    type string
    The type of the DataSource.
    url string
    The url through which the Prometheus Exporter publishes its metrics. (http only)
    allow_metrics str
    compartment_id str
    connection_timeout int
    is_daemon_set bool
    key str
    metric_dimensions Sequence[managementagent.ManagementAgentDataSourceListMetricDimension]
    name str
    Name of the property
    namespace str
    proxy_url str
    read_data_limit int
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    read_timeout int
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    resource_group str
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    schedule_mins int
    Number in minutes. The scraping occurs at the specified interval.
    state str
    The current state of managementAgent
    time_created str
    The time the Management Agent was created. An RFC3339 formatted datetime string
    time_updated str
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    type str
    The type of the DataSource.
    url str
    The url through which the Prometheus Exporter publishes its metrics. (http only)
    allowMetrics String
    compartmentId String
    connectionTimeout Number
    isDaemonSet Boolean
    key String
    metricDimensions List<Property Map>
    name String
    Name of the property
    namespace String
    proxyUrl String
    readDataLimit Number
    Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
    readTimeout Number
    Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
    resourceGroup String
    Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
    scheduleMins Number
    Number in minutes. The scraping occurs at the specified interval.
    state String
    The current state of managementAgent
    timeCreated String
    The time the Management Agent was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the Management Agent was last updated. An RFC3339 formatted datetime string
    type String
    The type of the DataSource.
    url String
    The url through which the Prometheus Exporter publishes its metrics. (http only)

    ManagementAgentDataSourceListMetricDimension, ManagementAgentDataSourceListMetricDimensionArgs

    Name string
    Name of the property
    Value string
    Name string
    Name of the property
    Value string
    name String
    Name of the property
    value String
    name string
    Name of the property
    value string
    name str
    Name of the property
    value str
    name String
    Name of the property
    value String

    ManagementAgentDataSourceSummaryList, ManagementAgentDataSourceSummaryListArgs

    IsDaemonSet bool
    Key string
    Name string
    Name of the property
    Type string
    The type of the DataSource.
    IsDaemonSet bool
    Key string
    Name string
    Name of the property
    Type string
    The type of the DataSource.
    isDaemonSet Boolean
    key String
    name String
    Name of the property
    type String
    The type of the DataSource.
    isDaemonSet boolean
    key string
    name string
    Name of the property
    type string
    The type of the DataSource.
    is_daemon_set bool
    key str
    name str
    Name of the property
    type str
    The type of the DataSource.
    isDaemonSet Boolean
    key String
    name String
    Name of the property
    type String
    The type of the DataSource.

    ManagementAgentManagementAgentProperty, ManagementAgentManagementAgentPropertyArgs

    Name string
    Name of the property
    Units string
    Unit for the property
    Values List<string>
    Values of the property
    Name string
    Name of the property
    Units string
    Unit for the property
    Values []string
    Values of the property
    name String
    Name of the property
    units String
    Unit for the property
    values List<String>
    Values of the property
    name string
    Name of the property
    units string
    Unit for the property
    values string[]
    Values of the property
    name str
    Name of the property
    units str
    Unit for the property
    values Sequence[str]
    Values of the property
    name String
    Name of the property
    units String
    Unit for the property
    values List<String>
    Values of the property

    ManagementAgentPluginList, ManagementAgentPluginListArgs

    IsEnabled bool
    flag indicating whether the plugin is in enabled mode or disabled mode.
    PluginDisplayName string
    Management Agent Plugin Identifier, can be renamed
    PluginId string
    Plugin Id
    PluginName string
    Management Agent Plugin Name
    PluginStatus string
    Plugin Status
    PluginStatusMessage string
    Status message of the Plugin
    PluginVersion string
    Plugin Version
    IsEnabled bool
    flag indicating whether the plugin is in enabled mode or disabled mode.
    PluginDisplayName string
    Management Agent Plugin Identifier, can be renamed
    PluginId string
    Plugin Id
    PluginName string
    Management Agent Plugin Name
    PluginStatus string
    Plugin Status
    PluginStatusMessage string
    Status message of the Plugin
    PluginVersion string
    Plugin Version
    isEnabled Boolean
    flag indicating whether the plugin is in enabled mode or disabled mode.
    pluginDisplayName String
    Management Agent Plugin Identifier, can be renamed
    pluginId String
    Plugin Id
    pluginName String
    Management Agent Plugin Name
    pluginStatus String
    Plugin Status
    pluginStatusMessage String
    Status message of the Plugin
    pluginVersion String
    Plugin Version
    isEnabled boolean
    flag indicating whether the plugin is in enabled mode or disabled mode.
    pluginDisplayName string
    Management Agent Plugin Identifier, can be renamed
    pluginId string
    Plugin Id
    pluginName string
    Management Agent Plugin Name
    pluginStatus string
    Plugin Status
    pluginStatusMessage string
    Status message of the Plugin
    pluginVersion string
    Plugin Version
    is_enabled bool
    flag indicating whether the plugin is in enabled mode or disabled mode.
    plugin_display_name str
    Management Agent Plugin Identifier, can be renamed
    plugin_id str
    Plugin Id
    plugin_name str
    Management Agent Plugin Name
    plugin_status str
    Plugin Status
    plugin_status_message str
    Status message of the Plugin
    plugin_version str
    Plugin Version
    isEnabled Boolean
    flag indicating whether the plugin is in enabled mode or disabled mode.
    pluginDisplayName String
    Management Agent Plugin Identifier, can be renamed
    pluginId String
    Plugin Id
    pluginName String
    Management Agent Plugin Name
    pluginStatus String
    Plugin Status
    pluginStatusMessage String
    Status message of the Plugin
    pluginVersion String
    Plugin Version

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi