1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getMulticloudExternalLocationsMetadata
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    This data source provides the list of External Locations Metadata in Oracle Cloud Infrastructure Multicloud service.

    List externalLocationDetail metadata from Oracle Cloud Infrastructure to Cloud Service Provider for regions, Availability Zones, and Cluster Placement Group ID.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testExternalLocationsMetadata = oci.oci.getMulticloudExternalLocationsMetadata({
        compartmentId: compartmentId,
        subscriptionId: subscriptionId,
        subscriptionServiceName: subscriptionServiceName,
        entityType: externalLocationsMetadataEntityType,
        linkedCompartmentId: linkedCompartmentId,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_external_locations_metadata = oci.oci.get_multicloud_external_locations_metadata(compartment_id=compartment_id,
        subscription_id=subscription_id,
        subscription_service_name=subscription_service_name,
        entity_type=external_locations_metadata_entity_type,
        linked_compartment_id=linked_compartment_id)
    
    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.GetMulticloudExternalLocationsMetadata(ctx, &oci.GetMulticloudExternalLocationsMetadataArgs{
    			CompartmentId:           compartmentId,
    			SubscriptionId:          subscriptionId,
    			SubscriptionServiceName: subscriptionServiceName,
    			EntityType:              pulumi.StringRef(externalLocationsMetadataEntityType),
    			LinkedCompartmentId:     pulumi.StringRef(linkedCompartmentId),
    		}, 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 testExternalLocationsMetadata = Oci.Oci.GetMulticloudExternalLocationsMetadata.Invoke(new()
        {
            CompartmentId = compartmentId,
            SubscriptionId = subscriptionId,
            SubscriptionServiceName = subscriptionServiceName,
            EntityType = externalLocationsMetadataEntityType,
            LinkedCompartmentId = linkedCompartmentId,
        });
    
    });
    
    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.GetMulticloudExternalLocationsMetadataArgs;
    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 testExternalLocationsMetadata = OciFunctions.getMulticloudExternalLocationsMetadata(GetMulticloudExternalLocationsMetadataArgs.builder()
                .compartmentId(compartmentId)
                .subscriptionId(subscriptionId)
                .subscriptionServiceName(subscriptionServiceName)
                .entityType(externalLocationsMetadataEntityType)
                .linkedCompartmentId(linkedCompartmentId)
                .build());
    
        }
    }
    
    variables:
      testExternalLocationsMetadata:
        fn::invoke:
          function: oci:oci:getMulticloudExternalLocationsMetadata
          arguments:
            compartmentId: ${compartmentId}
            subscriptionId: ${subscriptionId}
            subscriptionServiceName: ${subscriptionServiceName}
            entityType: ${externalLocationsMetadataEntityType}
            linkedCompartmentId: ${linkedCompartmentId}
    

    Using getMulticloudExternalLocationsMetadata

    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 getMulticloudExternalLocationsMetadata(args: GetMulticloudExternalLocationsMetadataArgs, opts?: InvokeOptions): Promise<GetMulticloudExternalLocationsMetadataResult>
    function getMulticloudExternalLocationsMetadataOutput(args: GetMulticloudExternalLocationsMetadataOutputArgs, opts?: InvokeOptions): Output<GetMulticloudExternalLocationsMetadataResult>
    def get_multicloud_external_locations_metadata(compartment_id: Optional[str] = None,
                                                   entity_type: Optional[str] = None,
                                                   filters: Optional[Sequence[GetMulticloudExternalLocationsMetadataFilter]] = None,
                                                   limit: Optional[int] = None,
                                                   linked_compartment_id: Optional[str] = None,
                                                   subscription_id: Optional[str] = None,
                                                   subscription_service_name: Optional[str] = None,
                                                   opts: Optional[InvokeOptions] = None) -> GetMulticloudExternalLocationsMetadataResult
    def get_multicloud_external_locations_metadata_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                   entity_type: Optional[pulumi.Input[str]] = None,
                                                   filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMulticloudExternalLocationsMetadataFilterArgs]]]] = None,
                                                   limit: Optional[pulumi.Input[int]] = None,
                                                   linked_compartment_id: Optional[pulumi.Input[str]] = None,
                                                   subscription_id: Optional[pulumi.Input[str]] = None,
                                                   subscription_service_name: Optional[pulumi.Input[str]] = None,
                                                   opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudExternalLocationsMetadataResult]
    func GetMulticloudExternalLocationsMetadata(ctx *Context, args *GetMulticloudExternalLocationsMetadataArgs, opts ...InvokeOption) (*GetMulticloudExternalLocationsMetadataResult, error)
    func GetMulticloudExternalLocationsMetadataOutput(ctx *Context, args *GetMulticloudExternalLocationsMetadataOutputArgs, opts ...InvokeOption) GetMulticloudExternalLocationsMetadataResultOutput

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

    public static class GetMulticloudExternalLocationsMetadata 
    {
        public static Task<GetMulticloudExternalLocationsMetadataResult> InvokeAsync(GetMulticloudExternalLocationsMetadataArgs args, InvokeOptions? opts = null)
        public static Output<GetMulticloudExternalLocationsMetadataResult> Invoke(GetMulticloudExternalLocationsMetadataInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMulticloudExternalLocationsMetadataResult> getMulticloudExternalLocationsMetadata(GetMulticloudExternalLocationsMetadataArgs args, InvokeOptions options)
    public static Output<GetMulticloudExternalLocationsMetadataResult> getMulticloudExternalLocationsMetadata(GetMulticloudExternalLocationsMetadataArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getMulticloudExternalLocationsMetadata:getMulticloudExternalLocationsMetadata
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    SubscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    EntityType string
    The resource type query (i.e. dbsystem, instance etc.)
    Filters List<GetMulticloudExternalLocationsMetadataFilter>
    Limit int
    LinkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    SubscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    EntityType string
    The resource type query (i.e. dbsystem, instance etc.)
    Filters []GetMulticloudExternalLocationsMetadataFilter
    Limit int
    LinkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    subscriptionServiceName String
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    entityType String
    The resource type query (i.e. dbsystem, instance etc.)
    filters List<GetMulticloudExternalLocationsMetadataFilter>
    limit Integer
    linkedCompartmentId String
    The OCID of the compartment in which linked to Resource.
    compartmentId string
    The OCID of the compartment in which to list resources.
    subscriptionId string
    The OCID of the subscription in which to list resources.
    subscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    entityType string
    The resource type query (i.e. dbsystem, instance etc.)
    filters GetMulticloudExternalLocationsMetadataFilter[]
    limit number
    linkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    compartment_id str
    The OCID of the compartment in which to list resources.
    subscription_id str
    The OCID of the subscription in which to list resources.
    subscription_service_name str
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    entity_type str
    The resource type query (i.e. dbsystem, instance etc.)
    filters Sequence[GetMulticloudExternalLocationsMetadataFilter]
    limit int
    linked_compartment_id str
    The OCID of the compartment in which linked to Resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    subscriptionServiceName String
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    entityType String
    The resource type query (i.e. dbsystem, instance etc.)
    filters List<Property Map>
    limit Number
    linkedCompartmentId String
    The OCID of the compartment in which linked to Resource.

    getMulticloudExternalLocationsMetadata Result

    The following output properties are available:

    compartmentId String
    externalLocationsMetadatumCollections List<Property Map>
    The list of ExternalLocationsMetadata.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionId String
    subscriptionServiceName String
    entityType String
    filters List<Property Map>
    limit Number
    linkedCompartmentId String

    Supporting Types

    GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollection

    items List<Property Map>
    List of ExternalLocationsMetadatumSummary

    GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItem

    CpgId string
    Cluster Placement Group OCID
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    ExternalLocations List<GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation>
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    FreeformTags Dictionary<string, string>
    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"}
    OciLogicalAd string
    Oracle Cloud Infrastructure logical ad name
    OciPhysicalAd string
    Oracle Cloud Infrastructure physical ad name
    OciRegion string
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    CpgId string
    Cluster Placement Group OCID
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    ExternalLocations []GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    FreeformTags map[string]string
    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"}
    OciLogicalAd string
    Oracle Cloud Infrastructure logical ad name
    OciPhysicalAd string
    Oracle Cloud Infrastructure physical ad name
    OciRegion string
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    cpgId String
    Cluster Placement Group OCID
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    externalLocations List<GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation>
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    freeformTags Map<String,String>
    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"}
    ociLogicalAd String
    Oracle Cloud Infrastructure logical ad name
    ociPhysicalAd String
    Oracle Cloud Infrastructure physical ad name
    ociRegion String
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    cpgId string
    Cluster Placement Group OCID
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    externalLocations GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation[]
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    freeformTags {[key: string]: string}
    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"}
    ociLogicalAd string
    Oracle Cloud Infrastructure logical ad name
    ociPhysicalAd string
    Oracle Cloud Infrastructure physical ad name
    ociRegion string
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    cpg_id str
    Cluster Placement Group OCID
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    external_locations Sequence[GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation]
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    freeform_tags Mapping[str, str]
    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"}
    oci_logical_ad str
    Oracle Cloud Infrastructure logical ad name
    oci_physical_ad str
    Oracle Cloud Infrastructure physical ad name
    oci_region str
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    cpgId String
    Cluster Placement Group OCID
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    externalLocations List<Property Map>
    External location for CSP Region, CSP-Physical-AZ, CSP-Logical-AZ
    freeformTags Map<String>
    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"}
    ociLogicalAd String
    Oracle Cloud Infrastructure logical ad name
    ociPhysicalAd String
    Oracle Cloud Infrastructure physical ad name
    ociRegion String
    Oracle Cloud Infrastructure region identifier https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocation

    CspLogicalAz string
    A mapping of CSP physical availability zone to CSP logical availability zone.
    CspPhysicalAz string
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    CspPhysicalAzDisplayName string
    User friendly display name for cspPhysicalAZ
    CspRegion string
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    CspRegionDisplayName string
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    CspZoneKeyReferenceIds List<GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId>
    This is CSP zone key reference
    ServiceName string
    The serviceName that externalLocation map object belongs to.
    CspLogicalAz string
    A mapping of CSP physical availability zone to CSP logical availability zone.
    CspPhysicalAz string
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    CspPhysicalAzDisplayName string
    User friendly display name for cspPhysicalAZ
    CspRegion string
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    CspRegionDisplayName string
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    CspZoneKeyReferenceIds []GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId
    This is CSP zone key reference
    ServiceName string
    The serviceName that externalLocation map object belongs to.
    cspLogicalAz String
    A mapping of CSP physical availability zone to CSP logical availability zone.
    cspPhysicalAz String
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    cspPhysicalAzDisplayName String
    User friendly display name for cspPhysicalAZ
    cspRegion String
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    cspRegionDisplayName String
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    cspZoneKeyReferenceIds List<GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId>
    This is CSP zone key reference
    serviceName String
    The serviceName that externalLocation map object belongs to.
    cspLogicalAz string
    A mapping of CSP physical availability zone to CSP logical availability zone.
    cspPhysicalAz string
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    cspPhysicalAzDisplayName string
    User friendly display name for cspPhysicalAZ
    cspRegion string
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    cspRegionDisplayName string
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    cspZoneKeyReferenceIds GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId[]
    This is CSP zone key reference
    serviceName string
    The serviceName that externalLocation map object belongs to.
    csp_logical_az str
    A mapping of CSP physical availability zone to CSP logical availability zone.
    csp_physical_az str
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    csp_physical_az_display_name str
    User friendly display name for cspPhysicalAZ
    csp_region str
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    csp_region_display_name str
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    csp_zone_key_reference_ids Sequence[GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId]
    This is CSP zone key reference
    service_name str
    The serviceName that externalLocation map object belongs to.
    cspLogicalAz String
    A mapping of CSP physical availability zone to CSP logical availability zone.
    cspPhysicalAz String
    A mapping of Oracle Cloud Infrastructure site group name to CSP physical availability zone name
    cspPhysicalAzDisplayName String
    User friendly display name for cspPhysicalAZ
    cspRegion String
    CSP region corresponding to the given Oracle Cloud Infrastructure region
    cspRegionDisplayName String
    CSP region display Name corresponding to the given Oracle Cloud Infrastructure region
    cspZoneKeyReferenceIds List<Property Map>
    This is CSP zone key reference
    serviceName String
    The serviceName that externalLocation map object belongs to.

    GetMulticloudExternalLocationsMetadataExternalLocationsMetadatumCollectionItemExternalLocationCspZoneKeyReferenceId

    KeyName string
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    KeyValue string
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account
    KeyName string
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    KeyValue string
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account
    keyName String
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    keyValue String
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account
    keyName string
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    keyValue string
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account
    key_name str
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    key_value str
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account
    keyName String
    KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName
    keyValue String
    Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account

    GetMulticloudExternalLocationsMetadataFilter

    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

    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.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate