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/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[_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:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- User
Assessment stringId - The OCID of the user assessment.
- Access
Level 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.
- 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 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.
- Failed
Login 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<Get
User Assessment Profiles Filter> - Inactive
Account 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.
- Inactive
Account 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.
- Is
User boolCreated - An optional filter to return the user created profiles.
- Password
Lock 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.
- Password
Lock 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.
- Password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- Profile
Name string - A filter to return only items that match the specified profile name.
- Sessions
Per 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.
- Sessions
Per 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.
- Target
Id string - A filter to return only items related to a specific target OCID.
- User
Count stringGreater Than Or Equal - An optional filter to return the profiles having user count greater than or equal to the provided value.
- User
Count stringLess Than - An optional filter to return the profiles having user count less than the provided value.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- User
Assessment stringId - The OCID of the user assessment.
- Access
Level 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.
- 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 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.
- Failed
Login 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
[]Get
User Assessment Profiles Filter - Inactive
Account 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.
- Inactive
Account 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.
- Is
User boolCreated - An optional filter to return the user created profiles.
- Password
Lock 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.
- Password
Lock 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.
- Password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- Profile
Name string - A filter to return only items that match the specified profile name.
- Sessions
Per 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.
- Sessions
Per 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.
- Target
Id string - A filter to return only items related to a specific target OCID.
- User
Count stringGreater Than Or Equal - An optional filter to return the profiles having user count greater than or equal to the provided value.
- User
Count stringLess Than - An optional filter to return the profiles having user count less than the provided value.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- user
Assessment StringId - The OCID of the user assessment.
- access
Level 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.
- compartment
Id 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.
- failed
Login 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.
- failed
Login 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<Get
User Assessment Profiles Filter> - inactive
Account 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.
- inactive
Account 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.
- is
User BooleanCreated - An optional filter to return the user created profiles.
- password
Lock 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.
- password
Lock 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.
- password
Verification StringFunction - An optional filter to filter the profiles based on password verification function.
- profile
Name String - A filter to return only items that match the specified profile name.
- sessions
Per 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.
- sessions
Per 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.
- target
Id String - A filter to return only items related to a specific target OCID.
- user
Count StringGreater Than Or Equal - An optional filter to return the profiles having user count greater than or equal to the provided value.
- user
Count StringLess Than - An optional filter to return the profiles having user count less than the provided value.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- user
Assessment stringId - The OCID of the user assessment.
- access
Level 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.
- compartment
Id 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.
- failed
Login 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.
- failed
Login 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
Get
User Assessment Profiles Filter[] - inactive
Account 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.
- inactive
Account 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.
- is
User booleanCreated - An optional filter to return the user created profiles.
- password
Lock 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.
- password
Lock 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.
- password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- profile
Name string - A filter to return only items that match the specified profile name.
- sessions
Per 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.
- sessions
Per 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.
- target
Id string - A filter to return only items related to a specific target OCID.
- user
Count stringGreater Than Or Equal - An optional filter to return the profiles having user count greater than or equal to the provided value.
- user
Count 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[datasafe.
Get User 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.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- user
Assessment StringId - The OCID of the user assessment.
- access
Level 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.
- compartment
Id 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.
- failed
Login 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.
- failed
Login 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>
- inactive
Account 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.
- inactive
Account 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.
- is
User BooleanCreated - An optional filter to return the user created profiles.
- password
Lock 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.
- password
Lock 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.
- password
Verification StringFunction - An optional filter to filter the profiles based on password verification function.
- profile
Name String - A filter to return only items that match the specified profile name.
- sessions
Per 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.
- sessions
Per 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.
- target
Id String - A filter to return only items related to a specific target OCID.
- user
Count StringGreater Than Or Equal - An optional filter to return the profiles having user count greater than or equal to the provided value.
- user
Count 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:
- Compartment
Id string - The OCID of the compartment that contains the user assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
List<Get
User Assessment Profiles Profile> - The list of profiles.
- User
Assessment 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.
- Access
Level string - Compartment
Id boolIn Subtree - Failed
Login stringAttempts Greater Than Or Equal - Failed
Login stringAttempts Less Than - Filters
List<Get
User Assessment Profiles Filter> - Inactive
Account stringTime Greater Than Or Equal - Inactive
Account stringTime Less Than - Is
User boolCreated - Represents if the profile is created by user.
- Password
Lock stringTime Greater Than Or Equal - Password
Lock stringTime Less Than - Password
Verification stringFunction - Name of the PL/SQL that can be used for password verification.
- Profile
Name string - The name of the profile.
- Sessions
Per stringUser Greater Than Or Equal - Sessions
Per stringUser Less Than - Target
Id string - The OCID of the target database.
- User
Count stringGreater Than Or Equal - User
Count stringLess Than
- Compartment
Id string - The OCID of the compartment that contains the user assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
[]Get
User Assessment Profiles Profile - The list of profiles.
- User
Assessment 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.
- Access
Level string - Compartment
Id boolIn Subtree - Failed
Login stringAttempts Greater Than Or Equal - Failed
Login stringAttempts Less Than - Filters
[]Get
User Assessment Profiles Filter - Inactive
Account stringTime Greater Than Or Equal - Inactive
Account stringTime Less Than - Is
User boolCreated - Represents if the profile is created by user.
- Password
Lock stringTime Greater Than Or Equal - Password
Lock stringTime Less Than - Password
Verification stringFunction - Name of the PL/SQL that can be used for password verification.
- Profile
Name string - The name of the profile.
- Sessions
Per stringUser Greater Than Or Equal - Sessions
Per stringUser Less Than - Target
Id string - The OCID of the target database.
- User
Count stringGreater Than Or Equal - User
Count stringLess Than
- compartment
Id String - The OCID of the compartment that contains the user assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- profiles
List<Get
User Assessment Profiles Profile> - The list of profiles.
- user
Assessment 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.
- access
Level String - compartment
Id BooleanIn Subtree - failed
Login StringAttempts Greater Than Or Equal - failed
Login StringAttempts Less Than - filters
List<Get
User Assessment Profiles Filter> - inactive
Account StringTime Greater Than Or Equal - inactive
Account StringTime Less Than - is
User BooleanCreated - Represents if the profile is created by user.
- password
Lock StringTime Greater Than Or Equal - password
Lock StringTime Less Than - password
Verification StringFunction - Name of the PL/SQL that can be used for password verification.
- profile
Name String - The name of the profile.
- sessions
Per StringUser Greater Than Or Equal - sessions
Per StringUser Less Than - target
Id String - The OCID of the target database.
- user
Count StringGreater Than Or Equal - user
Count StringLess Than
- compartment
Id string - The OCID of the compartment that contains the user assessment.
- id string
- The provider-assigned unique ID for this managed resource.
- profiles
Get
User Assessment Profiles Profile[] - The list of profiles.
- user
Assessment 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.
- access
Level string - compartment
Id booleanIn Subtree - failed
Login stringAttempts Greater Than Or Equal - failed
Login stringAttempts Less Than - filters
Get
User Assessment Profiles Filter[] - inactive
Account stringTime Greater Than Or Equal - inactive
Account stringTime Less Than - is
User booleanCreated - Represents if the profile is created by user.
- password
Lock stringTime Greater Than Or Equal - password
Lock stringTime Less Than - password
Verification stringFunction - Name of the PL/SQL that can be used for password verification.
- profile
Name string - The name of the profile.
- sessions
Per stringUser Greater Than Or Equal - sessions
Per stringUser Less Than - target
Id string - The OCID of the target database.
- user
Count stringGreater Than Or Equal - user
Count 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[datasafe.
Get User 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[datasafe.
Get User 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
- compartment
Id 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.
- user
Assessment 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.
- access
Level String - compartment
Id BooleanIn Subtree - failed
Login StringAttempts Greater Than Or Equal - failed
Login StringAttempts Less Than - filters List<Property Map>
- inactive
Account StringTime Greater Than Or Equal - inactive
Account StringTime Less Than - is
User BooleanCreated - Represents if the profile is created by user.
- password
Lock StringTime Greater Than Or Equal - password
Lock StringTime Less Than - password
Verification StringFunction - Name of the PL/SQL that can be used for password verification.
- profile
Name String - The name of the profile.
- sessions
Per StringUser Greater Than Or Equal - sessions
Per StringUser Less Than - target
Id String - The OCID of the target database.
- user
Count StringGreater Than Or Equal - user
Count StringLess Than
Supporting Types
GetUserAssessmentProfilesFilter
GetUserAssessmentProfilesProfile
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Composite
Limit 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.
- Connect
Time string - Specify the total elapsed time limit for a session, expressed in minutes.
- Cpu
Per stringCall - Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- Cpu
Per stringSession - Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- Failed
Login stringAttempts - Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- Idle
Time string - Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- Inactive
Account 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.
- Is
User boolCreated - An optional filter to return the user created profiles.
- Logical
Reads stringPer 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 stringPer Session - Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- Password
Grace stringTime - Number of grace days for user to change password.
- Password
Life stringTime - Number of days the password is valid before expiry.
- Password
Lock stringTime - Number of days the user account remains locked after failed login.
- Password
Reuse stringMax - Number of day after the user can use the already used password.
- Password
Reuse stringTime - Number of days before which a password cannot be reused.
- Password
Rollover stringTime - Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- Password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- Password
Verification stringFunction Details - Details about the PL/SQL that can be used for password verification.
- Private
Sga string - 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 string - A filter to return only items that match the specified profile name.
- Sessions
Per stringUser - Specify the number of concurrent sessions to which you want to limit the user.
- Target
Id string - A filter to return only items related to a specific target OCID.
- User
Assessment stringId - The OCID of the user assessment.
- User
Count int - The number of users that have a given profile.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Composite
Limit 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.
- Connect
Time string - Specify the total elapsed time limit for a session, expressed in minutes.
- Cpu
Per stringCall - Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- Cpu
Per stringSession - Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- Failed
Login stringAttempts - Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- Idle
Time string - Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- Inactive
Account 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.
- Is
User boolCreated - An optional filter to return the user created profiles.
- Logical
Reads stringPer 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 stringPer Session - Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- Password
Grace stringTime - Number of grace days for user to change password.
- Password
Life stringTime - Number of days the password is valid before expiry.
- Password
Lock stringTime - Number of days the user account remains locked after failed login.
- Password
Reuse stringMax - Number of day after the user can use the already used password.
- Password
Reuse stringTime - Number of days before which a password cannot be reused.
- Password
Rollover stringTime - Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- Password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- Password
Verification stringFunction Details - Details about the PL/SQL that can be used for password verification.
- Private
Sga string - 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 string - A filter to return only items that match the specified profile name.
- Sessions
Per stringUser - Specify the number of concurrent sessions to which you want to limit the user.
- Target
Id string - A filter to return only items related to a specific target OCID.
- User
Assessment stringId - The OCID of the user assessment.
- User
Count int - The number of users that have a given profile.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- composite
Limit 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.
- connect
Time String - Specify the total elapsed time limit for a session, expressed in minutes.
- cpu
Per StringCall - Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpu
Per StringSession - Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- failed
Login StringAttempts - Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- idle
Time String - Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactive
Account 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.
- is
User BooleanCreated - An optional filter to return the user created profiles.
- logical
Reads StringPer 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 StringPer Session - Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- password
Grace StringTime - Number of grace days for user to change password.
- password
Life StringTime - Number of days the password is valid before expiry.
- password
Lock StringTime - Number of days the user account remains locked after failed login.
- password
Reuse StringMax - Number of day after the user can use the already used password.
- password
Reuse StringTime - Number of days before which a password cannot be reused.
- password
Rollover StringTime - Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- password
Verification StringFunction - An optional filter to filter the profiles based on password verification function.
- password
Verification StringFunction Details - Details about the PL/SQL that can be used for password verification.
- private
Sga String - 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 String - A filter to return only items that match the specified profile name.
- sessions
Per StringUser - Specify the number of concurrent sessions to which you want to limit the user.
- target
Id String - A filter to return only items related to a specific target OCID.
- user
Assessment StringId - The OCID of the user assessment.
- user
Count Integer - The number of users that have a given profile.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- composite
Limit 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.
- connect
Time string - Specify the total elapsed time limit for a session, expressed in minutes.
- cpu
Per stringCall - Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpu
Per stringSession - Specify the CPU time limit for a session, expressed in hundredth of seconds.
- {[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"}
- failed
Login stringAttempts - Maximum times the user is allowed in fail login before the user account is locked.
- {[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"}
- idle
Time string - Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactive
Account 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.
- is
User booleanCreated - An optional filter to return the user created profiles.
- logical
Reads stringPer 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 stringPer Session - Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- password
Grace stringTime - Number of grace days for user to change password.
- password
Life stringTime - Number of days the password is valid before expiry.
- password
Lock stringTime - Number of days the user account remains locked after failed login.
- password
Reuse stringMax - Number of day after the user can use the already used password.
- password
Reuse stringTime - Number of days before which a password cannot be reused.
- password
Rollover stringTime - Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- password
Verification stringFunction - An optional filter to filter the profiles based on password verification function.
- password
Verification stringFunction Details - Details about the PL/SQL that can be used for password verification.
- private
Sga string - 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 string - A filter to return only items that match the specified profile name.
- sessions
Per stringUser - Specify the number of concurrent sessions to which you want to limit the user.
- target
Id string - A filter to return only items related to a specific target OCID.
- user
Assessment stringId - The OCID of the user assessment.
- user
Count 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, 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_ strattempts - Maximum times the user is allowed in fail login before the user account is locked.
- 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_ 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.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- composite
Limit 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.
- connect
Time String - Specify the total elapsed time limit for a session, expressed in minutes.
- cpu
Per StringCall - Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.
- cpu
Per StringSession - Specify the CPU time limit for a session, expressed in hundredth of seconds.
- 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"}
- failed
Login StringAttempts - Maximum times the user is allowed in fail login before the user account is locked.
- 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"}
- idle
Time String - Specify the permitted periods of continuous inactive time during a session, expressed in minutes.
- inactive
Account 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.
- is
User BooleanCreated - An optional filter to return the user created profiles.
- logical
Reads StringPer 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 StringPer Session - Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.
- password
Grace StringTime - Number of grace days for user to change password.
- password
Life StringTime - Number of days the password is valid before expiry.
- password
Lock StringTime - Number of days the user account remains locked after failed login.
- password
Reuse StringMax - Number of day after the user can use the already used password.
- password
Reuse StringTime - Number of days before which a password cannot be reused.
- password
Rollover StringTime - Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.
- password
Verification StringFunction - An optional filter to filter the profiles based on password verification function.
- password
Verification StringFunction Details - Details about the PL/SQL that can be used for password verification.
- private
Sga String - 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 String - A filter to return only items that match the specified profile name.
- sessions
Per StringUser - Specify the number of concurrent sessions to which you want to limit the user.
- target
Id String - A filter to return only items related to a specific target OCID.
- user
Assessment StringId - The OCID of the user assessment.
- user
Count 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.