1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getApiaccesscontrolPrivilegedApiControls
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    This data source provides the list of Privileged Api Controls in Oracle Cloud Infrastructure Apiaccesscontrol service.

    Gets a list of PrivilegedApiControls.

    Example Usage

    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,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_privileged_api_controls = oci.oci.get_apiaccesscontrol_privileged_api_controls(compartment_id=compartment_id,
        display_name=privileged_api_control_display_name,
        id=privileged_api_control_id,
        resource_type=privileged_api_control_resource_type,
        state=privileged_api_control_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.GetApiaccesscontrolPrivilegedApiControls(ctx, &oci.GetApiaccesscontrolPrivilegedApiControlsArgs{
    			CompartmentId: pulumi.StringRef(compartmentId),
    			DisplayName:   pulumi.StringRef(privilegedApiControlDisplayName),
    			Id:            pulumi.StringRef(privilegedApiControlId),
    			ResourceType:  pulumi.StringRef(privilegedApiControlResourceType),
    			State:         pulumi.StringRef(privilegedApiControlState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testPrivilegedApiControls = Oci.Oci.GetApiaccesscontrolPrivilegedApiControls.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = privilegedApiControlDisplayName,
            Id = privilegedApiControlId,
            ResourceType = privilegedApiControlResourceType,
            State = privilegedApiControlState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetApiaccesscontrolPrivilegedApiControlsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testPrivilegedApiControls = OciFunctions.getApiaccesscontrolPrivilegedApiControls(GetApiaccesscontrolPrivilegedApiControlsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(privilegedApiControlDisplayName)
                .id(privilegedApiControlId)
                .resourceType(privilegedApiControlResourceType)
                .state(privilegedApiControlState)
                .build());
    
        }
    }
    
    variables:
      testPrivilegedApiControls:
        fn::invoke:
          function: oci:oci:getApiaccesscontrolPrivilegedApiControls
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${privilegedApiControlDisplayName}
            id: ${privilegedApiControlId}
            resourceType: ${privilegedApiControlResourceType}
            state: ${privilegedApiControlState}
    

    Using getApiaccesscontrolPrivilegedApiControls

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getApiaccesscontrolPrivilegedApiControls(args: GetApiaccesscontrolPrivilegedApiControlsArgs, opts?: InvokeOptions): Promise<GetApiaccesscontrolPrivilegedApiControlsResult>
    function getApiaccesscontrolPrivilegedApiControlsOutput(args: GetApiaccesscontrolPrivilegedApiControlsOutputArgs, opts?: InvokeOptions): Output<GetApiaccesscontrolPrivilegedApiControlsResult>
    def get_apiaccesscontrol_privileged_api_controls(compartment_id: Optional[str] = None,
                                                     display_name: Optional[str] = None,
                                                     filters: Optional[Sequence[GetApiaccesscontrolPrivilegedApiControlsFilter]] = None,
                                                     id: Optional[str] = None,
                                                     resource_type: Optional[str] = None,
                                                     state: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetApiaccesscontrolPrivilegedApiControlsResult
    def get_apiaccesscontrol_privileged_api_controls_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                     display_name: Optional[pulumi.Input[str]] = None,
                                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetApiaccesscontrolPrivilegedApiControlsFilterArgs]]]] = None,
                                                     id: Optional[pulumi.Input[str]] = None,
                                                     resource_type: Optional[pulumi.Input[str]] = None,
                                                     state: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetApiaccesscontrolPrivilegedApiControlsResult]
    func GetApiaccesscontrolPrivilegedApiControls(ctx *Context, args *GetApiaccesscontrolPrivilegedApiControlsArgs, opts ...InvokeOption) (*GetApiaccesscontrolPrivilegedApiControlsResult, error)
    func GetApiaccesscontrolPrivilegedApiControlsOutput(ctx *Context, args *GetApiaccesscontrolPrivilegedApiControlsOutputArgs, opts ...InvokeOption) GetApiaccesscontrolPrivilegedApiControlsResultOutput

    > Note: This function is named GetApiaccesscontrolPrivilegedApiControls in the Go SDK.

    public static class GetApiaccesscontrolPrivilegedApiControls 
    {
        public static Task<GetApiaccesscontrolPrivilegedApiControlsResult> InvokeAsync(GetApiaccesscontrolPrivilegedApiControlsArgs args, InvokeOptions? opts = null)
        public static Output<GetApiaccesscontrolPrivilegedApiControlsResult> Invoke(GetApiaccesscontrolPrivilegedApiControlsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApiaccesscontrolPrivilegedApiControlsResult> getApiaccesscontrolPrivilegedApiControls(GetApiaccesscontrolPrivilegedApiControlsArgs args, InvokeOptions options)
    public static Output<GetApiaccesscontrolPrivilegedApiControlsResult> getApiaccesscontrolPrivilegedApiControls(GetApiaccesscontrolPrivilegedApiControlsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getApiaccesscontrolPrivilegedApiControls:getApiaccesscontrolPrivilegedApiControls
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetApiaccesscontrolPrivilegedApiControlsFilter>
    Id string
    The OCID of the PrivilegedApiControl.
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetApiaccesscontrolPrivilegedApiControlsFilter
    Id string
    The OCID of the PrivilegedApiControl.
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetApiaccesscontrolPrivilegedApiControlsFilter>
    id String
    The OCID of the PrivilegedApiControl.
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetApiaccesscontrolPrivilegedApiControlsFilter[]
    id string
    The OCID of the PrivilegedApiControl.
    resourceType string
    A filter to return only lists of resources that match the entire given service type.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetApiaccesscontrolPrivilegedApiControlsFilter]
    id str
    The OCID of the PrivilegedApiControl.
    resource_type str
    A filter to return only lists of resources that match the entire given service type.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    id String
    The OCID of the PrivilegedApiControl.
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getApiaccesscontrolPrivilegedApiControls Result

    The following output properties are available:

    PrivilegedApiControlCollections List<GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection>
    The list of privileged_api_control_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    Name of the privilegedApi control. The name must be unique.
    Filters List<GetApiaccesscontrolPrivilegedApiControlsFilter>
    Id string
    The OCID of the PrivilegedApiControl.
    ResourceType string
    resourceType for which the PrivilegedApiControl is applicable
    State string
    The current state of the PrivilegedApiControl.
    PrivilegedApiControlCollections []GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection
    The list of privileged_api_control_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    Name of the privilegedApi control. The name must be unique.
    Filters []GetApiaccesscontrolPrivilegedApiControlsFilter
    Id string
    The OCID of the PrivilegedApiControl.
    ResourceType string
    resourceType for which the PrivilegedApiControl is applicable
    State string
    The current state of the PrivilegedApiControl.
    privilegedApiControlCollections List<GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection>
    The list of privileged_api_control_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    Name of the privilegedApi control. The name must be unique.
    filters List<GetApiaccesscontrolPrivilegedApiControlsFilter>
    id String
    The OCID of the PrivilegedApiControl.
    resourceType String
    resourceType for which the PrivilegedApiControl is applicable
    state String
    The current state of the PrivilegedApiControl.
    privilegedApiControlCollections GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection[]
    The list of privileged_api_control_collection.
    compartmentId string
    The OCID of the compartment.
    displayName string
    Name of the privilegedApi control. The name must be unique.
    filters GetApiaccesscontrolPrivilegedApiControlsFilter[]
    id string
    The OCID of the PrivilegedApiControl.
    resourceType string
    resourceType for which the PrivilegedApiControl is applicable
    state string
    The current state of the PrivilegedApiControl.
    privileged_api_control_collections Sequence[GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection]
    The list of privileged_api_control_collection.
    compartment_id str
    The OCID of the compartment.
    display_name str
    Name of the privilegedApi control. The name must be unique.
    filters Sequence[GetApiaccesscontrolPrivilegedApiControlsFilter]
    id str
    The OCID of the PrivilegedApiControl.
    resource_type str
    resourceType for which the PrivilegedApiControl is applicable
    state str
    The current state of the PrivilegedApiControl.
    privilegedApiControlCollections List<Property Map>
    The list of privileged_api_control_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    Name of the privilegedApi control. The name must be unique.
    filters List<Property Map>
    id String
    The OCID of the PrivilegedApiControl.
    resourceType String
    resourceType for which the PrivilegedApiControl is applicable
    state String
    The current state of the PrivilegedApiControl.

    Supporting Types

    GetApiaccesscontrolPrivilegedApiControlsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollection

    GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItem

    ApproverGroupIdLists List<string>
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    Description of privilegedApi control.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, 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. Example: {"Department": "Finance"}
    Id string
    The OCID of the PrivilegedApiControl.
    LifecycleDetails 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.
    NotificationTopicId string
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    NumberOfApprovers int
    Number of approvers required to approve an privilegedApi request.
    PrivilegedOperationLists List<GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList>
    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.
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    Resources List<string>
    contains Resource details
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    StateDetails 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.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeDeleted string
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    ApproverGroupIdLists []string
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    Description of privilegedApi control.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]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. Example: {"Department": "Finance"}
    Id string
    The OCID of the PrivilegedApiControl.
    LifecycleDetails 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.
    NotificationTopicId string
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    NumberOfApprovers int
    Number of approvers required to approve an privilegedApi request.
    PrivilegedOperationLists []GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList
    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.
    ResourceType string
    A filter to return only lists of resources that match the entire given service type.
    Resources []string
    contains Resource details
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    StateDetails 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.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeDeleted string
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    approverGroupIdLists List<String>
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    Description of privilegedApi control.
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,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. Example: {"Department": "Finance"}
    id String
    The OCID of the PrivilegedApiControl.
    lifecycleDetails 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.
    notificationTopicId String
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    numberOfApprovers Integer
    Number of approvers required to approve an privilegedApi request.
    privilegedOperationLists List<GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList>
    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.
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    resources List<String>
    contains Resource details
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stateDetails 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.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeDeleted String
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    approverGroupIdLists string[]
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    Description of privilegedApi control.
    displayName string
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: 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. Example: {"Department": "Finance"}
    id string
    The OCID of the PrivilegedApiControl.
    lifecycleDetails 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.
    notificationTopicId string
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    numberOfApprovers number
    Number of approvers required to approve an privilegedApi request.
    privilegedOperationLists GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList[]
    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.
    resourceType string
    A filter to return only lists of resources that match the entire given service type.
    resources string[]
    contains Resource details
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stateDetails 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.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeDeleted string
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    approver_group_id_lists Sequence[str]
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    Description of privilegedApi control.
    display_name str
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, str]
    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. Example: {"Department": "Finance"}
    id str
    The OCID of the PrivilegedApiControl.
    lifecycle_details str
    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.
    notification_topic_id str
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    number_of_approvers int
    Number of approvers required to approve an privilegedApi request.
    privileged_operation_lists Sequence[GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList]
    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.
    resource_type str
    A filter to return only lists of resources that match the entire given service type.
    resources Sequence[str]
    contains Resource details
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    state_details str
    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.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_deleted str
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    approverGroupIdLists List<String>
    List of IAM user group ids who can approve an privilegedApi request associated with a target resource under the governance of this operator control.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    Description of privilegedApi control.
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<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. Example: {"Department": "Finance"}
    id String
    The OCID of the PrivilegedApiControl.
    lifecycleDetails 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.
    notificationTopicId String
    The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Privileged Api Control.
    numberOfApprovers Number
    Number of approvers required to approve an privilegedApi request.
    privilegedOperationLists List<Property Map>
    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.
    resourceType String
    A filter to return only lists of resources that match the entire given service type.
    resources List<String>
    contains Resource details
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stateDetails 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.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the PrivilegedApiControl was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeDeleted String
    The date and time the PrivilegedApiControl was marked for delete, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the PrivilegedApiControl was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetApiaccesscontrolPrivilegedApiControlsPrivilegedApiControlCollectionItemPrivilegedOperationList

    ApiName string
    name of the api which needs to be protected.
    AttributeNames List<string>
    list of attributes belonging to the above api which needs to be protected.
    EntityType string
    type of the entity which needs to be protected.
    ApiName string
    name of the api which needs to be protected.
    AttributeNames []string
    list of attributes belonging to the above api which needs to be protected.
    EntityType string
    type of the entity which needs to be protected.
    apiName String
    name of the api which needs to be protected.
    attributeNames List<String>
    list of attributes belonging to the above api which needs to be protected.
    entityType String
    type of the entity which needs to be protected.
    apiName string
    name of the api which needs to be protected.
    attributeNames string[]
    list of attributes belonging to the above api which needs to be protected.
    entityType string
    type of the entity which needs to be protected.
    api_name str
    name of the api which needs to be protected.
    attribute_names Sequence[str]
    list of attributes belonging to the above api which needs to be protected.
    entity_type str
    type of the entity which needs to be protected.
    apiName String
    name of the api which needs to be protected.
    attributeNames List<String>
    list of attributes belonging to the above api which needs to be protected.
    entityType String
    type of the entity which needs to be protected.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate