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 Operator Controls in Oracle Cloud Infrastructure Operator Access Control service. * * Lists the operator controls in the compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperatorControls = oci.operatoraccesscontrol.getControls({ * compartmentId: compartmentId, * displayName: operatorControlDisplayName, * resourceType: operatorControlResourceType, * state: operatorControlState, * }); * ``` */ export declare function getControls(args: GetControlsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getControls. */ export interface GetControlsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return OperatorControl that match the entire display name given. */ displayName?: string; filters?: inputs.OperatorAccessControl.GetControlsFilter[]; /** * A filter to return only lists of resources that match the entire given service type. */ resourceType?: string; /** * A filter to return only resources whose lifecycleState matches the given OperatorControl lifecycleState. */ state?: string; } /** * A collection of values returned by getControls. */ export interface GetControlsResult { /** * The OCID of the compartment that contains the operator control. */ readonly compartmentId: string; readonly displayName?: string; readonly filters?: outputs.OperatorAccessControl.GetControlsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of operator_control_collection. */ readonly operatorControlCollections: outputs.OperatorAccessControl.GetControlsOperatorControlCollection[]; /** * resourceType for which the OperatorControl is applicable */ readonly resourceType?: string; /** * The current lifecycle state of the operator control. */ readonly state?: string; } /** * This data source provides the list of Operator Controls in Oracle Cloud Infrastructure Operator Access Control service. * * Lists the operator controls in the compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperatorControls = oci.operatoraccesscontrol.getControls({ * compartmentId: compartmentId, * displayName: operatorControlDisplayName, * resourceType: operatorControlResourceType, * state: operatorControlState, * }); * ``` */ export declare function getControlsOutput(args: GetControlsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getControls. */ export interface GetControlsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return OperatorControl that match the entire display name given. */ 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 whose lifecycleState matches the given OperatorControl lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getControls.d.ts.map