1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Ocvp
  5. ManagementAppliance
Oracle Cloud Infrastructure v3.16.0 published on Wednesday, Jan 28, 2026 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.16.0 published on Wednesday, Jan 28, 2026 by Pulumi

    This resource provides the Management Appliance resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.

    Creates a management appliance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagementAppliance = new oci.ocvp.ManagementAppliance("test_management_appliance", {
        configuration: {
            isLogIngestionEnabled: managementApplianceConfigurationIsLogIngestionEnabled,
            isMetricsCollectionEnabled: managementApplianceConfigurationIsMetricsCollectionEnabled,
            metrics: managementApplianceConfigurationMetrics,
            supportBundleBucketId: testBucket.id,
        },
        connections: [{
            credentialsSecretId: testSecret.id,
            type: managementApplianceConnectionsType,
        }],
        displayName: managementApplianceDisplayName,
        sddcId: testSddc.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
        publicSshKeys: managementAppliancePublicSshKeys,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_management_appliance = oci.ocvp.ManagementAppliance("test_management_appliance",
        configuration={
            "is_log_ingestion_enabled": management_appliance_configuration_is_log_ingestion_enabled,
            "is_metrics_collection_enabled": management_appliance_configuration_is_metrics_collection_enabled,
            "metrics": management_appliance_configuration_metrics,
            "support_bundle_bucket_id": test_bucket["id"],
        },
        connections=[{
            "credentials_secret_id": test_secret["id"],
            "type": management_appliance_connections_type,
        }],
        display_name=management_appliance_display_name,
        sddc_id=test_sddc["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        },
        public_ssh_keys=management_appliance_public_ssh_keys)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/ocvp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ocvp.NewManagementAppliance(ctx, "test_management_appliance", &ocvp.ManagementApplianceArgs{
    			Configuration: &ocvp.ManagementApplianceConfigurationArgs{
    				IsLogIngestionEnabled:      pulumi.Any(managementApplianceConfigurationIsLogIngestionEnabled),
    				IsMetricsCollectionEnabled: pulumi.Any(managementApplianceConfigurationIsMetricsCollectionEnabled),
    				Metrics:                    pulumi.Any(managementApplianceConfigurationMetrics),
    				SupportBundleBucketId:      pulumi.Any(testBucket.Id),
    			},
    			Connections: ocvp.ManagementApplianceConnectionArray{
    				&ocvp.ManagementApplianceConnectionArgs{
    					CredentialsSecretId: pulumi.Any(testSecret.Id),
    					Type:                pulumi.Any(managementApplianceConnectionsType),
    				},
    			},
    			DisplayName: pulumi.Any(managementApplianceDisplayName),
    			SddcId:      pulumi.Any(testSddc.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			PublicSshKeys: pulumi.Any(managementAppliancePublicSshKeys),
    		})
    		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 testManagementAppliance = new Oci.Ocvp.ManagementAppliance("test_management_appliance", new()
        {
            Configuration = new Oci.Ocvp.Inputs.ManagementApplianceConfigurationArgs
            {
                IsLogIngestionEnabled = managementApplianceConfigurationIsLogIngestionEnabled,
                IsMetricsCollectionEnabled = managementApplianceConfigurationIsMetricsCollectionEnabled,
                Metrics = managementApplianceConfigurationMetrics,
                SupportBundleBucketId = testBucket.Id,
            },
            Connections = new[]
            {
                new Oci.Ocvp.Inputs.ManagementApplianceConnectionArgs
                {
                    CredentialsSecretId = testSecret.Id,
                    Type = managementApplianceConnectionsType,
                },
            },
            DisplayName = managementApplianceDisplayName,
            SddcId = testSddc.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            PublicSshKeys = managementAppliancePublicSshKeys,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Ocvp.ManagementAppliance;
    import com.pulumi.oci.Ocvp.ManagementApplianceArgs;
    import com.pulumi.oci.Ocvp.inputs.ManagementApplianceConfigurationArgs;
    import com.pulumi.oci.Ocvp.inputs.ManagementApplianceConnectionArgs;
    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 testManagementAppliance = new ManagementAppliance("testManagementAppliance", ManagementApplianceArgs.builder()
                .configuration(ManagementApplianceConfigurationArgs.builder()
                    .isLogIngestionEnabled(managementApplianceConfigurationIsLogIngestionEnabled)
                    .isMetricsCollectionEnabled(managementApplianceConfigurationIsMetricsCollectionEnabled)
                    .metrics(managementApplianceConfigurationMetrics)
                    .supportBundleBucketId(testBucket.id())
                    .build())
                .connections(ManagementApplianceConnectionArgs.builder()
                    .credentialsSecretId(testSecret.id())
                    .type(managementApplianceConnectionsType)
                    .build())
                .displayName(managementApplianceDisplayName)
                .sddcId(testSddc.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .publicSshKeys(managementAppliancePublicSshKeys)
                .build());
    
        }
    }
    
    resources:
      testManagementAppliance:
        type: oci:Ocvp:ManagementAppliance
        name: test_management_appliance
        properties:
          configuration:
            isLogIngestionEnabled: ${managementApplianceConfigurationIsLogIngestionEnabled}
            isMetricsCollectionEnabled: ${managementApplianceConfigurationIsMetricsCollectionEnabled}
            metrics: ${managementApplianceConfigurationMetrics}
            supportBundleBucketId: ${testBucket.id}
          connections:
            - credentialsSecretId: ${testSecret.id}
              type: ${managementApplianceConnectionsType}
          displayName: ${managementApplianceDisplayName}
          sddcId: ${testSddc.id}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
          publicSshKeys: ${managementAppliancePublicSshKeys}
    

    Create ManagementAppliance Resource

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

    Constructor syntax

    new ManagementAppliance(name: string, args: ManagementApplianceArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementAppliance(resource_name: str,
                            args: ManagementApplianceArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementAppliance(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            configuration: Optional[ManagementApplianceConfigurationArgs] = None,
                            connections: Optional[Sequence[ManagementApplianceConnectionArgs]] = None,
                            display_name: Optional[str] = None,
                            sddc_id: Optional[str] = None,
                            defined_tags: Optional[Mapping[str, str]] = None,
                            freeform_tags: Optional[Mapping[str, str]] = None,
                            public_ssh_keys: Optional[str] = None)
    func NewManagementAppliance(ctx *Context, name string, args ManagementApplianceArgs, opts ...ResourceOption) (*ManagementAppliance, error)
    public ManagementAppliance(string name, ManagementApplianceArgs args, CustomResourceOptions? opts = null)
    public ManagementAppliance(String name, ManagementApplianceArgs args)
    public ManagementAppliance(String name, ManagementApplianceArgs args, CustomResourceOptions options)
    
    type: oci:Ocvp:ManagementAppliance
    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 ManagementApplianceArgs
    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 ManagementApplianceArgs
    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 ManagementApplianceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementApplianceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementApplianceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var managementApplianceResource = new Oci.Ocvp.ManagementAppliance("managementApplianceResource", new()
    {
        Configuration = new Oci.Ocvp.Inputs.ManagementApplianceConfigurationArgs
        {
            IsLogIngestionEnabled = false,
            IsMetricsCollectionEnabled = false,
            Metrics = new[]
            {
                "string",
            },
            SupportBundleBucketId = "string",
        },
        Connections = new[]
        {
            new Oci.Ocvp.Inputs.ManagementApplianceConnectionArgs
            {
                CredentialsSecretId = "string",
                Type = "string",
            },
        },
        DisplayName = "string",
        SddcId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        PublicSshKeys = "string",
    });
    
    example, err := ocvp.NewManagementAppliance(ctx, "managementApplianceResource", &ocvp.ManagementApplianceArgs{
    	Configuration: &ocvp.ManagementApplianceConfigurationArgs{
    		IsLogIngestionEnabled:      pulumi.Bool(false),
    		IsMetricsCollectionEnabled: pulumi.Bool(false),
    		Metrics: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SupportBundleBucketId: pulumi.String("string"),
    	},
    	Connections: ocvp.ManagementApplianceConnectionArray{
    		&ocvp.ManagementApplianceConnectionArgs{
    			CredentialsSecretId: pulumi.String("string"),
    			Type:                pulumi.String("string"),
    		},
    	},
    	DisplayName: pulumi.String("string"),
    	SddcId:      pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	PublicSshKeys: pulumi.String("string"),
    })
    
    var managementApplianceResource = new ManagementAppliance("managementApplianceResource", ManagementApplianceArgs.builder()
        .configuration(ManagementApplianceConfigurationArgs.builder()
            .isLogIngestionEnabled(false)
            .isMetricsCollectionEnabled(false)
            .metrics("string")
            .supportBundleBucketId("string")
            .build())
        .connections(ManagementApplianceConnectionArgs.builder()
            .credentialsSecretId("string")
            .type("string")
            .build())
        .displayName("string")
        .sddcId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .publicSshKeys("string")
        .build());
    
    management_appliance_resource = oci.ocvp.ManagementAppliance("managementApplianceResource",
        configuration={
            "is_log_ingestion_enabled": False,
            "is_metrics_collection_enabled": False,
            "metrics": ["string"],
            "support_bundle_bucket_id": "string",
        },
        connections=[{
            "credentials_secret_id": "string",
            "type": "string",
        }],
        display_name="string",
        sddc_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        public_ssh_keys="string")
    
    const managementApplianceResource = new oci.ocvp.ManagementAppliance("managementApplianceResource", {
        configuration: {
            isLogIngestionEnabled: false,
            isMetricsCollectionEnabled: false,
            metrics: ["string"],
            supportBundleBucketId: "string",
        },
        connections: [{
            credentialsSecretId: "string",
            type: "string",
        }],
        displayName: "string",
        sddcId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        publicSshKeys: "string",
    });
    
    type: oci:Ocvp:ManagementAppliance
    properties:
        configuration:
            isLogIngestionEnabled: false
            isMetricsCollectionEnabled: false
            metrics:
                - string
            supportBundleBucketId: string
        connections:
            - credentialsSecretId: string
              type: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        publicSshKeys: string
        sddcId: string
    

    ManagementAppliance Resource Properties

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

    Inputs

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

    The ManagementAppliance resource accepts the following input properties:

    Configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    Connections List<ManagementApplianceConnection>
    (Updatable) Array of connections for management appliance.
    DisplayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    SddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    PublicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    Configuration ManagementApplianceConfigurationArgs
    (Updatable) Configuration of management appliance.
    Connections []ManagementApplianceConnectionArgs
    (Updatable) Array of connections for management appliance.
    DisplayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    SddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    PublicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    connections List<ManagementApplianceConnection>
    (Updatable) Array of connections for management appliance.
    displayName String
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    sddcId String

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    publicSshKeys String
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    connections ManagementApplianceConnection[]
    (Updatable) Array of connections for management appliance.
    displayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    sddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    publicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    configuration ManagementApplianceConfigurationArgs
    (Updatable) Configuration of management appliance.
    connections Sequence[ManagementApplianceConnectionArgs]
    (Updatable) Array of connections for management appliance.
    display_name str
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    sddc_id str

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    public_ssh_keys str
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    configuration Property Map
    (Updatable) Configuration of management appliance.
    connections List<Property Map>
    (Updatable) Array of connections for management appliance.
    displayName String
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    sddcId String

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    publicSshKeys String
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.

    Outputs

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

    CompartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    ComputeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    HeartbeatConnectionStates List<ManagementApplianceHeartbeatConnectionState>
    Current states of connections.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    ManagementAgentId string
    The OCID of management agent, that this appliance is running in.
    State string
    Current state of the management appliance.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    TimeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    TimeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    TimeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    TimeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    CompartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    ComputeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    HeartbeatConnectionStates []ManagementApplianceHeartbeatConnectionState
    Current states of connections.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    ManagementAgentId string
    The OCID of management agent, that this appliance is running in.
    State string
    Current state of the management appliance.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    TimeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    TimeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    TimeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    TimeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId String
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId String
    The OCID of compute instance of management appliance in OCI.
    heartbeatConnectionStates List<ManagementApplianceHeartbeatConnectionState>
    Current states of connections.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId String
    The OCID of management agent, that this appliance is running in.
    state String
    Current state of the management appliance.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated String
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated String
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat String
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated String
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    heartbeatConnectionStates ManagementApplianceHeartbeatConnectionState[]
    Current states of connections.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId string
    The OCID of management agent, that this appliance is running in.
    state string
    Current state of the management appliance.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartment_id str
    The OCID of compartment in OCI, that this appliance is going to be created in.
    compute_instance_id str
    The OCID of compute instance of management appliance in OCI.
    heartbeat_connection_states Sequence[ManagementApplianceHeartbeatConnectionState]
    Current states of connections.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    management_agent_id str
    The OCID of management agent, that this appliance is running in.
    state str
    Current state of the management appliance.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    time_configuration_updated str
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    time_created str
    The date and time the management appliance was created in the format defined by RFC3339.
    time_last_heartbeat str
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    time_updated str
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId String
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId String
    The OCID of compute instance of management appliance in OCI.
    heartbeatConnectionStates List<Property Map>
    Current states of connections.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId String
    The OCID of management agent, that this appliance is running in.
    state String
    Current state of the management appliance.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated String
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated String
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat String
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated String
    The date and time the management appliance was last updated in the format defined by RFC3339.

    Look up Existing ManagementAppliance Resource

    Get an existing ManagementAppliance 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?: ManagementApplianceState, opts?: CustomResourceOptions): ManagementAppliance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            compute_instance_id: Optional[str] = None,
            configuration: Optional[ManagementApplianceConfigurationArgs] = None,
            connections: Optional[Sequence[ManagementApplianceConnectionArgs]] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            heartbeat_connection_states: Optional[Sequence[ManagementApplianceHeartbeatConnectionStateArgs]] = None,
            lifecycle_details: Optional[str] = None,
            management_agent_id: Optional[str] = None,
            public_ssh_keys: Optional[str] = None,
            sddc_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_configuration_updated: Optional[str] = None,
            time_created: Optional[str] = None,
            time_last_heartbeat: Optional[str] = None,
            time_updated: Optional[str] = None) -> ManagementAppliance
    func GetManagementAppliance(ctx *Context, name string, id IDInput, state *ManagementApplianceState, opts ...ResourceOption) (*ManagementAppliance, error)
    public static ManagementAppliance Get(string name, Input<string> id, ManagementApplianceState? state, CustomResourceOptions? opts = null)
    public static ManagementAppliance get(String name, Output<String> id, ManagementApplianceState state, CustomResourceOptions options)
    resources:  _:    type: oci:Ocvp:ManagementAppliance    get:      id: ${id}
    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:
    CompartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    ComputeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    Configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    Connections List<ManagementApplianceConnection>
    (Updatable) Array of connections for management appliance.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HeartbeatConnectionStates List<ManagementApplianceHeartbeatConnectionState>
    Current states of connections.
    LifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    ManagementAgentId string
    The OCID of management agent, that this appliance is running in.
    PublicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    SddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    State string
    Current state of the management appliance.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    TimeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    TimeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    TimeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    TimeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    CompartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    ComputeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    Configuration ManagementApplianceConfigurationArgs
    (Updatable) Configuration of management appliance.
    Connections []ManagementApplianceConnectionArgs
    (Updatable) Array of connections for management appliance.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HeartbeatConnectionStates []ManagementApplianceHeartbeatConnectionStateArgs
    Current states of connections.
    LifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    ManagementAgentId string
    The OCID of management agent, that this appliance is running in.
    PublicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    SddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    State string
    Current state of the management appliance.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    TimeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    TimeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    TimeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    TimeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId String
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId String
    The OCID of compute instance of management appliance in OCI.
    configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    connections List<ManagementApplianceConnection>
    (Updatable) Array of connections for management appliance.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    heartbeatConnectionStates List<ManagementApplianceHeartbeatConnectionState>
    Current states of connections.
    lifecycleDetails String
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId String
    The OCID of management agent, that this appliance is running in.
    publicSshKeys String
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    sddcId String

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    state String
    Current state of the management appliance.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated String
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated String
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat String
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated String
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId string
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId string
    The OCID of compute instance of management appliance in OCI.
    configuration ManagementApplianceConfiguration
    (Updatable) Configuration of management appliance.
    connections ManagementApplianceConnection[]
    (Updatable) Array of connections for management appliance.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    heartbeatConnectionStates ManagementApplianceHeartbeatConnectionState[]
    Current states of connections.
    lifecycleDetails string
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId string
    The OCID of management agent, that this appliance is running in.
    publicSshKeys string
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    sddcId string

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    state string
    Current state of the management appliance.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated string
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated string
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat string
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated string
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartment_id str
    The OCID of compartment in OCI, that this appliance is going to be created in.
    compute_instance_id str
    The OCID of compute instance of management appliance in OCI.
    configuration ManagementApplianceConfigurationArgs
    (Updatable) Configuration of management appliance.
    connections Sequence[ManagementApplianceConnectionArgs]
    (Updatable) Array of connections for management appliance.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    heartbeat_connection_states Sequence[ManagementApplianceHeartbeatConnectionStateArgs]
    Current states of connections.
    lifecycle_details str
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    management_agent_id str
    The OCID of management agent, that this appliance is running in.
    public_ssh_keys str
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    sddc_id str

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    state str
    Current state of the management appliance.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    time_configuration_updated str
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    time_created str
    The date and time the management appliance was created in the format defined by RFC3339.
    time_last_heartbeat str
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    time_updated str
    The date and time the management appliance was last updated in the format defined by RFC3339.
    compartmentId String
    The OCID of compartment in OCI, that this appliance is going to be created in.
    computeInstanceId String
    The OCID of compute instance of management appliance in OCI.
    configuration Property Map
    (Updatable) Configuration of management appliance.
    connections List<Property Map>
    (Updatable) Array of connections for management appliance.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    heartbeatConnectionStates List<Property Map>
    Current states of connections.
    lifecycleDetails String
    Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.
    managementAgentId String
    The OCID of management agent, that this appliance is running in.
    publicSshKeys String
    One or more public SSH keys to be included in ~/.ssh/authorized_keys file for Management Appliance compute instance. Several public SSH keys must be separate by newline character.
    sddcId String

    The OCID of SDDC in OCI, that this appliance is going to be registered in.

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

    state String
    Current state of the management appliance.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}
    timeConfigurationUpdated String
    The date and time the configuration of management appliance was last updated in the format defined by RFC3339.
    timeCreated String
    The date and time the management appliance was created in the format defined by RFC3339.
    timeLastHeartbeat String
    The date and time the management appliance has last received heartbeat in the format defined by RFC3339.
    timeUpdated String
    The date and time the management appliance was last updated in the format defined by RFC3339.

    Supporting Types

    ManagementApplianceConfiguration, ManagementApplianceConfigurationArgs

    IsLogIngestionEnabled bool
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    IsMetricsCollectionEnabled bool
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    Metrics List<string>
    (Updatable) Array of metrics ids to collect.
    SupportBundleBucketId string
    (Updatable) The OCID of support bundle Object Storage bucket.
    IsLogIngestionEnabled bool
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    IsMetricsCollectionEnabled bool
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    Metrics []string
    (Updatable) Array of metrics ids to collect.
    SupportBundleBucketId string
    (Updatable) The OCID of support bundle Object Storage bucket.
    isLogIngestionEnabled Boolean
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    isMetricsCollectionEnabled Boolean
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    metrics List<String>
    (Updatable) Array of metrics ids to collect.
    supportBundleBucketId String
    (Updatable) The OCID of support bundle Object Storage bucket.
    isLogIngestionEnabled boolean
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    isMetricsCollectionEnabled boolean
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    metrics string[]
    (Updatable) Array of metrics ids to collect.
    supportBundleBucketId string
    (Updatable) The OCID of support bundle Object Storage bucket.
    is_log_ingestion_enabled bool
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    is_metrics_collection_enabled bool
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    metrics Sequence[str]
    (Updatable) Array of metrics ids to collect.
    support_bundle_bucket_id str
    (Updatable) The OCID of support bundle Object Storage bucket.
    isLogIngestionEnabled Boolean
    (Updatable) Is log ingestion from SDDC to Oracle Cloud Infrastructure enabled.
    isMetricsCollectionEnabled Boolean
    (Updatable) Is metrics collection and publishing is enabled for appliance.
    metrics List<String>
    (Updatable) Array of metrics ids to collect.
    supportBundleBucketId String
    (Updatable) The OCID of support bundle Object Storage bucket.

    ManagementApplianceConnection, ManagementApplianceConnectionArgs

    CredentialsSecretId string
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    Type string
    (Updatable) Type of connection.
    CredentialsSecretId string
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    Type string
    (Updatable) Type of connection.
    credentialsSecretId String
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    type String
    (Updatable) Type of connection.
    credentialsSecretId string
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    type string
    (Updatable) Type of connection.
    credentials_secret_id str
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    type str
    (Updatable) Type of connection.
    credentialsSecretId String
    (Updatable) The OCID of secret in Oracle Cloud Infrastructure vault, that is used for storage of username and password in JSON format.
    type String
    (Updatable) Type of connection.

    ManagementApplianceHeartbeatConnectionState, ManagementApplianceHeartbeatConnectionStateArgs

    Details string
    Information about current connection status.
    State string
    Current state of the management appliance.
    Type string
    Type of connection.
    Details string
    Information about current connection status.
    State string
    Current state of the management appliance.
    Type string
    Type of connection.
    details String
    Information about current connection status.
    state String
    Current state of the management appliance.
    type String
    Type of connection.
    details string
    Information about current connection status.
    state string
    Current state of the management appliance.
    type string
    Type of connection.
    details str
    Information about current connection status.
    state str
    Current state of the management appliance.
    type str
    Type of connection.
    details String
    Information about current connection status.
    state String
    Current state of the management appliance.
    type String
    Type of connection.

    Import

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

    $ pulumi import oci:Ocvp/managementAppliance:ManagementAppliance test_management_appliance "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.16.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate