Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DelegateAccessControl.getDelegatedResourceAccessRequests
Explore with Pulumi AI
This data source provides the list of Delegated Resource Access Requests in Oracle Cloud Infrastructure Delegate Access Control service.
Lists all Delegated Resource Access Requests in the compartment. Note that only one of lifecycleState or requestStatus query parameter can be used.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDelegatedResourceAccessRequests = oci.DelegateAccessControl.getDelegatedResourceAccessRequests({
    compartmentId: compartmentId,
    delegationControlId: testDelegationControl.id,
    requestStatus: delegatedResourceAccessRequestRequestStatus,
    resourceId: testResource.id,
    state: delegatedResourceAccessRequestState,
    timeEnd: delegatedResourceAccessRequestTimeEnd,
    timeStart: delegatedResourceAccessRequestTimeStart,
});
import pulumi
import pulumi_oci as oci
test_delegated_resource_access_requests = oci.DelegateAccessControl.get_delegated_resource_access_requests(compartment_id=compartment_id,
    delegation_control_id=test_delegation_control["id"],
    request_status=delegated_resource_access_request_request_status,
    resource_id=test_resource["id"],
    state=delegated_resource_access_request_state,
    time_end=delegated_resource_access_request_time_end,
    time_start=delegated_resource_access_request_time_start)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/delegateaccesscontrol"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := delegateaccesscontrol.GetDelegatedResourceAccessRequests(ctx, &delegateaccesscontrol.GetDelegatedResourceAccessRequestsArgs{
			CompartmentId:       compartmentId,
			DelegationControlId: pulumi.StringRef(testDelegationControl.Id),
			RequestStatus:       pulumi.StringRef(delegatedResourceAccessRequestRequestStatus),
			ResourceId:          pulumi.StringRef(testResource.Id),
			State:               pulumi.StringRef(delegatedResourceAccessRequestState),
			TimeEnd:             pulumi.StringRef(delegatedResourceAccessRequestTimeEnd),
			TimeStart:           pulumi.StringRef(delegatedResourceAccessRequestTimeStart),
		}, 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 testDelegatedResourceAccessRequests = Oci.DelegateAccessControl.GetDelegatedResourceAccessRequests.Invoke(new()
    {
        CompartmentId = compartmentId,
        DelegationControlId = testDelegationControl.Id,
        RequestStatus = delegatedResourceAccessRequestRequestStatus,
        ResourceId = testResource.Id,
        State = delegatedResourceAccessRequestState,
        TimeEnd = delegatedResourceAccessRequestTimeEnd,
        TimeStart = delegatedResourceAccessRequestTimeStart,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DelegateAccessControl.DelegateAccessControlFunctions;
import com.pulumi.oci.DelegateAccessControl.inputs.GetDelegatedResourceAccessRequestsArgs;
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 testDelegatedResourceAccessRequests = DelegateAccessControlFunctions.getDelegatedResourceAccessRequests(GetDelegatedResourceAccessRequestsArgs.builder()
            .compartmentId(compartmentId)
            .delegationControlId(testDelegationControl.id())
            .requestStatus(delegatedResourceAccessRequestRequestStatus)
            .resourceId(testResource.id())
            .state(delegatedResourceAccessRequestState)
            .timeEnd(delegatedResourceAccessRequestTimeEnd)
            .timeStart(delegatedResourceAccessRequestTimeStart)
            .build());
    }
}
variables:
  testDelegatedResourceAccessRequests:
    fn::invoke:
      function: oci:DelegateAccessControl:getDelegatedResourceAccessRequests
      arguments:
        compartmentId: ${compartmentId}
        delegationControlId: ${testDelegationControl.id}
        requestStatus: ${delegatedResourceAccessRequestRequestStatus}
        resourceId: ${testResource.id}
        state: ${delegatedResourceAccessRequestState}
        timeEnd: ${delegatedResourceAccessRequestTimeEnd}
        timeStart: ${delegatedResourceAccessRequestTimeStart}
Using getDelegatedResourceAccessRequests
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 getDelegatedResourceAccessRequests(args: GetDelegatedResourceAccessRequestsArgs, opts?: InvokeOptions): Promise<GetDelegatedResourceAccessRequestsResult>
function getDelegatedResourceAccessRequestsOutput(args: GetDelegatedResourceAccessRequestsOutputArgs, opts?: InvokeOptions): Output<GetDelegatedResourceAccessRequestsResult>def get_delegated_resource_access_requests(compartment_id: Optional[str] = None,
                                           delegation_control_id: Optional[str] = None,
                                           filters: Optional[Sequence[GetDelegatedResourceAccessRequestsFilter]] = None,
                                           request_status: Optional[str] = None,
                                           resource_id: Optional[str] = None,
                                           state: Optional[str] = None,
                                           time_end: Optional[str] = None,
                                           time_start: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetDelegatedResourceAccessRequestsResult
def get_delegated_resource_access_requests_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                           delegation_control_id: Optional[pulumi.Input[str]] = None,
                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDelegatedResourceAccessRequestsFilterArgs]]]] = None,
                                           request_status: Optional[pulumi.Input[str]] = None,
                                           resource_id: Optional[pulumi.Input[str]] = None,
                                           state: Optional[pulumi.Input[str]] = None,
                                           time_end: Optional[pulumi.Input[str]] = None,
                                           time_start: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetDelegatedResourceAccessRequestsResult]func GetDelegatedResourceAccessRequests(ctx *Context, args *GetDelegatedResourceAccessRequestsArgs, opts ...InvokeOption) (*GetDelegatedResourceAccessRequestsResult, error)
