1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getDbmulticloudOracleDbAzureConnectors
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.oci.getDbmulticloudOracleDbAzureConnectors

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Oracle Db Azure Connectors in Oracle Cloud Infrastructure Dbmulticloud service.

    Lists all Oracle DB Azure Connector resources based on the specified filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureConnectors = oci.oci.getDbmulticloudOracleDbAzureConnectors({
        compartmentId: compartmentId,
        dbClusterResourceId: testResource.id,
        displayName: oracleDbAzureConnectorDisplayName,
        oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
        state: oracleDbAzureConnectorState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_connectors = oci.oci.get_dbmulticloud_oracle_db_azure_connectors(compartment_id=compartment_id,
        db_cluster_resource_id=test_resource["id"],
        display_name=oracle_db_azure_connector_display_name,
        oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
        state=oracle_db_azure_connector_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.GetDbmulticloudOracleDbAzureConnectors(ctx, &oci.GetDbmulticloudOracleDbAzureConnectorsArgs{
    			CompartmentId:            compartmentId,
    			DbClusterResourceId:      pulumi.StringRef(testResource.Id),
    			DisplayName:              pulumi.StringRef(oracleDbAzureConnectorDisplayName),
    			OracleDbAzureConnectorId: pulumi.StringRef(testOracleDbAzureConnector.Id),
    			State:                    pulumi.StringRef(oracleDbAzureConnectorState),
    		}, nil)
    		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 testOracleDbAzureConnectors = Oci.Oci.GetDbmulticloudOracleDbAzureConnectors.Invoke(new()
        {
            CompartmentId = compartmentId,
            DbClusterResourceId = testResource.Id,
            DisplayName = oracleDbAzureConnectorDisplayName,
            OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
            State = oracleDbAzureConnectorState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetDbmulticloudOracleDbAzureConnectorsArgs;
    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) {
            final var testOracleDbAzureConnectors = OciFunctions.getDbmulticloudOracleDbAzureConnectors(GetDbmulticloudOracleDbAzureConnectorsArgs.builder()
                .compartmentId(compartmentId)
                .dbClusterResourceId(testResource.id())
                .displayName(oracleDbAzureConnectorDisplayName)
                .oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
                .state(oracleDbAzureConnectorState)
                .build());
    
        }
    }
    
    variables:
      testOracleDbAzureConnectors:
        fn::invoke:
          function: oci:oci:getDbmulticloudOracleDbAzureConnectors
          arguments:
            compartmentId: ${compartmentId}
            dbClusterResourceId: ${testResource.id}
            displayName: ${oracleDbAzureConnectorDisplayName}
            oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
            state: ${oracleDbAzureConnectorState}
    

    Using getDbmulticloudOracleDbAzureConnectors

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDbmulticloudOracleDbAzureConnectors(args: GetDbmulticloudOracleDbAzureConnectorsArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAzureConnectorsResult>
    function getDbmulticloudOracleDbAzureConnectorsOutput(args: GetDbmulticloudOracleDbAzureConnectorsOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAzureConnectorsResult>
    def get_dbmulticloud_oracle_db_azure_connectors(compartment_id: Optional[str] = None,
                                                    db_cluster_resource_id: Optional[str] = None,
                                                    display_name: Optional[str] = None,
                                                    filters: Optional[Sequence[GetDbmulticloudOracleDbAzureConnectorsFilter]] = None,
                                                    oracle_db_azure_connector_id: Optional[str] = None,
                                                    state: Optional[str] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAzureConnectorsResult
    def get_dbmulticloud_oracle_db_azure_connectors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                    db_cluster_resource_id: Optional[pulumi.Input[str]] = None,
                                                    display_name: Optional[pulumi.Input[str]] = None,
                                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAzureConnectorsFilterArgs]]]] = None,
                                                    oracle_db_azure_connector_id: Optional[pulumi.Input[str]] = None,
                                                    state: Optional[pulumi.Input[str]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAzureConnectorsResult]
    func GetDbmulticloudOracleDbAzureConnectors(ctx *Context, args *GetDbmulticloudOracleDbAzureConnectorsArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAzureConnectorsResult, error)
    func GetDbmulticloudOracleDbAzureConnectorsOutput(ctx *Context, args *GetDbmulticloudOracleDbAzureConnectorsOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAzureConnectorsResultOutput

    > Note: This function is named GetDbmulticloudOracleDbAzureConnectors in the Go SDK.

    public static class GetDbmulticloudOracleDbAzureConnectors 
    {
        public static Task<GetDbmulticloudOracleDbAzureConnectorsResult> InvokeAsync(GetDbmulticloudOracleDbAzureConnectorsArgs args, InvokeOptions? opts = null)
        public static Output<GetDbmulticloudOracleDbAzureConnectorsResult> Invoke(GetDbmulticloudOracleDbAzureConnectorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbmulticloudOracleDbAzureConnectorsResult> getDbmulticloudOracleDbAzureConnectors(GetDbmulticloudOracleDbAzureConnectorsArgs args, InvokeOptions options)
    public static Output<GetDbmulticloudOracleDbAzureConnectorsResult> getDbmulticloudOracleDbAzureConnectors(GetDbmulticloudOracleDbAzureConnectorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getDbmulticloudOracleDbAzureConnectors:getDbmulticloudOracleDbAzureConnectors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment.
    DbClusterResourceId string
    The ID of the Database resource.
    DisplayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    Filters List<GetDbmulticloudOracleDbAzureConnectorsFilter>
    OracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The ID of the compartment.
    DbClusterResourceId string
    The ID of the Database resource.
    DisplayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    Filters []GetDbmulticloudOracleDbAzureConnectorsFilter
    OracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    dbClusterResourceId String
    The ID of the Database resource.
    displayName String
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    filters List<GetDbmulticloudOracleDbAzureConnectorsFilter>
    oracleDbAzureConnectorId String
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The ID of the compartment.
    dbClusterResourceId string
    The ID of the Database resource.
    displayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    filters GetDbmulticloudOracleDbAzureConnectorsFilter[]
    oracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The ID of the compartment.
    db_cluster_resource_id str
    The ID of the Database resource.
    display_name str
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    filters Sequence[GetDbmulticloudOracleDbAzureConnectorsFilter]
    oracle_db_azure_connector_id str
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    dbClusterResourceId String
    The ID of the Database resource.
    displayName String
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    filters List<Property Map>
    oracleDbAzureConnectorId String
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getDbmulticloudOracleDbAzureConnectors Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAzureConnectorSummaryCollections List<GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection>
    The list of oracle_db_azure_connector_summary_collection.
    DbClusterResourceId string
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    DisplayName string
    Oracle DB Azure Connector resource name.
    Filters List<GetDbmulticloudOracleDbAzureConnectorsFilter>
    OracleDbAzureConnectorId string
    State string
    The current lifecycle state of the Azure Arc Agent resource.
    CompartmentId string
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAzureConnectorSummaryCollections []GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection
    The list of oracle_db_azure_connector_summary_collection.
    DbClusterResourceId string
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    DisplayName string
    Oracle DB Azure Connector resource name.
    Filters []GetDbmulticloudOracleDbAzureConnectorsFilter
    OracleDbAzureConnectorId string
    State string
    The current lifecycle state of the Azure Arc Agent resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureConnectorSummaryCollections List<GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection>
    The list of oracle_db_azure_connector_summary_collection.
    dbClusterResourceId String
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    displayName String
    Oracle DB Azure Connector resource name.
    filters List<GetDbmulticloudOracleDbAzureConnectorsFilter>
    oracleDbAzureConnectorId String
    state String
    The current lifecycle state of the Azure Arc Agent resource.
    compartmentId string
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    id string
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureConnectorSummaryCollections GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection[]
    The list of oracle_db_azure_connector_summary_collection.
    dbClusterResourceId string
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    displayName string
    Oracle DB Azure Connector resource name.
    filters GetDbmulticloudOracleDbAzureConnectorsFilter[]
    oracleDbAzureConnectorId string
    state string
    The current lifecycle state of the Azure Arc Agent resource.
    compartment_id str
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    id str
    The provider-assigned unique ID for this managed resource.
    oracle_db_azure_connector_summary_collections Sequence[GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection]
    The list of oracle_db_azure_connector_summary_collection.
    db_cluster_resource_id str
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    display_name str
    Oracle DB Azure Connector resource name.
    filters Sequence[GetDbmulticloudOracleDbAzureConnectorsFilter]
    oracle_db_azure_connector_id str
    state str
    The current lifecycle state of the Azure Arc Agent resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB Azure Connector resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureConnectorSummaryCollections List<Property Map>
    The list of oracle_db_azure_connector_summary_collection.
    dbClusterResourceId String
    The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
    displayName String
    Oracle DB Azure Connector resource name.
    filters List<Property Map>
    oracleDbAzureConnectorId String
    state String
    The current lifecycle state of the Azure Arc Agent resource.

    Supporting Types

    GetDbmulticloudOracleDbAzureConnectorsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection

    GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItem

    AccessToken string
    Azure bearer access token.
    ArcAgentNodes List<GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode>
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    AzureIdentityConnectivityStatus string
    The current Connectivity status of Azure Identity Connector resource.
    AzureIdentityMechanism string
    Azure Identity mechanism.
    AzureResourceGroup string
    Azure Resource group name.
    AzureSubscriptionId string
    Azure Subscription ID.
    AzureTenantId string
    Azure Tenant ID.
    CompartmentId string
    The ID of the compartment.
    DbClusterResourceId string
    The ID of the Database resource.
    DisplayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    Id string
    The OCID of the Oracle DB Azure Connector resource.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Connector resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    AccessToken string
    Azure bearer access token.
    ArcAgentNodes []GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    AzureIdentityConnectivityStatus string
    The current Connectivity status of Azure Identity Connector resource.
    AzureIdentityMechanism string
    Azure Identity mechanism.
    AzureResourceGroup string
    Azure Resource group name.
    AzureSubscriptionId string
    Azure Subscription ID.
    AzureTenantId string
    Azure Tenant ID.
    CompartmentId string
    The ID of the compartment.
    DbClusterResourceId string
    The ID of the Database resource.
    DisplayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    Id string
    The OCID of the Oracle DB Azure Connector resource.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Connector resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    accessToken String
    Azure bearer access token.
    arcAgentNodes List<GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode>
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    azureIdentityConnectivityStatus String
    The current Connectivity status of Azure Identity Connector resource.
    azureIdentityMechanism String
    Azure Identity mechanism.
    azureResourceGroup String
    Azure Resource group name.
    azureSubscriptionId String
    Azure Subscription ID.
    azureTenantId String
    Azure Tenant ID.
    compartmentId String
    The ID of the compartment.
    dbClusterResourceId String
    The ID of the Database resource.
    displayName String
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    id String
    The OCID of the Oracle DB Azure Connector resource.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Connector resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    accessToken string
    Azure bearer access token.
    arcAgentNodes GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode[]
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    azureIdentityConnectivityStatus string
    The current Connectivity status of Azure Identity Connector resource.
    azureIdentityMechanism string
    Azure Identity mechanism.
    azureResourceGroup string
    Azure Resource group name.
    azureSubscriptionId string
    Azure Subscription ID.
    azureTenantId string
    Azure Tenant ID.
    compartmentId string
    The ID of the compartment.
    dbClusterResourceId string
    The ID of the Database resource.
    displayName string
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    id string
    The OCID of the Oracle DB Azure Connector resource.
    lastModification string
    Description of the latest modification of the Oracle DB Azure Connector resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated string
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    access_token str
    Azure bearer access token.
    arc_agent_nodes Sequence[GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode]
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    azure_identity_connectivity_status str
    The current Connectivity status of Azure Identity Connector resource.
    azure_identity_mechanism str
    Azure Identity mechanism.
    azure_resource_group str
    Azure Resource group name.
    azure_subscription_id str
    Azure Subscription ID.
    azure_tenant_id str
    Azure Tenant ID.
    compartment_id str
    The ID of the compartment.
    db_cluster_resource_id str
    The ID of the Database resource.
    display_name str
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    id str
    The OCID of the Oracle DB Azure Connector resource.
    last_modification str
    Description of the latest modification of the Oracle DB Azure Connector resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    time_created str
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    accessToken String
    Azure bearer access token.
    arcAgentNodes List<Property Map>
    List of all VMs where Arc Agent is installed under Cloud VM Cluster.
    azureIdentityConnectivityStatus String
    The current Connectivity status of Azure Identity Connector resource.
    azureIdentityMechanism String
    Azure Identity mechanism.
    azureResourceGroup String
    Azure Resource group name.
    azureSubscriptionId String
    Azure Subscription ID.
    azureTenantId String
    Azure Tenant ID.
    compartmentId String
    The ID of the compartment.
    dbClusterResourceId String
    The ID of the Database resource.
    displayName String
    A filter to return Oracle DB Azure Connector resources that match the specified display name.
    id String
    The OCID of the Oracle DB Azure Connector resource.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Connector resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    Time when the Oracle DB Azure Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNode

    CurrentArcAgentVersion string
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    HostId string
    Host ID.
    HostName string
    Host name or Azure Arc Agent name.
    Status string
    The current status of the Azure Arc Agent resource.
    TimeLastChecked string
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    CurrentArcAgentVersion string
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    HostId string
    Host ID.
    HostName string
    Host name or Azure Arc Agent name.
    Status string
    The current status of the Azure Arc Agent resource.
    TimeLastChecked string
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    currentArcAgentVersion String
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    hostId String
    Host ID.
    hostName String
    Host name or Azure Arc Agent name.
    status String
    The current status of the Azure Arc Agent resource.
    timeLastChecked String
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    currentArcAgentVersion string
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    hostId string
    Host ID.
    hostName string
    Host name or Azure Arc Agent name.
    status string
    The current status of the Azure Arc Agent resource.
    timeLastChecked string
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    current_arc_agent_version str
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    host_id str
    Host ID.
    host_name str
    Host name or Azure Arc Agent name.
    status str
    The current status of the Azure Arc Agent resource.
    time_last_checked str
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    currentArcAgentVersion String
    Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
    hostId String
    Host ID.
    hostName String
    Host name or Azure Arc Agent name.
    status String
    The current status of the Azure Arc Agent resource.
    timeLastChecked String
    Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    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.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate