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 Privileged Api Controls in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets a list of PrivilegedApiControls. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivilegedApiControls = oci.oci.getApiaccesscontrolPrivilegedApiControls({ * compartmentId: compartmentId, * displayName: privilegedApiControlDisplayName, * id: privilegedApiControlId, * resourceType: privilegedApiControlResourceType, * state: privilegedApiControlState, * }); * ``` */ export declare function getApiaccesscontrolPrivilegedApiControls(args?: GetApiaccesscontrolPrivilegedApiControlsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiaccesscontrolPrivilegedApiControls. */ export interface GetApiaccesscontrolPrivilegedApiControlsArgs { /** * 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.GetApiaccesscontrolPrivilegedApiControlsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ id?: string; /** * 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 getApiaccesscontrolPrivilegedApiControls. */ export interface GetApiaccesscontrolPrivilegedApiControlsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * Name of the privilegedApi control. The name must be unique. */ readonly displayName?: string; readonly filters?: outputs.oci.GetApiaccesscontrolPrivilegedApiControlsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ readonly id?: string; /** * The list of privileged_api_control_collection. */ readonly privilegedApiControlCollections: outputs.oci.GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection[]; /** * resourceType for which the PrivilegedApiControl is applicable */ readonly resourceType?: string; /** * The current state of the PrivilegedApiControl. */ readonly state?: string; } /** * This data source provides the list of Privileged Api Controls in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets a list of PrivilegedApiControls. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivilegedApiControls = oci.oci.getApiaccesscontrolPrivilegedApiControls({ * compartmentId: compartmentId, * displayName: privilegedApiControlDisplayName, * id: privilegedApiControlId, * resourceType: privilegedApiControlResourceType, * state: privilegedApiControlState, * }); * ``` */ export declare function getApiaccesscontrolPrivilegedApiControlsOutput(args?: GetApiaccesscontrolPrivilegedApiControlsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiaccesscontrolPrivilegedApiControls. */ export interface GetApiaccesscontrolPrivilegedApiControlsOutputArgs { /** * 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>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ id?: pulumi.Input; /** * 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=getApiaccesscontrolPrivilegedApiControls.d.ts.map