import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getApiaccesscontrolApiMetadataByEntityTypes(args?: GetApiaccesscontrolApiMetadataByEntityTypesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiaccesscontrolApiMetadataByEntityTypes. */ export interface GetApiaccesscontrolApiMetadataByEntityTypesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.oci.GetApiaccesscontrolApiMetadataByEntityTypesFilter[]; /** * A filter to return only lists of resources that match the entire given service type. */ resourceType?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getApiaccesscontrolApiMetadataByEntityTypes. */ export interface GetApiaccesscontrolApiMetadataByEntityTypesResult { /** * The list of api_metadata_by_entity_type_collection. */ readonly apiMetadataByEntityTypeCollections: outputs.oci.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollection[]; /** * The OCID of the compartment that contains the Service Provider Action. */ readonly compartmentId?: string; /** * Name of the Api. */ readonly displayName?: string; readonly filters?: outputs.oci.GetApiaccesscontrolApiMetadataByEntityTypesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly resourceType?: string; /** * The current state of the ApiMetadata. */ readonly state?: string; } /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getApiaccesscontrolApiMetadataByEntityTypesOutput(args?: GetApiaccesscontrolApiMetadataByEntityTypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiaccesscontrolApiMetadataByEntityTypes. */ export interface GetApiaccesscontrolApiMetadataByEntityTypesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only lists of resources that match the entire given service type. */ resourceType?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getApiaccesscontrolApiMetadataByEntityTypes.d.ts.map