func GetDelegatedResourceAccessRequestsOutput(ctx *Context, args *GetDelegatedResourceAccessRequestsOutputArgs, opts ...InvokeOption) GetDelegatedResourceAccessRequestsResultOutput> Note: This function is named GetDelegatedResourceAccessRequests in the Go SDK.
public static class GetDelegatedResourceAccessRequests 
{
    public static Task<GetDelegatedResourceAccessRequestsResult> InvokeAsync(GetDelegatedResourceAccessRequestsArgs args, InvokeOptions? opts = null)
    public static Output<GetDelegatedResourceAccessRequestsResult> Invoke(GetDelegatedResourceAccessRequestsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDelegatedResourceAccessRequestsResult> getDelegatedResourceAccessRequests(GetDelegatedResourceAccessRequestsArgs args, InvokeOptions options)
public static Output<GetDelegatedResourceAccessRequestsResult> getDelegatedResourceAccessRequests(GetDelegatedResourceAccessRequestsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DelegateAccessControl/getDelegatedResourceAccessRequests:getDelegatedResourceAccessRequests
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- DelegationControl stringId 
- unique Delegation Control identifier
- Filters
List<GetDelegated Resource Access Requests Filter> 
- RequestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- ResourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- State string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- TimeEnd string
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- TimeStart string
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- CompartmentId string
- The OCID of the compartment.
- DelegationControl stringId 
- unique Delegation Control identifier
- Filters
[]GetDelegated Resource Access Requests Filter 
- RequestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- ResourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- State string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- TimeEnd string
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- TimeStart string
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- compartmentId String
- The OCID of the compartment.
- delegationControl StringId 
- unique Delegation Control identifier
- filters
List<GetDelegated Resource Access Requests Filter> 
- requestStatus String
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- resourceId String
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- state String
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- timeEnd String
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- timeStart String
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- compartmentId string
- The OCID of the compartment.
- delegationControl stringId 
- unique Delegation Control identifier
- filters
GetDelegated Resource Access Requests Filter[] 
- requestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- resourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- state string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- timeEnd string
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- timeStart string
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- compartment_id str
- The OCID of the compartment.
- delegation_control_ strid 
- unique Delegation Control identifier
- filters
Sequence[GetDelegated Resource Access Requests Filter] 
- request_status str
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- resource_id str
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- state str
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- time_end str
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- time_start str
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- compartmentId String
- The OCID of the compartment.
- delegationControl StringId 
- unique Delegation Control identifier
- filters List<Property Map>
- requestStatus String
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- resourceId String
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- state String
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- timeEnd String
- Query end time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
- timeStart String
- Query start time in UTC in ISO 8601 format(inclusive). Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ). timeIntervalStart and timeIntervalEnd parameters cannot be used together.
getDelegatedResourceAccessRequests Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that contains the Delegated Resource Access Request.
- DelegatedResource List<GetAccess Request Summary Collections Delegated Resource Access Requests Delegated Resource Access Request Summary Collection> 
- The list of delegated_resource_access_request_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- DelegationControl stringId 
- The OCID of the Delegation Control governing the target resource.
- Filters
List<GetDelegated Resource Access Requests Filter> 
- RequestStatus string
- The current status of the Delegated Resource Access Request.
- ResourceId string
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- State string
- The current lifecycle state of the Delegated Resource Access Request.
- TimeEnd string
- TimeStart string
- CompartmentId string
- The OCID of the compartment that contains the Delegated Resource Access Request.
- DelegatedResource []GetAccess Request Summary Collections Delegated Resource Access Requests Delegated Resource Access Request Summary Collection 
- The list of delegated_resource_access_request_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- DelegationControl stringId 
- The OCID of the Delegation Control governing the target resource.
- Filters
[]GetDelegated Resource Access Requests Filter 
- RequestStatus string
- The current status of the Delegated Resource Access Request.
- ResourceId string
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- State string
- The current lifecycle state of the Delegated Resource Access Request.
- TimeEnd string
- TimeStart string
- compartmentId String
- The OCID of the compartment that contains the Delegated Resource Access Request.
- delegatedResource List<GetAccess Request Summary Collections Delegated Resource Access Requests Delegated Resource Access Request Summary Collection> 
- The list of delegated_resource_access_request_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- delegationControl StringId 
- The OCID of the Delegation Control governing the target resource.
- filters
List<GetDelegated Resource Access Requests Filter> 
- requestStatus String
- The current status of the Delegated Resource Access Request.
- resourceId String
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- state String
- The current lifecycle state of the Delegated Resource Access Request.
- timeEnd String
- timeStart String
- compartmentId string
- The OCID of the compartment that contains the Delegated Resource Access Request.
- delegatedResource GetAccess Request Summary Collections Delegated Resource Access Requests Delegated Resource Access Request Summary Collection[] 
- The list of delegated_resource_access_request_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- delegationControl stringId 
- The OCID of the Delegation Control governing the target resource.
- filters
GetDelegated Resource Access Requests Filter[] 
- requestStatus string
- The current status of the Delegated Resource Access Request.
- resourceId string
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- state string
- The current lifecycle state of the Delegated Resource Access Request.
- timeEnd string
- timeStart string
- compartment_id str
- The OCID of the compartment that contains the Delegated Resource Access Request.
- delegated_resource_ Sequence[Getaccess_ request_ summary_ collections Delegated Resource Access Requests Delegated Resource Access Request Summary Collection] 
- The list of delegated_resource_access_request_summary_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- delegation_control_ strid 
- The OCID of the Delegation Control governing the target resource.
- filters
Sequence[GetDelegated Resource Access Requests Filter] 
- request_status str
- The current status of the Delegated Resource Access Request.
- resource_id str
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- state str
- The current lifecycle state of the Delegated Resource Access Request.
- time_end str
- time_start str
- compartmentId String
- The OCID of the compartment that contains the Delegated Resource Access Request.
- delegatedResource List<Property Map>Access Request Summary Collections 
- The list of delegated_resource_access_request_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- delegationControl StringId 
- The OCID of the Delegation Control governing the target resource.
- filters List<Property Map>
- requestStatus String
- The current status of the Delegated Resource Access Request.
- resourceId String
- The OCID of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- state String
- The current lifecycle state of the Delegated Resource Access Request.
- timeEnd String
- timeStart String
Supporting Types
GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollection          
GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItem           
- ApprovalInfos List<GetDelegated Resource Access Requests Delegated Resource Access Request Summary Collection Item Approval Info> 
- In case of single approval, this will have only one item. Else, a list of approvals.
- AuditTypes List<string>
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- ClosureComment string
- The comment entered by the support operator while closing the request.
- CompartmentId string
- The OCID of the compartment.
- DatabaseName List<string>Lists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- 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"}
- DelegationControl stringId 
- unique Delegation Control identifier
- DelegationSubscription List<string>Ids 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- Description string
- Detailed description of this Delegated Resource Access Request.
- DisplayName string
- Display name. This is generated by the system automatically.
- DurationIn intHours 
- Duration in hours for which access is sought on the target resource.
- ExtendDuration intIn Hours 
- Duration in hours for which extension access is sought on the target resource.
- 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 Delegated Resource Access Request.
- IsAuto boolApproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- IsPending boolMore Info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- LifecycleState stringDetails 
- Description of the current lifecycle state in more detail.
- NumExtension intApprovals 
- Number of extension approvals that have been obtained so far.
- NumInitial intApprovals 
- Number of initial approvals that have been obtained so far.
- ProvidedService List<string>Types 
- List of Service Provider Service Types being provided by the support operator user.
- ReasonFor stringRequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- RequestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- RequestedAction List<string>Names 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- RequesterType string
- Requester type
- ResourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- ResourceName string
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- ResourceType string
- Resource type for which the associated Delegation Control is applicable to.
- Severity string
- Priority assigned to the Delegated Resource Access Request by the support operator
- State string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TicketNumbers List<string>
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- TimeAccess stringRequested 
- Requested access start time in UTC.
- TimeCreated string
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- TimeUpdated string
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- ApprovalInfos []GetDelegated Resource Access Requests Delegated Resource Access Request Summary Collection Item Approval Info 
- In case of single approval, this will have only one item. Else, a list of approvals.
- AuditTypes []string
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- ClosureComment string
- The comment entered by the support operator while closing the request.
- CompartmentId string
- The OCID of the compartment.
- DatabaseName []stringLists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- 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"}
- DelegationControl stringId 
- unique Delegation Control identifier
- DelegationSubscription []stringIds 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- Description string
- Detailed description of this Delegated Resource Access Request.
- DisplayName string
- Display name. This is generated by the system automatically.
- DurationIn intHours 
- Duration in hours for which access is sought on the target resource.
- ExtendDuration intIn Hours 
- Duration in hours for which extension access is sought on the target resource.
- 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 Delegated Resource Access Request.
- IsAuto boolApproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- IsPending boolMore Info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- LifecycleState stringDetails 
- Description of the current lifecycle state in more detail.
- NumExtension intApprovals 
- Number of extension approvals that have been obtained so far.
- NumInitial intApprovals 
- Number of initial approvals that have been obtained so far.
- ProvidedService []stringTypes 
- List of Service Provider Service Types being provided by the support operator user.
- ReasonFor stringRequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- RequestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- RequestedAction []stringNames 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- RequesterType string
- Requester type
- ResourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- ResourceName string
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- ResourceType string
- Resource type for which the associated Delegation Control is applicable to.
- Severity string
- Priority assigned to the Delegated Resource Access Request by the support operator
- State string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TicketNumbers []string
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- TimeAccess stringRequested 
- Requested access start time in UTC.
- TimeCreated string
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- TimeUpdated string
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalInfos List<GetDelegated Resource Access Requests Delegated Resource Access Request Summary Collection Item Approval Info> 
- In case of single approval, this will have only one item. Else, a list of approvals.
- auditTypes List<String>
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- closureComment String
- The comment entered by the support operator while closing the request.
- compartmentId String
- The OCID of the compartment.
- databaseName List<String>Lists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- 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"}
- delegationControl StringId 
- unique Delegation Control identifier
- delegationSubscription List<String>Ids 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- description String
- Detailed description of this Delegated Resource Access Request.
- displayName String
- Display name. This is generated by the system automatically.
- durationIn IntegerHours 
- Duration in hours for which access is sought on the target resource.
- extendDuration IntegerIn Hours 
- Duration in hours for which extension access is sought on the target resource.
- 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 Delegated Resource Access Request.
- isAuto BooleanApproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- isPending BooleanMore Info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- lifecycleState StringDetails 
- Description of the current lifecycle state in more detail.
- numExtension IntegerApprovals 
- Number of extension approvals that have been obtained so far.
- numInitial IntegerApprovals 
- Number of initial approvals that have been obtained so far.
- providedService List<String>Types 
- List of Service Provider Service Types being provided by the support operator user.
- reasonFor StringRequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- requestStatus String
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- requestedAction List<String>Names 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- requesterType String
- Requester type
- resourceId String
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- resourceName String
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- resourceType String
- Resource type for which the associated Delegation Control is applicable to.
- severity String
- Priority assigned to the Delegated Resource Access Request by the support operator
- state String
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- ticketNumbers List<String>
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- timeAccess StringRequested 
- Requested access start time in UTC.
- timeCreated String
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- timeUpdated String
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalInfos GetDelegated Resource Access Requests Delegated Resource Access Request Summary Collection Item Approval Info[] 
- In case of single approval, this will have only one item. Else, a list of approvals.
- auditTypes string[]
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- closureComment string
- The comment entered by the support operator while closing the request.
- compartmentId string
- The OCID of the compartment.
- databaseName string[]Lists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- {[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"}
- delegationControl stringId 
- unique Delegation Control identifier
- delegationSubscription string[]Ids 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- description string
- Detailed description of this Delegated Resource Access Request.
- displayName string
- Display name. This is generated by the system automatically.
- durationIn numberHours 
- Duration in hours for which access is sought on the target resource.
- extendDuration numberIn Hours 
- Duration in hours for which extension access is sought on the target resource.
- {[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 Delegated Resource Access Request.
- isAuto booleanApproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- isPending booleanMore Info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- lifecycleState stringDetails 
- Description of the current lifecycle state in more detail.
- numExtension numberApprovals 
- Number of extension approvals that have been obtained so far.
- numInitial numberApprovals 
- Number of initial approvals that have been obtained so far.
- providedService string[]Types 
- List of Service Provider Service Types being provided by the support operator user.
- reasonFor stringRequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- requestStatus string
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- requestedAction string[]Names 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- requesterType string
- Requester type
- resourceId string
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- resourceName string
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- resourceType string
- Resource type for which the associated Delegation Control is applicable to.
- severity string
- Priority assigned to the Delegated Resource Access Request by the support operator
- state string
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- ticketNumbers string[]
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- timeAccess stringRequested 
- Requested access start time in UTC.
- timeCreated string
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- timeUpdated string
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approval_infos Sequence[GetDelegated Resource Access Requests Delegated Resource Access Request Summary Collection Item Approval Info] 
- In case of single approval, this will have only one item. Else, a list of approvals.
- audit_types Sequence[str]
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- closure_comment str
- The comment entered by the support operator while closing the request.
- compartment_id str
- The OCID of the compartment.
- database_name_ Sequence[str]lists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- 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"}
- delegation_control_ strid 
- unique Delegation Control identifier
- delegation_subscription_ Sequence[str]ids 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- description str
- Detailed description of this Delegated Resource Access Request.
- display_name str
- Display name. This is generated by the system automatically.
- duration_in_ inthours 
- Duration in hours for which access is sought on the target resource.
- extend_duration_ intin_ hours 
- Duration in hours for which extension access is sought on the target resource.
- 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 Delegated Resource Access Request.
- is_auto_ boolapproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- is_pending_ boolmore_ info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- lifecycle_state_ strdetails 
- Description of the current lifecycle state in more detail.
- num_extension_ intapprovals 
- Number of extension approvals that have been obtained so far.
- num_initial_ intapprovals 
- Number of initial approvals that have been obtained so far.
- provided_service_ Sequence[str]types 
- List of Service Provider Service Types being provided by the support operator user.
- reason_for_ strrequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- request_status str
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- requested_action_ Sequence[str]names 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- requester_type str
- Requester type
- resource_id str
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- resource_name str
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- resource_type str
- Resource type for which the associated Delegation Control is applicable to.
- severity str
- Priority assigned to the Delegated Resource Access Request by the support operator
- state str
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- ticket_numbers Sequence[str]
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- time_access_ strrequested 
- Requested access start time in UTC.
- time_created str
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time_updated str
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalInfos List<Property Map>
- In case of single approval, this will have only one item. Else, a list of approvals.
- auditTypes List<String>
- Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
- closureComment String
- The comment entered by the support operator while closing the request.
- compartmentId String
- The OCID of the compartment.
- databaseName List<String>Lists 
- List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
- 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"}
- delegationControl StringId 
- unique Delegation Control identifier
- delegationSubscription List<String>Ids 
- List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
- description String
- Detailed description of this Delegated Resource Access Request.
- displayName String
- Display name. This is generated by the system automatically.
- durationIn NumberHours 
- Duration in hours for which access is sought on the target resource.
- extendDuration NumberIn Hours 
- Duration in hours for which extension access is sought on the target resource.
- 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 Delegated Resource Access Request.
- isAuto BooleanApproved 
- Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
- isPending BooleanMore Info 
- Indicates if the delegated resource access request is waiting on more information from the operator
- lifecycleState StringDetails 
- Description of the current lifecycle state in more detail.
- numExtension NumberApprovals 
- Number of extension approvals that have been obtained so far.
- numInitial NumberApprovals 
- Number of initial approvals that have been obtained so far.
- providedService List<String>Types 
- List of Service Provider Service Types being provided by the support operator user.
- reasonFor StringRequest 
- A short description explaining why this Delegated Resource Access Request is needed by the support operator.
- requestStatus String
- A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
- requestedAction List<String>Names 
- List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
- requesterType String
- Requester type
- resourceId String
- A filter to return only Delegated Resource Access Requests for the given resource identifier.
- resourceName String
- The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
- resourceType String
- Resource type for which the associated Delegation Control is applicable to.
- severity String
- Priority assigned to the Delegated Resource Access Request by the support operator
- state String
- A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- ticketNumbers List<String>
- A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
- timeAccess StringRequested 
- Requested access start time in UTC.
- timeCreated String
- Time when the Delegated Resource Access Request was created in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- timeUpdated String
- Time when the Delegated Resource Access Request was last modified in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfo             
- ApprovalAction string
- Indicated whether the request is approved or rejected.
- ApprovalType string
- approval type, initial or extension
- ApproverAdditional stringMessage 
- Additional message specified by the approver of the request.
- ApproverComment string
- Comment specified by the approver of the request.
- ApproverId string
- User ID of the approver.
- TimeApproved stringFor Access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- ApprovalAction string
- Indicated whether the request is approved or rejected.
- ApprovalType string
- approval type, initial or extension
- ApproverAdditional stringMessage 
- Additional message specified by the approver of the request.
- ApproverComment string
- Comment specified by the approver of the request.
- ApproverId string
- User ID of the approver.
- TimeApproved stringFor Access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalAction String
- Indicated whether the request is approved or rejected.
- approvalType String
- approval type, initial or extension
- approverAdditional StringMessage 
- Additional message specified by the approver of the request.
- approverComment String
- Comment specified by the approver of the request.
- approverId String
- User ID of the approver.
- timeApproved StringFor Access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalAction string
- Indicated whether the request is approved or rejected.
- approvalType string
- approval type, initial or extension
- approverAdditional stringMessage 
- Additional message specified by the approver of the request.
- approverComment string
- Comment specified by the approver of the request.
- approverId string
- User ID of the approver.
- timeApproved stringFor Access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approval_action str
- Indicated whether the request is approved or rejected.
- approval_type str
- approval type, initial or extension
- approver_additional_ strmessage 
- Additional message specified by the approver of the request.
- approver_comment str
- Comment specified by the approver of the request.
- approver_id str
- User ID of the approver.
- time_approved_ strfor_ access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- approvalAction String
- Indicated whether the request is approved or rejected.
- approvalType String
- approval type, initial or extension
- approverAdditional StringMessage 
- Additional message specified by the approver of the request.
- approverComment String
- Comment specified by the approver of the request.
- approverId String
- User ID of the approver.
- timeApproved StringFor Access 
- Access start time that is actually approved by the customer in RFC 3339timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
GetDelegatedResourceAccessRequestsFilter     
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.