Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.oci.getDbmulticloudOracleDbAzureConnectors
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 dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Db
Cluster stringResource Id - The ID of the Database resource.
- Display
Name string - A filter to return Oracle DB Azure Connector resources that match the specified display name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Connectors Filter> - Oracle
Db stringAzure Connector Id - 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 string - The ID of the compartment.
- Db
Cluster stringResource Id - The ID of the Database resource.
- Display
Name string - A filter to return Oracle DB Azure Connector resources that match the specified display name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Connectors Filter - Oracle
Db stringAzure Connector Id - 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 String - The ID of the compartment.
- db
Cluster StringResource Id - The ID of the Database resource.
- display
Name String - A filter to return Oracle DB Azure Connector resources that match the specified display name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Connectors Filter> - oracle
Db StringAzure Connector Id - 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 string - The ID of the compartment.
- db
Cluster stringResource Id - The ID of the Database resource.
- display
Name string - A filter to return Oracle DB Azure Connector resources that match the specified display name.
- filters
Get
Dbmulticloud Oracle Db Azure Connectors Filter[] - oracle
Db stringAzure Connector Id - 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_ strresource_ id - 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[Get
Dbmulticloud Oracle Db Azure Connectors Filter] - oracle_
db_ strazure_ connector_ id - 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.
- compartment
Id String - The ID of the compartment.
- db
Cluster StringResource Id - The ID of the Database resource.
- display
Name String - A filter to return Oracle DB Azure Connector resources that match the specified display name.
- filters List<Property Map>
- oracle
Db StringAzure Connector Id - 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:
- Compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Connector resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db List<GetAzure Connector Summary Collections Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection> - The list of oracle_db_azure_connector_summary_collection.
- Db
Cluster stringResource Id - The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
- Display
Name string - Oracle DB Azure Connector resource name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Connectors Filter> - Oracle
Db stringAzure Connector Id - State string
- The current lifecycle state of the Azure Arc Agent resource.
- Compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Connector resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db []GetAzure Connector Summary Collections Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection - The list of oracle_db_azure_connector_summary_collection.
- Db
Cluster stringResource Id - The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
- Display
Name string - Oracle DB Azure Connector resource name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Connectors Filter - Oracle
Db stringAzure Connector Id - State string
- The current lifecycle state of the Azure Arc Agent resource.
- compartment
Id String - The OCID of the compartment that contains Oracle DB Azure Connector resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<GetAzure Connector Summary Collections Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection> - The list of oracle_db_azure_connector_summary_collection.
- db
Cluster StringResource Id - The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
- display
Name String - Oracle DB Azure Connector resource name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Connectors Filter> - oracle
Db StringAzure Connector Id - state String
- The current lifecycle state of the Azure Arc Agent resource.
- compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Connector resource.
- id string
- The provider-assigned unique ID for this managed resource.
- oracle
Db GetAzure Connector Summary Collections Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection[] - The list of oracle_db_azure_connector_summary_collection.
- db
Cluster stringResource Id - The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
- display
Name string - Oracle DB Azure Connector resource name.
- filters
Get
Dbmulticloud Oracle Db Azure Connectors Filter[] - oracle
Db stringAzure Connector Id - 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_ Sequence[Getazure_ connector_ summary_ collections Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection] - The list of oracle_db_azure_connector_summary_collection.
- db_
cluster_ strresource_ id - 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[Get
Dbmulticloud Oracle Db Azure Connectors Filter] - oracle_
db_ strazure_ connector_ id - state str
- The current lifecycle state of the Azure Arc Agent resource.
- compartment
Id String - The OCID of the compartment that contains Oracle DB Azure Connector resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<Property Map>Azure Connector Summary Collections - The list of oracle_db_azure_connector_summary_collection.
- db
Cluster StringResource Id - The OCID of the Oracle DB Cloud VM Cluster resource where this Azure Arc Agent identity to configure.
- display
Name String - Oracle DB Azure Connector resource name.
- filters List<Property Map>
- oracle
Db StringAzure Connector Id - state String
- The current lifecycle state of the Azure Arc Agent resource.
Supporting Types
GetDbmulticloudOracleDbAzureConnectorsFilter
GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollection
GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItem
- Access
Token string - Azure bearer access token.
- Arc
Agent List<GetNodes Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection Item Arc Agent Node> - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- Azure
Identity stringConnectivity Status - The current Connectivity status of Azure Identity Connector resource.
- Azure
Identity stringMechanism - Azure Identity mechanism.
- Azure
Resource stringGroup - Azure Resource group name.
- Azure
Subscription stringId - Azure Subscription ID.
- Azure
Tenant stringId - Azure Tenant ID.
- Compartment
Id string - The ID of the compartment.
- Db
Cluster stringResource Id - The ID of the Database resource.
- Display
Name 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.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Connector resource.
- Lifecycle
State stringDetails - 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.
- Time
Created 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'
- Time
Updated 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 string - Azure bearer access token.
- Arc
Agent []GetNodes Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection Item Arc Agent Node - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- Azure
Identity stringConnectivity Status - The current Connectivity status of Azure Identity Connector resource.
- Azure
Identity stringMechanism - Azure Identity mechanism.
- Azure
Resource stringGroup - Azure Resource group name.
- Azure
Subscription stringId - Azure Subscription ID.
- Azure
Tenant stringId - Azure Tenant ID.
- Compartment
Id string - The ID of the compartment.
- Db
Cluster stringResource Id - The ID of the Database resource.
- Display
Name 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.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Connector resource.
- Lifecycle
State stringDetails - 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.
- Time
Created 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'
- Time
Updated 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 String - Azure bearer access token.
- arc
Agent List<GetNodes Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection Item Arc Agent Node> - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- azure
Identity StringConnectivity Status - The current Connectivity status of Azure Identity Connector resource.
- azure
Identity StringMechanism - Azure Identity mechanism.
- azure
Resource StringGroup - Azure Resource group name.
- azure
Subscription StringId - Azure Subscription ID.
- azure
Tenant StringId - Azure Tenant ID.
- compartment
Id String - The ID of the compartment.
- db
Cluster StringResource Id - The ID of the Database resource.
- display
Name 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.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Connector resource.
- lifecycle
State StringDetails - 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.
- time
Created 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'
- time
Updated 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 string - Azure bearer access token.
- arc
Agent GetNodes Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection Item Arc Agent Node[] - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- azure
Identity stringConnectivity Status - The current Connectivity status of Azure Identity Connector resource.
- azure
Identity stringMechanism - Azure Identity mechanism.
- azure
Resource stringGroup - Azure Resource group name.
- azure
Subscription stringId - Azure Subscription ID.
- azure
Tenant stringId - Azure Tenant ID.
- compartment
Id string - The ID of the compartment.
- db
Cluster stringResource Id - The ID of the Database resource.
- display
Name 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.
- last
Modification string - Description of the latest modification of the Oracle DB Azure Connector resource.
- lifecycle
State stringDetails - 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.
- time
Created 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'
- time
Updated 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_ Sequence[Getnodes Dbmulticloud Oracle Db Azure Connectors Oracle Db Azure Connector Summary Collection Item Arc Agent Node] - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- azure_
identity_ strconnectivity_ status - The current Connectivity status of Azure Identity Connector resource.
- azure_
identity_ strmechanism - Azure Identity mechanism.
- azure_
resource_ strgroup - Azure Resource group name.
- azure_
subscription_ strid - Azure Subscription ID.
- azure_
tenant_ strid - Azure Tenant ID.
- compartment_
id str - The ID of the compartment.
- db_
cluster_ strresource_ id - 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_ strdetails - 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'
- access
Token String - Azure bearer access token.
- arc
Agent List<Property Map>Nodes - List of all VMs where Arc Agent is installed under Cloud VM Cluster.
- azure
Identity StringConnectivity Status - The current Connectivity status of Azure Identity Connector resource.
- azure
Identity StringMechanism - Azure Identity mechanism.
- azure
Resource StringGroup - Azure Resource group name.
- azure
Subscription StringId - Azure Subscription ID.
- azure
Tenant StringId - Azure Tenant ID.
- compartment
Id String - The ID of the compartment.
- db
Cluster StringResource Id - The ID of the Database resource.
- display
Name 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.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Connector resource.
- lifecycle
State StringDetails - 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.
- time
Created 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'
- time
Updated 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
- Current
Arc stringAgent Version - Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
- Host
Id string - Host ID.
- Host
Name string - Host name or Azure Arc Agent name.
- Status string
- The current status of the Azure Arc Agent resource.
- Time
Last stringChecked - Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Current
Arc stringAgent Version - Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
- Host
Id string - Host ID.
- Host
Name string - Host name or Azure Arc Agent name.
- Status string
- The current status of the Azure Arc Agent resource.
- Time
Last stringChecked - Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- current
Arc StringAgent Version - Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
- host
Id String - Host ID.
- host
Name String - Host name or Azure Arc Agent name.
- status String
- The current status of the Azure Arc Agent resource.
- time
Last StringChecked - Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- current
Arc stringAgent Version - Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
- host
Id string - Host ID.
- host
Name string - Host name or Azure Arc Agent name.
- status string
- The current status of the Azure Arc Agent resource.
- time
Last stringChecked - Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- current_
arc_ stragent_ version - 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_ strchecked - Time when the Azure Arc Agent's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- current
Arc StringAgent Version - Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
- host
Id String - Host ID.
- host
Name String - Host name or Azure Arc Agent name.
- status String
- The current status of the Azure Arc Agent resource.
- time
Last StringChecked - 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
ociTerraform Provider.
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
