oci.DataSafe.getUserAssessmentProfiles
Explore with Pulumi AI
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: compartmentId,
    userAssessmentId: testUserAssessment.id,
    accessLevel: userAssessmentProfileAccessLevel,
    compartmentIdInSubtree: userAssessmentProfileCompartmentIdInSubtree,
    failedLoginAttemptsGreaterThanOrEqual: userAssessmentProfileFailedLoginAttemptsGreaterThanOrEqual,
    failedLoginAttemptsLessThan: userAssessmentProfileFailedLoginAttemptsLessThan,
    inactiveAccountTimeGreaterThanOrEqual: userAssessmentProfileInactiveAccountTimeGreaterThanOrEqual,
    inactiveAccountTimeLessThan: userAssessmentProfileInactiveAccountTimeLessThan,
    isUserCreated: userAssessmentProfileIsUserCreated,
    passwordLockTimeGreaterThanOrEqual: userAssessmentProfilePasswordLockTimeGreaterThanOrEqual,
    passwordLockTimeLessThan: userAssessmentProfilePasswordLockTimeLessThan,
    passwordVerificationFunction: userAssessmentProfilePasswordVerificationFunction,
    profileName: testProfile.name,
    sessionsPerUserGreaterThanOrEqual: userAssessmentProfileSessionsPerUserGreaterThanOrEqual,
    sessionsPerUserLessThan: userAssessmentProfileSessionsPerUserLessThan,
    targetId: testTarget.id,
    userCountGreaterThanOrEqual: userAssessmentProfileUserCountGreaterThanOrEqual,
    userCountLessThan: userAssessmentProfileUserCountLessThan,
});
import pulumi
import pulumi_oci as oci
test_user_assessment_profiles = oci.DataSafe.get_user_assessment_profiles(compartment_id=compartment_id,
    user_assessment_id=test_user_assessment["id"],
    access_level=user_assessment_profile_access_level,
    compartment_id_in_subtree=user_assessment_profile_compartment_id_in_subtree,
    failed_login_attempts_greater_than_or_equal=user_assessment_profile_failed_login_attempts_greater_than_or_equal,
    failed_login_attempts_less_than=user_assessment_profile_failed_login_attempts_less_than,
    inactive_account_time_greater_than_or_equal=user_assessment_profile_inactive_account_time_greater_than_or_equal,
    inactive_account_time_less_than=user_assessment_profile_inactive_account_time_less_than,
    is_user_created=user_assessment_profile_is_user_created,
    password_lock_time_greater_than_or_equal=user_assessment_profile_password_lock_time_greater_than_or_equal,
    password_lock_time_less_than=user_assessment_profile_password_lock_time_less_than,
    password_verification_function=user_assessment_profile_password_verification_function,
    profile_name=test_profile["name"],
    sessions_per_user_greater_than_or_equal=user_assessment_profile_sessions_per_user_greater_than_or_equal,
    sessions_per_user_less_than=user_assessment_profile_sessions_per_user_less_than,
    target_id=test_target["id"],
    user_count_greater_than_or_equal=user_assessment_profile_user_count_greater_than_or_equal,
    user_count_less_than=user_assessment_profile_user_count_less_than)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/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:                         compartmentId,
			UserAssessmentId:                      testUserAssessment.Id,
			AccessLevel:                           pulumi.StringRef(userAssessmentProfileAccessLevel),
			CompartmentIdInSubtree:                pulumi.BoolRef(userAssessmentProfileCompartmentIdInSubtree),
			FailedLoginAttemptsGreaterThanOrEqual: pulumi.StringRef(userAssessmentProfileFailedLoginAttemptsGreaterThanOrEqual),
			FailedLoginAttemptsLessThan:           pulumi.StringRef(userAssessmentProfileFailedLoginAttemptsLessThan),
			InactiveAccountTimeGreaterThanOrEqual: pulumi.StringRef(userAssessmentProfileInactiveAccountTimeGreaterThanOrEqual),
			InactiveAccountTimeLessThan:           pulumi.StringRef(userAssessmentProfileInactiveAccountTimeLessThan),
			IsUserCreated:                         pulumi.BoolRef(userAssessmentProfileIsUserCreated),
			PasswordLockTimeGreaterThanOrEqual:    pulumi.StringRef(userAssessmentProfilePasswordLockTimeGreaterThanOrEqual),
			PasswordLockTimeLessThan:              pulumi.StringRef(userAssessmentProfilePasswordLockTimeLessThan),
			PasswordVerificationFunction:          pulumi.StringRef(userAssessmentProfilePasswordVerificationFunction),
			ProfileName:                           pulumi.StringRef(testProfile.Name),
			SessionsPerUserGreaterThanOrEqual:     pulumi.StringRef(userAssessmentProfileSessionsPerUserGreaterThanOrEqual),
			SessionsPerUserLessThan:               pulumi.StringRef(userAssessmentProfileSessionsPerUserLessThan),
			TargetId:                              pulumi.StringRef(testTarget.Id),
			UserCountGreaterThanOrEqual:           pulumi.StringRef(userAssessmentProfileUserCountGreaterThanOrEqual),
			UserCountLessThan:                     pulumi.StringRef(userAssessmentProfileUserCountLessThan),
		}, 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 = compartmentId,
        UserAssessmentId = testUserAssessment.Id,
        AccessLevel = userAssessmentProfileAccessLevel,
        CompartmentIdInSubtree = userAssessmentProfileCompartmentIdInSubtree,
        FailedLoginAttemptsGreaterThanOrEqual = userAssessmentProfileFailedLoginAttemptsGreaterThanOrEqual,
        FailedLoginAttemptsLessThan = userAssessmentProfileFailedLoginAttemptsLessThan,
        InactiveAccountTimeGreaterThanOrEqual = userAssessmentProfileInactiveAccountTimeGreaterThanOrEqual,
        InactiveAccountTimeLessThan = userAssessmentProfileInactiveAccountTimeLessThan,
        IsUserCreated = userAssessmentProfileIsUserCreated,
        PasswordLockTimeGreaterThanOrEqual = userAssessmentProfilePasswordLockTimeGreaterThanOrEqual,
        PasswordLockTimeLessThan = userAssessmentProfilePasswordLockTimeLessThan,
        PasswordVerificationFunction = userAssessmentProfilePasswordVerificationFunction,
        ProfileName = testProfile.Name,
        SessionsPerUserGreaterThanOrEqual = userAssessmentProfileSessionsPerUserGreaterThanOrEqual,
        SessionsPerUserLessThan = userAssessmentProfileSessionsPerUserLessThan,
        TargetId = testTarget.Id,
        UserCountGreaterThanOrEqual = userAssessmentProfileUserCountGreaterThanOrEqual,
        UserCountLessThan = userAssessmentProfileUserCountLessThan,
    });
});
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(compartmentId)
            .userAssessmentId(testUserAssessment.id())
            .accessLevel(userAssessmentProfileAccessLevel)
            .compartmentIdInSubtree(userAssessmentProfileCompartmentIdInSubtree)
            .failedLoginAttemptsGreaterThanOrEqual(userAssessmentProfileFailedLoginAttemptsGreaterThanOrEqual)
            .failedLoginAttemptsLessThan(userAssessmentProfileFailedLoginAttemptsLessThan)
            .inactiveAccountTimeGreaterThanOrEqual(userAssessmentProfileInactiveAccountTimeGreaterThanOrEqual)
            .inactiveAccountTimeLessThan(userAssessmentProfileInactiveAccountTimeLessThan)
            .isUserCreated(userAssessmentProfileIsUserCreated)
            .passwordLockTimeGreaterThanOrEqual(userAssessmentProfilePasswordLockTimeGreaterThanOrEqual)
            .passwordLockTimeLessThan(userAssessmentProfilePasswordLockTimeLessThan)
            .passwordVerificationFunction(userAssessmentProfilePasswordVerificationFunction)
            .profileName(testProfile.name())
            .sessionsPerUserGreaterThanOrEqual(userAssessmentProfileSessionsPerUserGreaterThanOrEqual)
            .sessionsPerUserLessThan(userAssessmentProfileSessionsPerUserLessThan)
            .targetId(testTarget.id())
            .userCountGreaterThanOrEqual(userAssessmentProfileUserCountGreaterThanOrEqual)
            .userCountLessThan(userAssessmentProfileUserCountLessThan)
            .build());
    }
}
variables:
  testUserAssessmentProfiles:
    fn::invoke:
      function: oci:DataSafe:getUserAssessmentProfiles
      arguments:
        compartmentId: ${compartmentId}
        userAssessmentId: ${testUserAssessment.id}
        accessLevel: ${userAssessmentProfileAccessLevel}
        compartmentIdInSubtree: ${userAssessmentProfileCompartmentIdInSubtree}
        failedLoginAttemptsGreaterThanOrEqual: ${userAssessmentProfileFailedLoginAttemptsGreaterThanOrEqual}
        failedLoginAttemptsLessThan: ${userAssessmentProfileFailedLoginAttemptsLessThan}
        inactiveAccountTimeGreaterThanOrEqual: ${userAssessmentProfileInactiveAccountTimeGreaterThanOrEqual}
        inactiveAccountTimeLessThan: ${userAssessmentProfileInactiveAccountTimeLessThan}
        isUserCreated: ${userAssessmentProfileIsUserCreated}
        passwordLockTimeGreaterThanOrEqual: ${userAssessmentProfilePasswordLockTimeGreaterThanOrEqual}
        passwordLockTimeLessThan: ${userAssessmentProfilePasswordLockTimeLessThan}
        passwordVerificationFunction: ${userAssessmentProfilePasswordVerificationFunction}
        profileName: ${testProfile.name}
        sessionsPerUserGreaterThanOrEqual: ${userAssessmentProfileSessionsPerUserGreaterThanOrEqual}
        sessionsPerUserLessThan: ${userAssessmentProfileSessionsPerUserLessThan}
        targetId: ${testTarget.id}
        userCountGreaterThanOrEqual: ${userAssessmentProfileUserCountGreaterThanOrEqual}
        userCountLessThan: ${userAssessmentProfileUserCountLessThan}
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[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[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)
public static Output<GetUserAssessmentProfilesResult> getUserAssessmentProfiles(GetUserAssessmentProfilesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getUserAssessmentProfiles:getUserAssessmentProfiles
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- UserAssessment stringId 
- 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.
- CompartmentId boolIn Subtree 
- 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.
- FailedLogin stringAttempts Greater Than Or Equal 
- 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.
- FailedLogin stringAttempts Less Than 
- 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<GetUser Assessment Profiles Filter> 
- InactiveAccount stringTime Greater Than Or Equal 
- 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.
- InactiveAccount stringTime Less Than 
- 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.
- IsUser boolCreated 
- An optional filter to return the user created profiles.
- PasswordLock stringTime Greater Than Or Equal 
- 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.
- PasswordLock stringTime Less Than 
- 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.
- PasswordVerification stringFunction 
- 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.
- SessionsPer stringUser Greater Than Or Equal 
- 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.
- SessionsPer stringUser Less Than 
- 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.
- UserCount stringGreater Than Or Equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- UserCount stringLess Than 
- 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.
- UserAssessment stringId 
- 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.
- CompartmentId boolIn Subtree 
- 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.
- FailedLogin stringAttempts Greater Than Or Equal 
- 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.
- FailedLogin stringAttempts Less Than 
- 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
[]GetUser Assessment Profiles Filter 
- InactiveAccount stringTime Greater Than Or Equal 
- 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.
- InactiveAccount stringTime Less Than 
- 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.
- IsUser boolCreated 
- An optional filter to return the user created profiles.
- PasswordLock stringTime Greater Than Or Equal 
- 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.
- PasswordLock stringTime Less Than 
- 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.
- PasswordVerification stringFunction 
- 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.
- SessionsPer stringUser Greater Than Or Equal 
- 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.
- SessionsPer stringUser Less Than 
- 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.
- UserCount stringGreater Than Or Equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- UserCount stringLess Than 
- 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.
- userAssessment StringId 
- 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.
- compartmentId BooleanIn Subtree 
- 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.
- failedLogin StringAttempts Greater Than Or Equal 
- 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.
- failedLogin StringAttempts Less Than 
- 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<GetUser Assessment Profiles Filter> 
- inactiveAccount StringTime Greater Than Or Equal 
- 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.
- inactiveAccount StringTime Less Than 
- 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.
- isUser BooleanCreated 
- An optional filter to return the user created profiles.
- passwordLock StringTime Greater Than Or Equal 
- 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.
- passwordLock StringTime Less Than 
- 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.
- passwordVerification StringFunction 
- 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.
- sessionsPer StringUser Greater Than Or Equal 
- 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.
- sessionsPer StringUser Less Than 
- 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.
- userCount StringGreater Than Or Equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- userCount StringLess Than 
- 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.
- userAssessment stringId 
- 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.
- compartmentId booleanIn Subtree 
- 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.
- failedLogin stringAttempts Greater Than Or Equal 
- 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.
- failedLogin stringAttempts Less Than 
- 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
GetUser Assessment Profiles Filter[] 
- inactiveAccount stringTime Greater Than Or Equal 
- 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.
- inactiveAccount stringTime Less Than 
- 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.
- isUser booleanCreated 
- An optional filter to return the user created profiles.
- passwordLock stringTime Greater Than Or Equal 
- 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.
- passwordLock stringTime Less Than 
- 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.
- passwordVerification stringFunction 
- 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.
- sessionsPer stringUser Greater Than Or Equal 
- 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.
- sessionsPer stringUser Less Than 
- 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.
- userCount stringGreater Than Or Equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- userCount stringLess Than 
- 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_ strid 
- 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_ boolin_ subtree 
- 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_ strattempts_ greater_ than_ or_ equal 
- 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_ strattempts_ less_ than 
- 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[GetUser Assessment Profiles Filter] 
- inactive_account_ strtime_ greater_ than_ or_ equal 
- 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_ strtime_ less_ than 
- 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_ boolcreated 
- An optional filter to return the user created profiles.
- password_lock_ strtime_ greater_ than_ or_ equal 
- 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_ strtime_ less_ than 
- 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_ strfunction 
- 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_ struser_ greater_ than_ or_ equal 
- 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_ struser_ less_ than 
- 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_ strgreater_ than_ or_ equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- user_count_ strless_ than 
- 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.
- userAssessment StringId 
- 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.
- compartmentId BooleanIn Subtree 
- 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.
- failedLogin StringAttempts Greater Than Or Equal 
- 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.
- failedLogin StringAttempts Less Than 
- 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>
- inactiveAccount StringTime Greater Than Or Equal 
- 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.
- inactiveAccount StringTime Less Than 
- 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.
- isUser BooleanCreated 
- An optional filter to return the user created profiles.
- passwordLock StringTime Greater Than Or Equal 
- 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.
- passwordLock StringTime Less Than 
- 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.
- passwordVerification StringFunction 
- 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.
- sessionsPer StringUser Greater Than Or Equal 
- 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.
- sessionsPer StringUser Less Than 
- 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.
- userCount StringGreater Than Or Equal 
- An optional filter to return the profiles having user count greater than or equal to the provided value.
- userCount StringLess Than 
- 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<GetUser Assessment Profiles Profile> 
- The list of profiles.
- UserAssessment stringId 
- 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
- CompartmentId boolIn Subtree 
- FailedLogin stringAttempts Greater Than Or Equal 
- FailedLogin stringAttempts Less Than 
- Filters
List<GetUser Assessment Profiles Filter> 
- InactiveAccount stringTime Greater Than Or Equal 
- InactiveAccount stringTime Less Than 
- IsUser boolCreated 
- Represents if the profile is created by user.
- PasswordLock stringTime Greater Than Or Equal 
- PasswordLock stringTime Less Than 
- PasswordVerification stringFunction 
- Name of the PL/SQL that can be used for password verification.
- ProfileName string
- The name of the profile.
- SessionsPer stringUser Greater Than Or Equal 
- SessionsPer stringUser Less Than 
- TargetId string
- The OCID of the target database.
- UserCount stringGreater Than Or Equal 
- UserCount stringLess Than 
- CompartmentId string
- The OCID of the compartment that contains the user assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
[]GetUser Assessment Profiles Profile 
- The list of profiles.
- UserAssessment stringId 
- 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
- CompartmentId boolIn Subtree 
- FailedLogin stringAttempts Greater Than Or Equal 
- FailedLogin stringAttempts Less Than 
- Filters
[]GetUser Assessment Profiles Filter 
- InactiveAccount stringTime Greater Than Or Equal 
- InactiveAccount stringTime Less Than 
- IsUser boolCreated 
- Represents if the profile is created by user.
- PasswordLock stringTime Greater Than Or Equal 
- PasswordLock stringTime Less Than 
- PasswordVerification stringFunction 
- Name of the PL/SQL that can be used for password verification.
- ProfileName string
- The name of the profile.
- SessionsPer stringUser Greater Than Or Equal 
- SessionsPer stringUser Less Than 
- TargetId string
- The OCID of the target database.
- UserCount stringGreater Than Or Equal 
- UserCount stringLess Than 
- 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<GetUser Assessment Profiles Profile> 
- The list of profiles.
- userAssessment StringId 
- 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
- compartmentId BooleanIn Subtree 
- failedLogin StringAttempts Greater Than Or Equal 
- failedLogin StringAttempts Less Than 
- filters
List<GetUser Assessment Profiles Filter> 
- inactiveAccount StringTime Greater Than Or Equal 
- inactiveAccount StringTime Less Than 
- isUser BooleanCreated 
- Represents if the profile is created by user.
- passwordLock StringTime Greater Than Or Equal 
- passwordLock StringTime Less Than 
- passwordVerification StringFunction 
- Name of the PL/SQL that can be used for password verification.
- profileName String
- The name of the profile.
- sessionsPer StringUser Greater Than Or Equal 
- sessionsPer StringUser Less Than 
- targetId String
- The OCID of the target database.
- userCount StringGreater Than Or Equal 
- userCount StringLess Than 
- compartmentId string
- The OCID of the compartment that contains the user assessment.
- id string
- The provider-assigned unique ID for this managed resource.
- profiles
GetUser Assessment Profiles Profile[] 
- The list of profiles.
- userAssessment stringId 
- 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
- compartmentId booleanIn Subtree 
- failedLogin stringAttempts Greater Than Or Equal 
- failedLogin stringAttempts Less Than 
- filters
GetUser Assessment Profiles Filter[] 
- inactiveAccount stringTime Greater Than Or Equal 
- inactiveAccount stringTime Less Than 
- isUser booleanCreated 
- Represents if the profile is created by user.
- passwordLock stringTime Greater Than Or Equal 
- passwordLock stringTime Less Than 
- passwordVerification stringFunction 
- Name of the PL/SQL that can be used for password verification.
- profileName string
- The name of the profile.
- sessionsPer stringUser Greater Than Or Equal 
- sessionsPer stringUser Less Than 
- targetId string
- The OCID of the target database.
- userCount stringGreater Than Or Equal 
- userCount stringLess Than 
- 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[GetUser Assessment Profiles Profile] 
- The list of profiles.
- user_assessment_ strid 
- 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_ boolin_ subtree 
- failed_login_ strattempts_ greater_ than_ or_ equal 
- failed_login_ strattempts_ less_ than 
- filters
Sequence[GetUser Assessment Profiles Filter] 
- inactive_account_ strtime_ greater_ than_ or_ equal 
- inactive_account_ strtime_ less_ than 
- is_user_ boolcreated 
- Represents if the profile is created by user.
- password_lock_ strtime_ greater_ than_ or_ equal 
- password_lock_ strtime_ less_ than 
- password_verification_ strfunction 
- Name of the PL/SQL that can be used for password verification.
- profile_name str
- The name of the profile.
- sessions_per_ struser_ greater_ than_ or_ equal 
- sessions_per_ struser_ less_ than 
- target_id str
- The OCID of the target database.
- user_count_ strgreater_ than_ or_ equal 
- user_count_ strless_ than 
- 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.
- userAssessment StringId 
- 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
- compartmentId BooleanIn Subtree 
- failedLogin StringAttempts Greater Than Or Equal 
- failedLogin StringAttempts Less Than 
- filters List<Property Map>
- inactiveAccount StringTime Greater Than Or Equal 
- inactiveAccount StringTime Less Than 
- isUser BooleanCreated 
- Represents if the profile is created by user.
- passwordLock StringTime Greater Than Or Equal 
- passwordLock StringTime Less Than 
- passwordVerification StringFunction 
- Name of the PL/SQL that can be used for password verification.
- profileName String
- The name of the profile.
- sessionsPer StringUser Greater Than Or Equal 
- sessionsPer StringUser Less Than 
- targetId String
- The OCID of the target database.
- userCount StringGreater Than Or Equal 
- userCount StringLess Than 
Supporting Types
GetUserAssessmentProfilesFilter    
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.
- CpuPer stringCall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- CpuPer stringSession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- FailedLogin stringAttempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- IdleTime string
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- InactiveAccount stringTime 
- 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.
- IsUser boolCreated 
- An optional filter to return the user created profiles.
- LogicalReads stringPer Call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- LogicalReads stringPer Session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- PasswordGrace stringTime 
- Number of grace days for user to change password.
- PasswordLife stringTime 
- Number of days the password is valid before expiry.
- PasswordLock stringTime 
- Number of days the user account remains locked after failed login.
- PasswordReuse stringMax 
- Number of day after the user can use the already used password.
- PasswordReuse stringTime 
- Number of days before which a password cannot be reused.
- PasswordRollover stringTime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- PasswordVerification stringFunction 
- An optional filter to filter the profiles based on password verification function.
- PasswordVerification stringFunction Details 
- 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.
- SessionsPer stringUser 
- 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.
- UserAssessment stringId 
- 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.
- CpuPer stringCall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- CpuPer stringSession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- FailedLogin stringAttempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- IdleTime string
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- InactiveAccount stringTime 
- 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.
- IsUser boolCreated 
- An optional filter to return the user created profiles.
- LogicalReads stringPer Call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- LogicalReads stringPer Session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- PasswordGrace stringTime 
- Number of grace days for user to change password.
- PasswordLife stringTime 
- Number of days the password is valid before expiry.
- PasswordLock stringTime 
- Number of days the user account remains locked after failed login.
- PasswordReuse stringMax 
- Number of day after the user can use the already used password.
- PasswordReuse stringTime 
- Number of days before which a password cannot be reused.
- PasswordRollover stringTime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- PasswordVerification stringFunction 
- An optional filter to filter the profiles based on password verification function.
- PasswordVerification stringFunction Details 
- 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.
- SessionsPer stringUser 
- 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.
- UserAssessment stringId 
- 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.
- cpuPer StringCall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpuPer StringSession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- failedLogin StringAttempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- idleTime String
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactiveAccount StringTime 
- 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.
- isUser BooleanCreated 
- An optional filter to return the user created profiles.
- logicalReads StringPer Call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- logicalReads StringPer Session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- passwordGrace StringTime 
- Number of grace days for user to change password.
- passwordLife StringTime 
- Number of days the password is valid before expiry.
- passwordLock StringTime 
- Number of days the user account remains locked after failed login.
- passwordReuse StringMax 
- Number of day after the user can use the already used password.
- passwordReuse StringTime 
- Number of days before which a password cannot be reused.
- passwordRollover StringTime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- passwordVerification StringFunction 
- An optional filter to filter the profiles based on password verification function.
- passwordVerification StringFunction Details 
- 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.
- sessionsPer StringUser 
- 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.
- userAssessment StringId 
- 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.
- cpuPer stringCall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpuPer stringSession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- {[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"}
- failedLogin stringAttempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- {[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"}
- idleTime string
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactiveAccount stringTime 
- 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.
- isUser booleanCreated 
- An optional filter to return the user created profiles.
- logicalReads stringPer Call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- logicalReads stringPer Session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- passwordGrace stringTime 
- Number of grace days for user to change password.
- passwordLife stringTime 
- Number of days the password is valid before expiry.
- passwordLock stringTime 
- Number of days the user account remains locked after failed login.
- passwordReuse stringMax 
- Number of day after the user can use the already used password.
- passwordReuse stringTime 
- Number of days before which a password cannot be reused.
- passwordRollover stringTime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- passwordVerification stringFunction 
- An optional filter to filter the profiles based on password verification function.
- passwordVerification stringFunction Details 
- 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.
- sessionsPer stringUser 
- 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.
- userAssessment stringId 
- 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_ strcall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpu_per_ strsession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- failed_login_ strattempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- idle_time str
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactive_account_ strtime 
- 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_ boolcreated 
- An optional filter to return the user created profiles.
- logical_reads_ strper_ call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- logical_reads_ strper_ session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- password_grace_ strtime 
- Number of grace days for user to change password.
- password_life_ strtime 
- Number of days the password is valid before expiry.
- password_lock_ strtime 
- Number of days the user account remains locked after failed login.
- password_reuse_ strmax 
- Number of day after the user can use the already used password.
- password_reuse_ strtime 
- Number of days before which a password cannot be reused.
- password_rollover_ strtime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- password_verification_ strfunction 
- An optional filter to filter the profiles based on password verification function.
- password_verification_ strfunction_ details 
- 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_ struser 
- 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_ strid 
- 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.
- cpuPer StringCall 
- Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpuPer StringSession 
- Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- failedLogin StringAttempts 
- Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- idleTime String
- Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactiveAccount StringTime 
- 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.
- isUser BooleanCreated 
- An optional filter to return the user created profiles.
- logicalReads StringPer Call 
- Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).
- logicalReads StringPer Session 
- Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- passwordGrace StringTime 
- Number of grace days for user to change password.
- passwordLife StringTime 
- Number of days the password is valid before expiry.
- passwordLock StringTime 
- Number of days the user account remains locked after failed login.
- passwordReuse StringMax 
- Number of day after the user can use the already used password.
- passwordReuse StringTime 
- Number of days before which a password cannot be reused.
- passwordRollover StringTime 
- Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- passwordVerification StringFunction 
- An optional filter to filter the profiles based on password verification function.
- passwordVerification StringFunction Details 
- 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.
- sessionsPer StringUser 
- 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.
- userAssessment StringId 
- 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 ociTerraform Provider.