import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Privileged Api Control resource in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets information about a PrivilegedApiControl. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivilegedApiControl = oci.oci.getApiaccesscontrolPrivilegedApiControl({ * privilegedApiControlId: testPrivilegedApiControlOciApiaccesscontrolPrivilegedApiControl.id, * }); * ``` */ export declare function getApiaccesscontrolPrivilegedApiControl(args: GetApiaccesscontrolPrivilegedApiControlArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiaccesscontrolPrivilegedApiControl. */ export interface GetApiaccesscontrolPrivilegedApiControlArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ privilegedApiControlId: string; } /** * A collection of values returned by getApiaccesscontrolPrivilegedApiControl. */ export interface GetApiaccesscontrolPrivilegedApiControlResult { /** * List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control. */ readonly approverGroupIdLists: string[]; /** * List of Group containing the levels at which the users belonging to the group can authorize. */ readonly approverGroupLevelLists: outputs.oci.GetApiaccesscontrolPrivilegedApiControlApproverGroupLevelList[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of privilegedApi control. */ readonly description: string; /** * Name of the privilegedApi control. The name must be unique. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ readonly id: string; /** * A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control. */ readonly notificationTopicId: string; /** * Number of approvers required to approve an privilegedApi request. */ readonly numberOfApprovers: number; readonly privilegedApiControlId: string; /** * List of privileged operations/apis. These operations/apis will be treaated as secured, once enabled by the Privileged API Managment for a resource. Any of these operations, if needs to be executed, needs to be raised as a PrivilegedApi Request which needs to be approved by customers or it can be pre-approved. */ readonly privilegedOperationLists: outputs.oci.GetApiaccesscontrolPrivilegedApiControlPrivilegedOperationList[]; /** * resourceType for which the PrivilegedApiControl is applicable */ readonly resourceType: string; /** * contains Resource details */ readonly resources: string[]; /** * The current state of the PrivilegedApiControl. */ readonly state: string; /** * A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly stateDetails: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeDeleted: string; /** * The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Privileged Api Control resource in Oracle Cloud Infrastructure Apiaccesscontrol service. * * Gets information about a PrivilegedApiControl. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivilegedApiControl = oci.oci.getApiaccesscontrolPrivilegedApiControl({ * privilegedApiControlId: testPrivilegedApiControlOciApiaccesscontrolPrivilegedApiControl.id, * }); * ``` */ export declare function getApiaccesscontrolPrivilegedApiControlOutput(args: GetApiaccesscontrolPrivilegedApiControlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiaccesscontrolPrivilegedApiControl. */ export interface GetApiaccesscontrolPrivilegedApiControlOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl. */ privilegedApiControlId: pulumi.Input; } //# sourceMappingURL=getApiaccesscontrolPrivilegedApiControl.d.ts.map