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

    This data source provides the list of Api Metadata By Entity Types in Oracle Cloud Infrastructure Apiaccesscontrol service.

    Gets a list of ApiMetadata Grouped By Entity Types.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testApiMetadataByEntityTypes = oci.oci.getApiaccesscontrolApiMetadataByEntityTypes({
        compartmentId: compartmentId,
        displayName: apiMetadataByEntityTypeDisplayName,
        resourceType: apiMetadataByEntityTypeResourceType,
        state: apiMetadataByEntityTypeState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_api_metadata_by_entity_types = oci.oci.get_apiaccesscontrol_api_metadata_by_entity_types(compartment_id=compartment_id,
        display_name=api_metadata_by_entity_type_display_name,
        resource_type=api_metadata_by_entity_type_resource_type,
        state=api_metadata_by_entity_type_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.GetApiaccesscontrolApiMetadataByEntityTypes(ctx, &oci.GetApiaccesscontrolApiMetadataByEntityTypesArgs{
    			CompartmentId: pulumi.StringRef(compartmentId),
    			DisplayName:   pulumi.StringRef(apiMetadataByEntityTypeDisplayName),
    			ResourceType:  pulumi.StringRef(apiMetadataByEntityTypeResourceType),
    			State:         pulumi.StringRef(apiMetadataByEntityTypeState),
    		}, 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 testApiMetadataByEntityTypes = Oci.Oci.GetApiaccesscontrolApiMetadataByEntityTypes.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = apiMetadataByEntityTypeDisplayName,
            ResourceType = apiMetadataByEntityTypeResourceType,
            State = apiMetadataByEntityTypeState,
        });
    
    });
    
    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.GetApiaccesscontrolApiMetadataByEntityTypesArgs;
    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 testApiMetadataByEntityTypes = OciFunctions.getApiaccesscontrolApiMetadataByEntityTypes(GetApiaccesscontrolApiMetadataByEntityTypesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(apiMetadataByEntityTypeDisplayName)
                .resourceType(apiMetadataByEntityTypeResourceType)
                .state(apiMetadataByEntityTypeState)
                .build());
    
        }
    }
    
    variables:
      testApiMetadataByEntityTypes:
        fn::invoke:
          function: oci:oci:getApiaccesscontrolApiMetadataByEntityTypes
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${apiMetadataByEntityTypeDisplayName}
            resourceType: ${apiMetadataByEntityTypeResourceType}
            state: ${apiMetadataByEntityTypeState}
    

    Using getApiaccesscontrolApiMetadataByEntityTypes

    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 getApiaccesscontrolApiMetadataByEntityTypes(args: GetApiaccesscontrolApiMetadataByEntityTypesArgs, opts?: InvokeOptions): Promise<GetApiaccesscontrolApiMetadataByEntityTypesResult>
    function getApiaccesscontrolApiMetadataByEntityTypesOutput(args: GetApiaccesscontrolApiMetadataByEntityTypesOutputArgs, opts?: InvokeOptions): Output<GetApiaccesscontrolApiMetadataByEntityTypesResult>
    def get_apiaccesscontrol_api_metadata_by_entity_types(compartment_id: Optional[str] = None,
                                                          display_name: Optional[str] = None,
                                                          filters: Optional[Sequence[GetApiaccesscontrolApiMetadataByEntityTypesFilter]] = None,
                                                          resource_type: Optional[str] = None,
                                                          state: Optional[str] = None,
                                                          opts: Optional[InvokeOptions] = None) -> GetApiaccesscontrolApiMetadataByEntityTypesResult
    def get_apiaccesscontrol_api_metadata_by_entity_types_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                          display_name: Optional[pulumi.Input[str]] = None,
                                                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetApiaccesscontrolApiMetadataByEntityTypesFilterArgs]]]] = None,
                                                          resource_type: Optional[pulumi.Input[str]] = None,
                                                          state: Optional[pulumi.Input[str]] = None,
                                                          opts: Optional[InvokeOptions] = None) -> Output[GetApiaccesscontrolApiMetadataByEntityTypesResult]
    func GetApiaccesscontrolApiMetadataByEntityTypes(ctx *Context, args *GetApiaccesscontrolApiMetadataByEntityTypesArgs, opts ...InvokeOption) (*GetApiaccesscontrolApiMetadataByEntityTypesResult, error)
    func GetApiaccesscontrolApiMetadataByEntityTypesOutput(ctx *Context, args *GetApiaccesscontrolApiMetadataByEntityTypesOutputArgs, opts ...InvokeOption) GetApiaccesscontrolApiMetadataByEntityTypesResultOutput

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

    public static class GetApiaccesscontrolApiMetadataByEntityTypes 
    {
        public static Task<GetApiaccesscontrolApiMetadataByEntityTypesResult> InvokeAsync(GetApiaccesscontrolApiMetadataByEntityTypesArgs args, InvokeOptions? opts = null)
        public static Output<GetApiaccesscontrolApiMetadataByEntityTypesResult> Invoke(GetApiaccesscontrolApiMetadataByEntityTypesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApiaccesscontrolApiMetadataByEntityTypesResult> getApiaccesscontrolApiMetadataByEntityTypes(GetApiaccesscontrolApiMetadataByEntityTypesArgs args, InvokeOptions options)
    public static Output<GetApiaccesscontrolApiMetadataByEntityTypesResult> getApiaccesscontrolApiMetadataByEntityTypes(GetApiaccesscontrolApiMetadataByEntityTypesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getApiaccesscontrolApiMetadataByEntityTypes:getApiaccesscontrolApiMetadataByEntityTypes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetApiaccesscontrolApiMetadataByEntityTypesFilter>
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetApiaccesscontrolApiMetadataByEntityTypesFilter
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetApiaccesscontrolApiMetadataByEntityTypesFilter>
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetApiaccesscontrolApiMetadataByEntityTypesFilter[]
    resourceType string
    A filter to return only lists of resources that match the entire given service type.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetApiaccesscontrolApiMetadataByEntityTypesFilter]
    resource_type str
    A filter to return only lists of resources that match the entire given service type.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getApiaccesscontrolApiMetadataByEntityTypes Result

    The following output properties are available:

    ApiMetadataByEntityTypeCollections List<GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection>
    The list of api_metadata_by_entity_type_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    DisplayName string
    Name of the Api.
    Filters List<GetApiaccesscontrolApiMetadataByEntityTypesFilter>
    ResourceType string
    State string
    The current state of the ApiMetadata.
    ApiMetadataByEntityTypeCollections []GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection
    The list of api_metadata_by_entity_type_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    DisplayName string
    Name of the Api.
    Filters []GetApiaccesscontrolApiMetadataByEntityTypesFilter
    ResourceType string
    State string
    The current state of the ApiMetadata.
    apiMetadataByEntityTypeCollections List<GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection>
    The list of api_metadata_by_entity_type_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    displayName String
    Name of the Api.
    filters List<GetApiaccesscontrolApiMetadataByEntityTypesFilter>
    resourceType String
    state String
    The current state of the ApiMetadata.
    apiMetadataByEntityTypeCollections GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection[]
    The list of api_metadata_by_entity_type_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    compartmentId string
    displayName string
    Name of the Api.
    filters GetApiaccesscontrolApiMetadataByEntityTypesFilter[]
    resourceType string
    state string
    The current state of the ApiMetadata.
    api_metadata_by_entity_type_collections Sequence[GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection]
    The list of api_metadata_by_entity_type_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    compartment_id str
    display_name str
    Name of the Api.
    filters Sequence[GetApiaccesscontrolApiMetadataByEntityTypesFilter]
    resource_type str
    state str
    The current state of the ApiMetadata.
    apiMetadataByEntityTypeCollections List<Property Map>
    The list of api_metadata_by_entity_type_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    displayName String
    Name of the Api.
    filters List<Property Map>
    resourceType String
    state String
    The current state of the ApiMetadata.

    Supporting Types

    GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection

    items List<Property Map>
    List of apiMetadataByEntityTypeSummary.

    GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItem

    ApiMetadatas List<GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata>
    List of apiMetadataSummary.
    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"}
    EntityType string
    The entity Type to which the Api belongs to.
    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"}
    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"}
    ApiMetadatas []GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata
    List of apiMetadataSummary.
    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"}
    EntityType string
    The entity Type to which the Api belongs to.
    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"}
    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"}
    apiMetadatas List<GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata>
    List of apiMetadataSummary.
    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"}
    entityType String
    The entity Type to which the Api belongs to.
    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"}
    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"}
    apiMetadatas GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata[]
    List of apiMetadataSummary.
    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"}
    entityType string
    The entity Type to which the Api belongs to.
    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"}
    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"}
    api_metadatas Sequence[GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata]
    List of apiMetadataSummary.
    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"}
    entity_type str
    The entity Type to which the Api belongs to.
    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"}
    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"}
    apiMetadatas List<Property Map>
    List of apiMetadataSummary.
    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"}
    entityType String
    The entity Type to which the Api belongs to.
    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"}
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadata

    ApiName string
    The name of the api to execute the api request.
    Attributes List<string>
    List of the fields that is use while calling post or put for the data.
    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"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EntityType string
    The entity Type to which the Api belongs to.
    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"}
    Id string
    The OCID of the ApiDetail.
    LifecycleDetails string
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    ServiceName string
    The service Name to which the Api belongs to.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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"}
    TimeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    ApiName string
    The name of the api to execute the api request.
    Attributes []string
    List of the fields that is use while calling post or put for the data.
    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"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EntityType string
    The entity Type to which the Api belongs to.
    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"}
    Id string
    The OCID of the ApiDetail.
    LifecycleDetails string
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    ServiceName string
    The service Name to which the Api belongs to.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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"}
    TimeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    apiName String
    The name of the api to execute the api request.
    attributes List<String>
    List of the fields that is use while calling post or put for the data.
    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"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    entityType String
    The entity Type to which the Api belongs to.
    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"}
    id String
    The OCID of the ApiDetail.
    lifecycleDetails String
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    serviceName String
    The service Name to which the Api belongs to.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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"}
    timeCreated String
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    apiName string
    The name of the api to execute the api request.
    attributes string[]
    List of the fields that is use while calling post or put for the data.
    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"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    entityType string
    The entity Type to which the Api belongs to.
    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"}
    id string
    The OCID of the ApiDetail.
    lifecycleDetails string
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    serviceName string
    The service Name to which the Api belongs to.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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"}
    timeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    api_name str
    The name of the api to execute the api request.
    attributes Sequence[str]
    List of the fields that is use while calling post or put for the data.
    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"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    entity_type str
    The entity Type to which the Api belongs to.
    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"}
    id str
    The OCID of the ApiDetail.
    lifecycle_details str
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    service_name str
    The service Name to which the Api belongs to.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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"}
    time_created str
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    apiName String
    The name of the api to execute the api request.
    attributes List<String>
    List of the fields that is use while calling post or put for the data.
    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"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    entityType String
    The entity Type to which the Api belongs to.
    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"}
    id String
    The OCID of the ApiDetail.
    lifecycleDetails String
    A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    serviceName String
    The service Name to which the Api belongs to.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetApiaccesscontrolApiMetadataByEntityTypesFilter

    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.16.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate