1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getUserAssessmentProfiles
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

oci.DataSafe.getUserAssessmentProfiles

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

    This data source provides the list of User Assessment Profiles in Oracle Cloud Infrastructure Data Safe service.

    Gets a list of user profiles containing the profile details along with the target id and user counts.

    The ListProfiles operation returns only the profiles belonging to a certain target. If compartment type user assessment id is provided, then profile information for all the targets belonging to the pertaining compartment is returned. The list does not include any subcompartments of the compartment under consideration.

    The parameter ‘accessLevel’ specifies whether to return only those compartments for which the requestor has INSPECT permissions on at least one resource directly or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if Principal doesn’t have access to even one of the child compartments. This is valid only when ‘compartmentIdInSubtree’ is set to ’true’.

    The parameter ‘compartmentIdInSubtree’ applies when you perform ListUserProfiles on the ‘compartmentId’ belonging to the assessmentId passed and when it is set to true, the entire hierarchy of compartments can be returned. To get a full list of all compartments and subcompartments in the tenancy (root compartment), set the parameter ‘compartmentIdInSubtree’ to true and ‘accessLevel’ to ACCESSIBLE.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testUserAssessmentProfiles = oci.DataSafe.getUserAssessmentProfiles({
        compartmentId: _var.compartment_id,
        userAssessmentId: oci_data_safe_user_assessment.test_user_assessment.id,
        accessLevel: _var.user_assessment_profile_access_level,
        compartmentIdInSubtree: _var.user_assessment_profile_compartment_id_in_subtree,
        failedLoginAttemptsGreaterThanOrEqual: _var.user_assessment_profile_failed_login_attempts_greater_than_or_equal,
        failedLoginAttemptsLessThan: _var.user_assessment_profile_failed_login_attempts_less_than,
        inactiveAccountTimeGreaterThanOrEqual: _var.user_assessment_profile_inactive_account_time_greater_than_or_equal,
        inactiveAccountTimeLessThan: _var.user_assessment_profile_inactive_account_time_less_than,
        isUserCreated: _var.user_assessment_profile_is_user_created,
        passwordLockTimeGreaterThanOrEqual: _var.user_assessment_profile_password_lock_time_greater_than_or_equal,
        passwordLockTimeLessThan: _var.user_assessment_profile_password_lock_time_less_than,
        passwordVerificationFunction: _var.user_assessment_profile_password_verification_function,
        profileName: oci_optimizer_profile.test_profile.name,
        sessionsPerUserGreaterThanOrEqual: _var.user_assessment_profile_sessions_per_user_greater_than_or_equal,
        sessionsPerUserLessThan: _var.user_assessment_profile_sessions_per_user_less_than,
        targetId: oci_cloud_guard_target.test_target.id,
        userCountGreaterThanOrEqual: _var.user_assessment_profile_user_count_greater_than_or_equal,
        userCountLessThan: _var.user_assessment_profile_user_count_less_than,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_user_assessment_profiles = oci.DataSafe.get_user_assessment_profiles(compartment_id=var["compartment_id"],
        user_assessment_id=oci_data_safe_user_assessment["test_user_assessment"]["id"],
        access_level=var["user_assessment_profile_access_level"],
        compartment_id_in_subtree=var["user_assessment_profile_compartment_id_in_subtree"],
        failed_login_attempts_greater_than_or_equal=var["user_assessment_profile_failed_login_attempts_greater_than_or_equal"],
        failed_login_attempts_less_than=var["user_assessment_profile_failed_login_attempts_less_than"],
        inactive_account_time_greater_than_or_equal=var["user_assessment_profile_inactive_account_time_greater_than_or_equal"],
        inactive_account_time_less_than=var["user_assessment_profile_inactive_account_time_less_than"],
        is_user_created=var["user_assessment_profile_is_user_created"],
        password_lock_time_greater_than_or_equal=var["user_assessment_profile_password_lock_time_greater_than_or_equal"],
        password_lock_time_less_than=var["user_assessment_profile_password_lock_time_less_than"],
        password_verification_function=var["user_assessment_profile_password_verification_function"],
        profile_name=oci_optimizer_profile["test_profile"]["name"],
        sessions_per_user_greater_than_or_equal=var["user_assessment_profile_sessions_per_user_greater_than_or_equal"],
        sessions_per_user_less_than=var["user_assessment_profile_sessions_per_user_less_than"],
        target_id=oci_cloud_guard_target["test_target"]["id"],
        user_count_greater_than_or_equal=var["user_assessment_profile_user_count_greater_than_or_equal"],
        user_count_less_than=var["user_assessment_profile_user_count_less_than"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.GetUserAssessmentProfiles(ctx, &datasafe.GetUserAssessmentProfilesArgs{
    			CompartmentId:                         _var.Compartment_id,
    			UserAssessmentId:                      oci_data_safe_user_assessment.Test_user_assessment.Id,
    			AccessLevel:                           pulumi.StringRef(_var.User_assessment_profile_access_level),
    			CompartmentIdInSubtree:                pulumi.BoolRef(_var.User_assessment_profile_compartment_id_in_subtree),
    			FailedLoginAttemptsGreaterThanOrEqual: pulumi.StringRef(_var.User_assessment_profile_failed_login_attempts_greater_than_or_equal),
    			FailedLoginAttemptsLessThan:           pulumi.StringRef(_var.User_assessment_profile_failed_login_attempts_less_than),
    			InactiveAccountTimeGreaterThanOrEqual: pulumi.StringRef(_var.User_assessment_profile_inactive_account_time_greater_than_or_equal),
    			InactiveAccountTimeLessThan:           pulumi.StringRef(_var.User_assessment_profile_inactive_account_time_less_than),
    			IsUserCreated:                         pulumi.BoolRef(_var.User_assessment_profile_is_user_created),
    			PasswordLockTimeGreaterThanOrEqual:    pulumi.StringRef(_var.User_assessment_profile_password_lock_time_greater_than_or_equal),
    			PasswordLockTimeLessThan:              pulumi.StringRef(_var.User_assessment_profile_password_lock_time_less_than),
    			PasswordVerificationFunction:          pulumi.StringRef(_var.User_assessment_profile_password_verification_function),
    			ProfileName:                           pulumi.StringRef(oci_optimizer_profile.Test_profile.Name),
    			SessionsPerUserGreaterThanOrEqual:     pulumi.StringRef(_var.User_assessment_profile_sessions_per_user_greater_than_or_equal),
    			SessionsPerUserLessThan:               pulumi.StringRef(_var.User_assessment_profile_sessions_per_user_less_than),
    			TargetId:                              pulumi.StringRef(oci_cloud_guard_target.Test_target.Id),
    			UserCountGreaterThanOrEqual:           pulumi.StringRef(_var.User_assessment_profile_user_count_greater_than_or_equal),
    			UserCountLessThan:                     pulumi.StringRef(_var.User_assessment_profile_user_count_less_than),
    		}, 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 testUserAssessmentProfiles = Oci.DataSafe.GetUserAssessmentProfiles.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            UserAssessmentId = oci_data_safe_user_assessment.Test_user_assessment.Id,
            AccessLevel = @var.User_assessment_profile_access_level,
            CompartmentIdInSubtree = @var.User_assessment_profile_compartment_id_in_subtree,
            FailedLoginAttemptsGreaterThanOrEqual = @var.User_assessment_profile_failed_login_attempts_greater_than_or_equal,
            FailedLoginAttemptsLessThan = @var.User_assessment_profile_failed_login_attempts_less_than,
            InactiveAccountTimeGreaterThanOrEqual = @var.User_assessment_profile_inactive_account_time_greater_than_or_equal,
            InactiveAccountTimeLessThan = @var.User_assessment_profile_inactive_account_time_less_than,
            IsUserCreated = @var.User_assessment_profile_is_user_created,
            PasswordLockTimeGreaterThanOrEqual = @var.User_assessment_profile_password_lock_time_greater_than_or_equal,
            PasswordLockTimeLessThan = @var.User_assessment_profile_password_lock_time_less_than,
            PasswordVerificationFunction = @var.User_assessment_profile_password_verification_function,
            ProfileName = oci_optimizer_profile.Test_profile.Name,
            SessionsPerUserGreaterThanOrEqual = @var.User_assessment_profile_sessions_per_user_greater_than_or_equal,
            SessionsPerUserLessThan = @var.User_assessment_profile_sessions_per_user_less_than,
            TargetId = oci_cloud_guard_target.Test_target.Id,
            UserCountGreaterThanOrEqual = @var.User_assessment_profile_user_count_greater_than_or_equal,
            UserCountLessThan = @var.User_assessment_profile_user_count_less_than,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.DataSafeFunctions;
    import com.pulumi.oci.DataSafe.inputs.GetUserAssessmentProfilesArgs;
    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 testUserAssessmentProfiles = DataSafeFunctions.getUserAssessmentProfiles(GetUserAssessmentProfilesArgs.builder()
                .compartmentId(var_.compartment_id())
                .userAssessmentId(oci_data_safe_user_assessment.test_user_assessment().id())
                .accessLevel(var_.user_assessment_profile_access_level())
                .compartmentIdInSubtree(var_.user_assessment_profile_compartment_id_in_subtree())
                .failedLoginAttemptsGreaterThanOrEqual(var_.user_assessment_profile_failed_login_attempts_greater_than_or_equal())
                .failedLoginAttemptsLessThan(var_.user_assessment_profile_failed_login_attempts_less_than())
                .inactiveAccountTimeGreaterThanOrEqual(var_.user_assessment_profile_inactive_account_time_greater_than_or_equal())
                .inactiveAccountTimeLessThan(var_.user_assessment_profile_inactive_account_time_less_than())
                .isUserCreated(var_.user_assessment_profile_is_user_created())
                .passwordLockTimeGreaterThanOrEqual(var_.user_assessment_profile_password_lock_time_greater_than_or_equal())
                .passwordLockTimeLessThan(var_.user_assessment_profile_password_lock_time_less_than())
                .passwordVerificationFunction(var_.user_assessment_profile_password_verification_function())
                .profileName(oci_optimizer_profile.test_profile().name())
                .sessionsPerUserGreaterThanOrEqual(var_.user_assessment_profile_sessions_per_user_greater_than_or_equal())
                .sessionsPerUserLessThan(var_.user_assessment_profile_sessions_per_user_less_than())
                .targetId(oci_cloud_guard_target.test_target().id())
                .userCountGreaterThanOrEqual(var_.user_assessment_profile_user_count_greater_than_or_equal())
                .userCountLessThan(var_.user_assessment_profile_user_count_less_than())
                .build());
    
        }
    }
    
    variables:
      testUserAssessmentProfiles:
        fn::invoke:
          Function: oci:DataSafe:getUserAssessmentProfiles
          Arguments:
            compartmentId: ${var.compartment_id}
            userAssessmentId: ${oci_data_safe_user_assessment.test_user_assessment.id}
            accessLevel: ${var.user_assessment_profile_access_level}
            compartmentIdInSubtree: ${var.user_assessment_profile_compartment_id_in_subtree}
            failedLoginAttemptsGreaterThanOrEqual: ${var.user_assessment_profile_failed_login_attempts_greater_than_or_equal}
            failedLoginAttemptsLessThan: ${var.user_assessment_profile_failed_login_attempts_less_than}
            inactiveAccountTimeGreaterThanOrEqual: ${var.user_assessment_profile_inactive_account_time_greater_than_or_equal}
            inactiveAccountTimeLessThan: ${var.user_assessment_profile_inactive_account_time_less_than}
            isUserCreated: ${var.user_assessment_profile_is_user_created}
            passwordLockTimeGreaterThanOrEqual: ${var.user_assessment_profile_password_lock_time_greater_than_or_equal}
            passwordLockTimeLessThan: ${var.user_assessment_profile_password_lock_time_less_than}
            passwordVerificationFunction: ${var.user_assessment_profile_password_verification_function}
            profileName: ${oci_optimizer_profile.test_profile.name}
            sessionsPerUserGreaterThanOrEqual: ${var.user_assessment_profile_sessions_per_user_greater_than_or_equal}
            sessionsPerUserLessThan: ${var.user_assessment_profile_sessions_per_user_less_than}
            targetId: ${oci_cloud_guard_target.test_target.id}
            userCountGreaterThanOrEqual: ${var.user_assessment_profile_user_count_greater_than_or_equal}
            userCountLessThan: ${var.user_assessment_profile_user_count_less_than}
    

    Using getUserAssessmentProfiles

    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 getUserAssessmentProfiles(args: GetUserAssessmentProfilesArgs, opts?: InvokeOptions): Promise<GetUserAssessmentProfilesResult>
    function getUserAssessmentProfilesOutput(args: GetUserAssessmentProfilesOutputArgs, opts?: InvokeOptions): Output<GetUserAssessmentProfilesResult>
    def get_user_assessment_profiles(access_level: Optional[str] = None,
                                     compartment_id: Optional[str] = None,
                                     compartment_id_in_subtree: Optional[bool] = None,
                                     failed_login_attempts_greater_than_or_equal: Optional[str] = None,
                                     failed_login_attempts_less_than: Optional[str] = None,
                                     filters: Optional[Sequence[_datasafe.GetUserAssessmentProfilesFilter]] = None,
                                     inactive_account_time_greater_than_or_equal: Optional[str] = None,
                                     inactive_account_time_less_than: Optional[str] = None,
                                     is_user_created: Optional[bool] = None,
                                     password_lock_time_greater_than_or_equal: Optional[str] = None,
                                     password_lock_time_less_than: Optional[str] = None,
                                     password_verification_function: Optional[str] = None,
                                     profile_name: Optional[str] = None,
                                     sessions_per_user_greater_than_or_equal: Optional[str] = None,
                                     sessions_per_user_less_than: Optional[str] = None,
                                     target_id: Optional[str] = None,
                                     user_assessment_id: Optional[str] = None,
                                     user_count_greater_than_or_equal: Optional[str] = None,
                                     user_count_less_than: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetUserAssessmentProfilesResult
    def get_user_assessment_profiles_output(access_level: Optional[pulumi.Input[str]] = None,
                                     compartment_id: Optional[pulumi.Input[str]] = None,
                                     compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                     failed_login_attempts_greater_than_or_equal: Optional[pulumi.Input[str]] = None,
                                     failed_login_attempts_less_than: Optional[pulumi.Input[str]] = None,
                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetUserAssessmentProfilesFilterArgs]]]] = None,
                                     inactive_account_time_greater_than_or_equal: Optional[pulumi.Input[str]] = None,
                                     inactive_account_time_less_than: Optional[pulumi.Input[str]] = None,
                                     is_user_created: Optional[pulumi.Input[bool]] = None,
                                     password_lock_time_greater_than_or_equal: Optional[pulumi.Input[str]] = None,
                                     password_lock_time_less_than: Optional[pulumi.Input[str]] = None,
                                     password_verification_function: Optional[pulumi.Input[str]] = None,
                                     profile_name: Optional[pulumi.Input[str]] = None,
                                     sessions_per_user_greater_than_or_equal: Optional[pulumi.Input[str]] = None,
                                     sessions_per_user_less_than: Optional[pulumi.Input[str]] = None,
                                     target_id: Optional[pulumi.Input[str]] = None,
                                     user_assessment_id: Optional[pulumi.Input[str]] = None,
                                     user_count_greater_than_or_equal: Optional[pulumi.Input[str]] = None,
                                     user_count_less_than: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetUserAssessmentProfilesResult]
    func GetUserAssessmentProfiles(ctx *Context, args *GetUserAssessmentProfilesArgs, opts ...InvokeOption) (*GetUserAssessmentProfilesResult, error)
    func GetUserAssessmentProfilesOutput(ctx *Context, args *GetUserAssessmentProfilesOutputArgs, opts ...InvokeOption) GetUserAssessmentProfilesResultOutput

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

    public static class GetUserAssessmentProfiles 
    {
        public static Task<GetUserAssessmentProfilesResult> InvokeAsync(GetUserAssessmentProfilesArgs args, InvokeOptions? opts = null)
        public static Output<GetUserAssessmentProfilesResult> Invoke(GetUserAssessmentProfilesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUserAssessmentProfilesResult> getUserAssessmentProfiles(GetUserAssessmentProfilesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getUserAssessmentProfiles:getUserAssessmentProfiles
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    UserAssessmentId string
    The OCID of the user assessment.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    FailedLoginAttemptsGreaterThanOrEqual string
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    FailedLoginAttemptsLessThan string
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    Filters List<GetUserAssessmentProfilesFilter>
    InactiveAccountTimeGreaterThanOrEqual string
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    InactiveAccountTimeLessThan string
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    IsUserCreated bool
    An optional filter to return the user created profiles.
    PasswordLockTimeGreaterThanOrEqual string
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    PasswordLockTimeLessThan string
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    PasswordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    ProfileName string
    A filter to return only items that match the specified profile name.
    SessionsPerUserGreaterThanOrEqual string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    SessionsPerUserLessThan string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    TargetId string
    A filter to return only items related to a specific target OCID.
    UserCountGreaterThanOrEqual string
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    UserCountLessThan string
    An optional filter to return the profiles having user count less than the provided value.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    UserAssessmentId string
    The OCID of the user assessment.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    FailedLoginAttemptsGreaterThanOrEqual string
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    FailedLoginAttemptsLessThan string
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    Filters []GetUserAssessmentProfilesFilter
    InactiveAccountTimeGreaterThanOrEqual string
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    InactiveAccountTimeLessThan string
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    IsUserCreated bool
    An optional filter to return the user created profiles.
    PasswordLockTimeGreaterThanOrEqual string
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    PasswordLockTimeLessThan string
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    PasswordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    ProfileName string
    A filter to return only items that match the specified profile name.
    SessionsPerUserGreaterThanOrEqual string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    SessionsPerUserLessThan string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    TargetId string
    A filter to return only items related to a specific target OCID.
    UserCountGreaterThanOrEqual string
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    UserCountLessThan string
    An optional filter to return the profiles having user count less than the provided value.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    userAssessmentId String
    The OCID of the user assessment.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    failedLoginAttemptsGreaterThanOrEqual String
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    failedLoginAttemptsLessThan String
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    filters List<GetUserAssessmentProfilesFilter>
    inactiveAccountTimeGreaterThanOrEqual String
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    inactiveAccountTimeLessThan String
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    isUserCreated Boolean
    An optional filter to return the user created profiles.
    passwordLockTimeGreaterThanOrEqual String
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordLockTimeLessThan String
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordVerificationFunction String
    An optional filter to filter the profiles based on password verification function.
    profileName String
    A filter to return only items that match the specified profile name.
    sessionsPerUserGreaterThanOrEqual String
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    sessionsPerUserLessThan String
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    targetId String
    A filter to return only items related to a specific target OCID.
    userCountGreaterThanOrEqual String
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    userCountLessThan String
    An optional filter to return the profiles having user count less than the provided value.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    userAssessmentId string
    The OCID of the user assessment.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    failedLoginAttemptsGreaterThanOrEqual string
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    failedLoginAttemptsLessThan string
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    filters GetUserAssessmentProfilesFilter[]
    inactiveAccountTimeGreaterThanOrEqual string
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    inactiveAccountTimeLessThan string
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    isUserCreated boolean
    An optional filter to return the user created profiles.
    passwordLockTimeGreaterThanOrEqual string
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordLockTimeLessThan string
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    profileName string
    A filter to return only items that match the specified profile name.
    sessionsPerUserGreaterThanOrEqual string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    sessionsPerUserLessThan string
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    targetId string
    A filter to return only items related to a specific target OCID.
    userCountGreaterThanOrEqual string
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    userCountLessThan string
    An optional filter to return the profiles having user count less than the provided value.
    compartment_id str
    A filter to return only resources that match the specified compartment OCID.
    user_assessment_id str
    The OCID of the user assessment.
    access_level str
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    failed_login_attempts_greater_than_or_equal str
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    failed_login_attempts_less_than str
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    filters Sequence[datasafe.GetUserAssessmentProfilesFilter]
    inactive_account_time_greater_than_or_equal str
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    inactive_account_time_less_than str
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    is_user_created bool
    An optional filter to return the user created profiles.
    password_lock_time_greater_than_or_equal str
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    password_lock_time_less_than str
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    password_verification_function str
    An optional filter to filter the profiles based on password verification function.
    profile_name str
    A filter to return only items that match the specified profile name.
    sessions_per_user_greater_than_or_equal str
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    sessions_per_user_less_than str
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    target_id str
    A filter to return only items related to a specific target OCID.
    user_count_greater_than_or_equal str
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    user_count_less_than str
    An optional filter to return the profiles having user count less than the provided value.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    userAssessmentId String
    The OCID of the user assessment.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    failedLoginAttemptsGreaterThanOrEqual String
    An optional filter to return the profiles having allow failed login attempts number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    failedLoginAttemptsLessThan String
    An optional filter to return the profiles having failed login attempts number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    filters List<Property Map>
    inactiveAccountTimeGreaterThanOrEqual String
    An optional filter to return the profiles allowing inactive account time in days greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    inactiveAccountTimeLessThan String
    An optional filter to return the profiles allowing inactive account time in days less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    isUserCreated Boolean
    An optional filter to return the user created profiles.
    passwordLockTimeGreaterThanOrEqual String
    An optional filter to return the profiles having password lock number greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordLockTimeLessThan String
    An optional filter to return the profiles having password lock number less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    passwordVerificationFunction String
    An optional filter to filter the profiles based on password verification function.
    profileName String
    A filter to return only items that match the specified profile name.
    sessionsPerUserGreaterThanOrEqual String
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count. greater than or equal to the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    sessionsPerUserLessThan String
    An optional filter to return the profiles permitting the user to spawn multiple sessions having count less than the provided value. String value is used for accommodating the "UNLIMITED" and "DEFAULT" values.
    targetId String
    A filter to return only items related to a specific target OCID.
    userCountGreaterThanOrEqual String
    An optional filter to return the profiles having user count greater than or equal to the provided value.
    userCountLessThan String
    An optional filter to return the profiles having user count less than the provided value.

    getUserAssessmentProfiles Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains the user assessment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Profiles List<GetUserAssessmentProfilesProfile>
    The list of profiles.
    UserAssessmentId string
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    AccessLevel string
    CompartmentIdInSubtree bool
    FailedLoginAttemptsGreaterThanOrEqual string
    FailedLoginAttemptsLessThan string
    Filters List<GetUserAssessmentProfilesFilter>
    InactiveAccountTimeGreaterThanOrEqual string
    InactiveAccountTimeLessThan string
    IsUserCreated bool
    Represents if the profile is created by user.
    PasswordLockTimeGreaterThanOrEqual string
    PasswordLockTimeLessThan string
    PasswordVerificationFunction string
    Name of the PL/SQL that can be used for password verification.
    ProfileName string
    The name of the profile.
    SessionsPerUserGreaterThanOrEqual string
    SessionsPerUserLessThan string
    TargetId string
    The OCID of the target database.
    UserCountGreaterThanOrEqual string
    UserCountLessThan string
    CompartmentId string
    The OCID of the compartment that contains the user assessment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Profiles []GetUserAssessmentProfilesProfile
    The list of profiles.
    UserAssessmentId string
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    AccessLevel string
    CompartmentIdInSubtree bool
    FailedLoginAttemptsGreaterThanOrEqual string
    FailedLoginAttemptsLessThan string
    Filters []GetUserAssessmentProfilesFilter
    InactiveAccountTimeGreaterThanOrEqual string
    InactiveAccountTimeLessThan string
    IsUserCreated bool
    Represents if the profile is created by user.
    PasswordLockTimeGreaterThanOrEqual string
    PasswordLockTimeLessThan string
    PasswordVerificationFunction string
    Name of the PL/SQL that can be used for password verification.
    ProfileName string
    The name of the profile.
    SessionsPerUserGreaterThanOrEqual string
    SessionsPerUserLessThan string
    TargetId string
    The OCID of the target database.
    UserCountGreaterThanOrEqual string
    UserCountLessThan string
    compartmentId String
    The OCID of the compartment that contains the user assessment.
    id String
    The provider-assigned unique ID for this managed resource.
    profiles List<GetUserAssessmentProfilesProfile>
    The list of profiles.
    userAssessmentId String
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    accessLevel String
    compartmentIdInSubtree Boolean
    failedLoginAttemptsGreaterThanOrEqual String
    failedLoginAttemptsLessThan String
    filters List<GetUserAssessmentProfilesFilter>
    inactiveAccountTimeGreaterThanOrEqual String
    inactiveAccountTimeLessThan String
    isUserCreated Boolean
    Represents if the profile is created by user.
    passwordLockTimeGreaterThanOrEqual String
    passwordLockTimeLessThan String
    passwordVerificationFunction String
    Name of the PL/SQL that can be used for password verification.
    profileName String
    The name of the profile.
    sessionsPerUserGreaterThanOrEqual String
    sessionsPerUserLessThan String
    targetId String
    The OCID of the target database.
    userCountGreaterThanOrEqual String
    userCountLessThan String
    compartmentId string
    The OCID of the compartment that contains the user assessment.
    id string
    The provider-assigned unique ID for this managed resource.
    profiles GetUserAssessmentProfilesProfile[]
    The list of profiles.
    userAssessmentId string
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    accessLevel string
    compartmentIdInSubtree boolean
    failedLoginAttemptsGreaterThanOrEqual string
    failedLoginAttemptsLessThan string
    filters GetUserAssessmentProfilesFilter[]
    inactiveAccountTimeGreaterThanOrEqual string
    inactiveAccountTimeLessThan string
    isUserCreated boolean
    Represents if the profile is created by user.
    passwordLockTimeGreaterThanOrEqual string
    passwordLockTimeLessThan string
    passwordVerificationFunction string
    Name of the PL/SQL that can be used for password verification.
    profileName string
    The name of the profile.
    sessionsPerUserGreaterThanOrEqual string
    sessionsPerUserLessThan string
    targetId string
    The OCID of the target database.
    userCountGreaterThanOrEqual string
    userCountLessThan string
    compartment_id str
    The OCID of the compartment that contains the user assessment.
    id str
    The provider-assigned unique ID for this managed resource.
    profiles Sequence[datasafe.GetUserAssessmentProfilesProfile]
    The list of profiles.
    user_assessment_id str
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    access_level str
    compartment_id_in_subtree bool
    failed_login_attempts_greater_than_or_equal str
    failed_login_attempts_less_than str
    filters Sequence[datasafe.GetUserAssessmentProfilesFilter]
    inactive_account_time_greater_than_or_equal str
    inactive_account_time_less_than str
    is_user_created bool
    Represents if the profile is created by user.
    password_lock_time_greater_than_or_equal str
    password_lock_time_less_than str
    password_verification_function str
    Name of the PL/SQL that can be used for password verification.
    profile_name str
    The name of the profile.
    sessions_per_user_greater_than_or_equal str
    sessions_per_user_less_than str
    target_id str
    The OCID of the target database.
    user_count_greater_than_or_equal str
    user_count_less_than str
    compartmentId String
    The OCID of the compartment that contains the user assessment.
    id String
    The provider-assigned unique ID for this managed resource.
    profiles List<Property Map>
    The list of profiles.
    userAssessmentId String
    The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.
    accessLevel String
    compartmentIdInSubtree Boolean
    failedLoginAttemptsGreaterThanOrEqual String
    failedLoginAttemptsLessThan String
    filters List<Property Map>
    inactiveAccountTimeGreaterThanOrEqual String
    inactiveAccountTimeLessThan String
    isUserCreated Boolean
    Represents if the profile is created by user.
    passwordLockTimeGreaterThanOrEqual String
    passwordLockTimeLessThan String
    passwordVerificationFunction String
    Name of the PL/SQL that can be used for password verification.
    profileName String
    The name of the profile.
    sessionsPerUserGreaterThanOrEqual String
    sessionsPerUserLessThan String
    targetId String
    The OCID of the target database.
    userCountGreaterThanOrEqual String
    userCountLessThan String

    Supporting Types

    GetUserAssessmentProfilesFilter

    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

    GetUserAssessmentProfilesProfile

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    CompositeLimit string
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    ConnectTime string
    Specify the total elapsed time limit for a session, expressed in minutes.
    CpuPerCall string
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    CpuPerSession string
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    FailedLoginAttempts string
    Maximum times the user is allowed in fail login before the user account is locked.
    FreeformTags Dictionary<string, object>
    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"}
    IdleTime string
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    InactiveAccountTime string
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    IsUserCreated bool
    An optional filter to return the user created profiles.
    LogicalReadsPerCall string
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    LogicalReadsPerSession string
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    PasswordGraceTime string
    Number of grace days for user to change password.
    PasswordLifeTime string
    Number of days the password is valid before expiry.
    PasswordLockTime string
    Number of days the user account remains locked after failed login.
    PasswordReuseMax string
    Number of day after the user can use the already used password.
    PasswordReuseTime string
    Number of days before which a password cannot be reused.
    PasswordRolloverTime string
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    PasswordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    PasswordVerificationFunctionDetails string
    Details about the PL/SQL that can be used for password verification.
    PrivateSga string
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    ProfileName string
    A filter to return only items that match the specified profile name.
    SessionsPerUser string
    Specify the number of concurrent sessions to which you want to limit the user.
    TargetId string
    A filter to return only items related to a specific target OCID.
    UserAssessmentId string
    The OCID of the user assessment.
    UserCount int
    The number of users that have a given profile.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    CompositeLimit string
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    ConnectTime string
    Specify the total elapsed time limit for a session, expressed in minutes.
    CpuPerCall string
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    CpuPerSession string
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    FailedLoginAttempts string
    Maximum times the user is allowed in fail login before the user account is locked.
    FreeformTags map[string]interface{}
    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"}
    IdleTime string
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    InactiveAccountTime string
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    IsUserCreated bool
    An optional filter to return the user created profiles.
    LogicalReadsPerCall string
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    LogicalReadsPerSession string
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    PasswordGraceTime string
    Number of grace days for user to change password.
    PasswordLifeTime string
    Number of days the password is valid before expiry.
    PasswordLockTime string
    Number of days the user account remains locked after failed login.
    PasswordReuseMax string
    Number of day after the user can use the already used password.
    PasswordReuseTime string
    Number of days before which a password cannot be reused.
    PasswordRolloverTime string
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    PasswordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    PasswordVerificationFunctionDetails string
    Details about the PL/SQL that can be used for password verification.
    PrivateSga string
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    ProfileName string
    A filter to return only items that match the specified profile name.
    SessionsPerUser string
    Specify the number of concurrent sessions to which you want to limit the user.
    TargetId string
    A filter to return only items related to a specific target OCID.
    UserAssessmentId string
    The OCID of the user assessment.
    UserCount int
    The number of users that have a given profile.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    compositeLimit String
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    connectTime String
    Specify the total elapsed time limit for a session, expressed in minutes.
    cpuPerCall String
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    cpuPerSession String
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    failedLoginAttempts String
    Maximum times the user is allowed in fail login before the user account is locked.
    freeformTags Map<String,Object>
    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"}
    idleTime String
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    inactiveAccountTime String
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    isUserCreated Boolean
    An optional filter to return the user created profiles.
    logicalReadsPerCall String
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    logicalReadsPerSession String
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    passwordGraceTime String
    Number of grace days for user to change password.
    passwordLifeTime String
    Number of days the password is valid before expiry.
    passwordLockTime String
    Number of days the user account remains locked after failed login.
    passwordReuseMax String
    Number of day after the user can use the already used password.
    passwordReuseTime String
    Number of days before which a password cannot be reused.
    passwordRolloverTime String
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    passwordVerificationFunction String
    An optional filter to filter the profiles based on password verification function.
    passwordVerificationFunctionDetails String
    Details about the PL/SQL that can be used for password verification.
    privateSga String
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    profileName String
    A filter to return only items that match the specified profile name.
    sessionsPerUser String
    Specify the number of concurrent sessions to which you want to limit the user.
    targetId String
    A filter to return only items related to a specific target OCID.
    userAssessmentId String
    The OCID of the user assessment.
    userCount Integer
    The number of users that have a given profile.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    compositeLimit string
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    connectTime string
    Specify the total elapsed time limit for a session, expressed in minutes.
    cpuPerCall string
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    cpuPerSession string
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    failedLoginAttempts string
    Maximum times the user is allowed in fail login before the user account is locked.
    freeformTags {[key: string]: any}
    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"}
    idleTime string
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    inactiveAccountTime string
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    isUserCreated boolean
    An optional filter to return the user created profiles.
    logicalReadsPerCall string
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    logicalReadsPerSession string
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    passwordGraceTime string
    Number of grace days for user to change password.
    passwordLifeTime string
    Number of days the password is valid before expiry.
    passwordLockTime string
    Number of days the user account remains locked after failed login.
    passwordReuseMax string
    Number of day after the user can use the already used password.
    passwordReuseTime string
    Number of days before which a password cannot be reused.
    passwordRolloverTime string
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    passwordVerificationFunction string
    An optional filter to filter the profiles based on password verification function.
    passwordVerificationFunctionDetails string
    Details about the PL/SQL that can be used for password verification.
    privateSga string
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    profileName string
    A filter to return only items that match the specified profile name.
    sessionsPerUser string
    Specify the number of concurrent sessions to which you want to limit the user.
    targetId string
    A filter to return only items related to a specific target OCID.
    userAssessmentId string
    The OCID of the user assessment.
    userCount number
    The number of users that have a given profile.
    compartment_id str
    A filter to return only resources that match the specified compartment OCID.
    composite_limit str
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    connect_time str
    Specify the total elapsed time limit for a session, expressed in minutes.
    cpu_per_call str
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    cpu_per_session str
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    failed_login_attempts str
    Maximum times the user is allowed in fail login before the user account is locked.
    freeform_tags Mapping[str, Any]
    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"}
    idle_time str
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    inactive_account_time str
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    is_user_created bool
    An optional filter to return the user created profiles.
    logical_reads_per_call str
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    logical_reads_per_session str
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    password_grace_time str
    Number of grace days for user to change password.
    password_life_time str
    Number of days the password is valid before expiry.
    password_lock_time str
    Number of days the user account remains locked after failed login.
    password_reuse_max str
    Number of day after the user can use the already used password.
    password_reuse_time str
    Number of days before which a password cannot be reused.
    password_rollover_time str
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    password_verification_function str
    An optional filter to filter the profiles based on password verification function.
    password_verification_function_details str
    Details about the PL/SQL that can be used for password verification.
    private_sga str
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    profile_name str
    A filter to return only items that match the specified profile name.
    sessions_per_user str
    Specify the number of concurrent sessions to which you want to limit the user.
    target_id str
    A filter to return only items related to a specific target OCID.
    user_assessment_id str
    The OCID of the user assessment.
    user_count int
    The number of users that have a given profile.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    compositeLimit String
    Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.
    connectTime String
    Specify the total elapsed time limit for a session, expressed in minutes.
    cpuPerCall String
    Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
    cpuPerSession String
    Specify the CPU time limit for a session, expressed in hundredth of seconds.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    failedLoginAttempts String
    Maximum times the user is allowed in fail login before the user account is locked.
    freeformTags Map<Any>
    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"}
    idleTime String
    Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
    inactiveAccountTime String
    The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.
    isUserCreated Boolean
    An optional filter to return the user created profiles.
    logicalReadsPerCall String
    Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
    logicalReadsPerSession String
    Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
    passwordGraceTime String
    Number of grace days for user to change password.
    passwordLifeTime String
    Number of days the password is valid before expiry.
    passwordLockTime String
    Number of days the user account remains locked after failed login.
    passwordReuseMax String
    Number of day after the user can use the already used password.
    passwordReuseTime String
    Number of days before which a password cannot be reused.
    passwordRolloverTime String
    Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
    passwordVerificationFunction String
    An optional filter to filter the profiles based on password verification function.
    passwordVerificationFunctionDetails String
    Details about the PL/SQL that can be used for password verification.
    privateSga String
    Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.
    profileName String
    A filter to return only items that match the specified profile name.
    sessionsPerUser String
    Specify the number of concurrent sessions to which you want to limit the user.
    targetId String
    A filter to return only items related to a specific target OCID.
    userAssessmentId String
    The OCID of the user assessment.
    userCount Number
    The number of users that have a given profile.

    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 v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi