1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getMulticloudExternalLocationSummariesMetadata
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 Location Summaries Metadata in Oracle Cloud Infrastructure Multicloud service.

    List externalLocationSummary metadata from Oracle Cloud Infrastructure Region to the Cloud Service Provider region across all regions.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testExternalLocationSummariesMetadata = oci.oci.getMulticloudExternalLocationSummariesMetadata({
        compartmentId: compartmentId,
        subscriptionServiceName: subscriptionServiceName,
        entityType: entityType,
        subscriptionId: subscriptionId,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_external_location_summaries_metadata = oci.oci.get_multicloud_external_location_summaries_metadata(compartment_id=compartment_id,
        subscription_service_name=subscription_service_name,
        entity_type=entity_type,
        subscription_id=subscription_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.GetMulticloudExternalLocationSummariesMetadata(ctx, &oci.GetMulticloudExternalLocationSummariesMetadataArgs{
    			CompartmentId:           compartmentId,
    			SubscriptionServiceName: subscriptionServiceName,
    			EntityType:              pulumi.StringRef(entityType),
    			SubscriptionId:          pulumi.StringRef(subscriptionId),
    		}, 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 testExternalLocationSummariesMetadata = Oci.Oci.GetMulticloudExternalLocationSummariesMetadata.Invoke(new()
        {
            CompartmentId = compartmentId,
            SubscriptionServiceName = subscriptionServiceName,
            EntityType = entityType,
            SubscriptionId = subscriptionId,
        });
    
    });
    
    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.GetMulticloudExternalLocationSummariesMetadataArgs;
    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 testExternalLocationSummariesMetadata = OciFunctions.getMulticloudExternalLocationSummariesMetadata(GetMulticloudExternalLocationSummariesMetadataArgs.builder()
                .compartmentId(compartmentId)
                .subscriptionServiceName(subscriptionServiceName)
                .entityType(entityType)
                .subscriptionId(subscriptionId)
                .build());
    
        }
    }
    
    variables:
      testExternalLocationSummariesMetadata:
        fn::invoke:
          function: oci:oci:getMulticloudExternalLocationSummariesMetadata
          arguments:
            compartmentId: ${compartmentId}
            subscriptionServiceName: ${subscriptionServiceName}
            entityType: ${entityType}
            subscriptionId: ${subscriptionId}
    

    Using getMulticloudExternalLocationSummariesMetadata

    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 getMulticloudExternalLocationSummariesMetadata(args: GetMulticloudExternalLocationSummariesMetadataArgs, opts?: InvokeOptions): Promise<GetMulticloudExternalLocationSummariesMetadataResult>
    function getMulticloudExternalLocationSummariesMetadataOutput(args: GetMulticloudExternalLocationSummariesMetadataOutputArgs, opts?: InvokeOptions): Output<GetMulticloudExternalLocationSummariesMetadataResult>
    def get_multicloud_external_location_summaries_metadata(compartment_id: Optional[str] = None,
                                                            entity_type: Optional[str] = None,
                                                            filters: Optional[Sequence[GetMulticloudExternalLocationSummariesMetadataFilter]] = None,
                                                            limit: Optional[int] = None,
                                                            subscription_id: Optional[str] = None,
                                                            subscription_service_name: Optional[str] = None,
                                                            opts: Optional[InvokeOptions] = None) -> GetMulticloudExternalLocationSummariesMetadataResult
    def get_multicloud_external_location_summaries_metadata_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                            entity_type: Optional[pulumi.Input[str]] = None,
                                                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMulticloudExternalLocationSummariesMetadataFilterArgs]]]] = None,
                                                            limit: Optional[pulumi.Input[int]] = None,
                                                            subscription_id: Optional[pulumi.Input[str]] = None,
                                                            subscription_service_name: Optional[pulumi.Input[str]] = None,
                                                            opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudExternalLocationSummariesMetadataResult]
    func GetMulticloudExternalLocationSummariesMetadata(ctx *Context, args *GetMulticloudExternalLocationSummariesMetadataArgs, opts ...InvokeOption) (*GetMulticloudExternalLocationSummariesMetadataResult, error)
    func GetMulticloudExternalLocationSummariesMetadataOutput(ctx *Context, args *GetMulticloudExternalLocationSummariesMetadataOutputArgs, opts ...InvokeOption) GetMulticloudExternalLocationSummariesMetadataResultOutput

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

    public static class GetMulticloudExternalLocationSummariesMetadata 
    {
        public static Task<GetMulticloudExternalLocationSummariesMetadataResult> InvokeAsync(GetMulticloudExternalLocationSummariesMetadataArgs args, InvokeOptions? opts = null)
        public static Output<GetMulticloudExternalLocationSummariesMetadataResult> Invoke(GetMulticloudExternalLocationSummariesMetadataInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMulticloudExternalLocationSummariesMetadataResult> getMulticloudExternalLocationSummariesMetadata(GetMulticloudExternalLocationSummariesMetadataArgs args, InvokeOptions options)
    public static Output<GetMulticloudExternalLocationSummariesMetadataResult> getMulticloudExternalLocationSummariesMetadata(GetMulticloudExternalLocationSummariesMetadataArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getMulticloudExternalLocationSummariesMetadata:getMulticloudExternalLocationSummariesMetadata
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment 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<GetMulticloudExternalLocationSummariesMetadataFilter>
    Limit int
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    CompartmentId string
    The OCID of the compartment 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 []GetMulticloudExternalLocationSummariesMetadataFilter
    Limit int
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    compartmentId String
    The OCID of the compartment 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<GetMulticloudExternalLocationSummariesMetadataFilter>
    limit Integer
    subscriptionId String
    The OCID of the subscription in which to list resources.
    compartmentId string
    The OCID of the compartment 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 GetMulticloudExternalLocationSummariesMetadataFilter[]
    limit number
    subscriptionId string
    The OCID of the subscription in which to list resources.
    compartment_id str
    The OCID of the compartment 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[GetMulticloudExternalLocationSummariesMetadataFilter]
    limit int
    subscription_id str
    The OCID of the subscription in which to list resources.
    compartmentId String
    The OCID of the compartment 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
    subscriptionId String
    The OCID of the subscription in which to list resources.

    getMulticloudExternalLocationSummariesMetadata Result

    The following output properties are available:

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

    Supporting Types

    GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollection

    items List<Property Map>
    List of ExternalLocationSummariesMetadatumSummary

    GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItem

    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<GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation>
    External location for CSP Region
    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"}
    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"}
    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 []GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation
    External location for CSP Region
    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"}
    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"}
    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<GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation>
    External location for CSP Region
    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"}
    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"}
    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 GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation[]
    External location for CSP Region
    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"}
    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"}
    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[GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation]
    External location for CSP Region
    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_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"}
    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
    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"}
    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"}

    GetMulticloudExternalLocationSummariesMetadataExternalLocationSummariesMetadatumSummaryCollectionItemExternalLocation

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

    GetMulticloudExternalLocationSummariesMetadataFilter

    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