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 Metadatas in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets a list of ApiMetadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiMetadatas = oci.oci.getApiaccesscontrolApiMetadatas({ * compartmentId: compartmentId, * displayName: apiMetadataDisplayName, * resourceType: apiMetadataResourceType, * state: apiMetadataState, * }); * ``` */ export declare function getApiaccesscontrolApiMetadatas(args?: GetApiaccesscontrolApiMetadatasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiaccesscontrolApiMetadatas. */ export interface GetApiaccesscontrolApiMetadatasArgs { /** * 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.GetApiaccesscontrolApiMetadatasFilter[]; /** * 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 getApiaccesscontrolApiMetadatas. */ export interface GetApiaccesscontrolApiMetadatasResult { /** * The list of api_metadata_collection. */ readonly apiMetadataCollections: outputs.oci.GetApiaccesscontrolApiMetadatasApiMetadataCollection[]; readonly compartmentId?: string; /** * The operation Name of the api. The name must be unique. */ readonly displayName?: string; readonly filters?: outputs.oci.GetApiaccesscontrolApiMetadatasFilter[]; /** * 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 Metadatas in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets a list of ApiMetadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiMetadatas = oci.oci.getApiaccesscontrolApiMetadatas({ * compartmentId: compartmentId, * displayName: apiMetadataDisplayName, * resourceType: apiMetadataResourceType, * state: apiMetadataState, * }); * ``` */ export declare function getApiaccesscontrolApiMetadatasOutput(args?: GetApiaccesscontrolApiMetadatasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiaccesscontrolApiMetadatas. */ export interface GetApiaccesscontrolApiMetadatasOutputArgs { /** * 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=getApiaccesscontrolApiMetadatas.d.ts.map