oci.DataSafe.getUserAssessmentUsers
Explore with Pulumi AI
This data source provides the list of User Assessment Users in Oracle Cloud Infrastructure Data Safe service.
Gets a list of users of the specified user assessment. The result contains the database user details for each user, such as user type, account status, last login time, user creation time, authentication type, user profile, and the date and time of the latest password change. It also contains the user category derived from these user details as well as privileges granted to each user.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testUserAssessmentUsers = oci.DataSafe.getUserAssessmentUsers({
    userAssessmentId: testUserAssessment.id,
    accessLevel: userAssessmentUserAccessLevel,
    accountStatus: userAssessmentUserAccountStatus,
    areAllSchemasAccessible: userAssessmentUserAreAllSchemasAccessible,
    authenticationType: userAssessmentUserAuthenticationType,
    compartmentIdInSubtree: userAssessmentUserCompartmentIdInSubtree,
    schemaLists: userAssessmentUserSchemaList,
    targetId: testTarget.id,
    timeLastLoginGreaterThanOrEqualTo: userAssessmentUserTimeLastLoginGreaterThanOrEqualTo,
    timeLastLoginLessThan: userAssessmentUserTimeLastLoginLessThan,
    timePasswordExpiryGreaterThanOrEqualTo: userAssessmentUserTimePasswordExpiryGreaterThanOrEqualTo,
    timePasswordExpiryLessThan: userAssessmentUserTimePasswordExpiryLessThan,
    timePasswordLastChangedGreaterThanOrEqualTo: userAssessmentUserTimePasswordLastChangedGreaterThanOrEqualTo,
    timePasswordLastChangedLessThan: userAssessmentUserTimePasswordLastChangedLessThan,
    timeUserCreatedGreaterThanOrEqualTo: userAssessmentUserTimeUserCreatedGreaterThanOrEqualTo,
    timeUserCreatedLessThan: userAssessmentUserTimeUserCreatedLessThan,
    userCategory: userAssessmentUserUserCategory,
    userKey: userAssessmentUserUserKey,
    userName: testUser.name,
    userProfile: userAssessmentUserUserProfile,
    userRole: userAssessmentUserUserRole,
    userType: userAssessmentUserUserType,
});
import pulumi
import pulumi_oci as oci
test_user_assessment_users = oci.DataSafe.get_user_assessment_users(user_assessment_id=test_user_assessment["id"],
    access_level=user_assessment_user_access_level,
    account_status=user_assessment_user_account_status,
    are_all_schemas_accessible=user_assessment_user_are_all_schemas_accessible,
    authentication_type=user_assessment_user_authentication_type,
    compartment_id_in_subtree=user_assessment_user_compartment_id_in_subtree,
    schema_lists=user_assessment_user_schema_list,
    target_id=test_target["id"],
    time_last_login_greater_than_or_equal_to=user_assessment_user_time_last_login_greater_than_or_equal_to,
    time_last_login_less_than=user_assessment_user_time_last_login_less_than,
    time_password_expiry_greater_than_or_equal_to=user_assessment_user_time_password_expiry_greater_than_or_equal_to,
    time_password_expiry_less_than=user_assessment_user_time_password_expiry_less_than,
    time_password_last_changed_greater_than_or_equal_to=user_assessment_user_time_password_last_changed_greater_than_or_equal_to,
    time_password_last_changed_less_than=user_assessment_user_time_password_last_changed_less_than,
    time_user_created_greater_than_or_equal_to=user_assessment_user_time_user_created_greater_than_or_equal_to,
    time_user_created_less_than=user_assessment_user_time_user_created_less_than,
    user_category=user_assessment_user_user_category,
    user_key=user_assessment_user_user_key,
    user_name=test_user["name"],
    user_profile=user_assessment_user_user_profile,
    user_role=user_assessment_user_user_role,
    user_type=user_assessment_user_user_type)
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.GetUserAssessmentUsers(ctx, &datasafe.GetUserAssessmentUsersArgs{
			UserAssessmentId:                            testUserAssessment.Id,
			AccessLevel:                                 pulumi.StringRef(userAssessmentUserAccessLevel),
			AccountStatus:                               pulumi.StringRef(userAssessmentUserAccountStatus),
			AreAllSchemasAccessible:                     pulumi.BoolRef(userAssessmentUserAreAllSchemasAccessible),
			AuthenticationType:                          pulumi.StringRef(userAssessmentUserAuthenticationType),
			CompartmentIdInSubtree:                      pulumi.BoolRef(userAssessmentUserCompartmentIdInSubtree),
			SchemaLists:                                 userAssessmentUserSchemaList,
			TargetId:                                    pulumi.StringRef(testTarget.Id),
			TimeLastLoginGreaterThanOrEqualTo:           pulumi.StringRef(userAssessmentUserTimeLastLoginGreaterThanOrEqualTo),
			TimeLastLoginLessThan:                       pulumi.StringRef(userAssessmentUserTimeLastLoginLessThan),
			TimePasswordExpiryGreaterThanOrEqualTo:      pulumi.StringRef(userAssessmentUserTimePasswordExpiryGreaterThanOrEqualTo),
			TimePasswordExpiryLessThan:                  pulumi.StringRef(userAssessmentUserTimePasswordExpiryLessThan),
			TimePasswordLastChangedGreaterThanOrEqualTo: pulumi.StringRef(userAssessmentUserTimePasswordLastChangedGreaterThanOrEqualTo),
			TimePasswordLastChangedLessThan:             pulumi.StringRef(userAssessmentUserTimePasswordLastChangedLessThan),
			TimeUserCreatedGreaterThanOrEqualTo:         pulumi.StringRef(userAssessmentUserTimeUserCreatedGreaterThanOrEqualTo),
			TimeUserCreatedLessThan:                     pulumi.StringRef(userAssessmentUserTimeUserCreatedLessThan),
			UserCategory:                                pulumi.StringRef(userAssessmentUserUserCategory),
			UserKey:                                     pulumi.StringRef(userAssessmentUserUserKey),
			UserName:                                    pulumi.StringRef(testUser.Name),
			UserProfile:                                 pulumi.StringRef(userAssessmentUserUserProfile),
			UserRole:                                    pulumi.StringRef(userAssessmentUserUserRole),
			UserType:                                    pulumi.StringRef(userAssessmentUserUserType),
		}, 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 testUserAssessmentUsers = Oci.DataSafe.GetUserAssessmentUsers.Invoke(new()
    {
        UserAssessmentId = testUserAssessment.Id,
        AccessLevel = userAssessmentUserAccessLevel,
        AccountStatus = userAssessmentUserAccountStatus,
        AreAllSchemasAccessible = userAssessmentUserAreAllSchemasAccessible,
        AuthenticationType = userAssessmentUserAuthenticationType,
        CompartmentIdInSubtree = userAssessmentUserCompartmentIdInSubtree,
        SchemaLists = userAssessmentUserSchemaList,
        TargetId = testTarget.Id,
        TimeLastLoginGreaterThanOrEqualTo = userAssessmentUserTimeLastLoginGreaterThanOrEqualTo,
        TimeLastLoginLessThan = userAssessmentUserTimeLastLoginLessThan,
        TimePasswordExpiryGreaterThanOrEqualTo = userAssessmentUserTimePasswordExpiryGreaterThanOrEqualTo,
        TimePasswordExpiryLessThan = userAssessmentUserTimePasswordExpiryLessThan,
        TimePasswordLastChangedGreaterThanOrEqualTo = userAssessmentUserTimePasswordLastChangedGreaterThanOrEqualTo,
        TimePasswordLastChangedLessThan = userAssessmentUserTimePasswordLastChangedLessThan,
        TimeUserCreatedGreaterThanOrEqualTo = userAssessmentUserTimeUserCreatedGreaterThanOrEqualTo,
        TimeUserCreatedLessThan = userAssessmentUserTimeUserCreatedLessThan,
        UserCategory = userAssessmentUserUserCategory,
        UserKey = userAssessmentUserUserKey,
        UserName = testUser.Name,
        UserProfile = userAssessmentUserUserProfile,
        UserRole = userAssessmentUserUserRole,
        UserType = userAssessmentUserUserType,
    });
});
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.GetUserAssessmentUsersArgs;
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 testUserAssessmentUsers = DataSafeFunctions.getUserAssessmentUsers(GetUserAssessmentUsersArgs.builder()
            .userAssessmentId(testUserAssessment.id())
            .accessLevel(userAssessmentUserAccessLevel)
            .accountStatus(userAssessmentUserAccountStatus)
            .areAllSchemasAccessible(userAssessmentUserAreAllSchemasAccessible)
            .authenticationType(userAssessmentUserAuthenticationType)
            .compartmentIdInSubtree(userAssessmentUserCompartmentIdInSubtree)
            .schemaLists(userAssessmentUserSchemaList)
            .targetId(testTarget.id())
            .timeLastLoginGreaterThanOrEqualTo(userAssessmentUserTimeLastLoginGreaterThanOrEqualTo)
            .timeLastLoginLessThan(userAssessmentUserTimeLastLoginLessThan)
            .timePasswordExpiryGreaterThanOrEqualTo(userAssessmentUserTimePasswordExpiryGreaterThanOrEqualTo)
            .timePasswordExpiryLessThan(userAssessmentUserTimePasswordExpiryLessThan)
            .timePasswordLastChangedGreaterThanOrEqualTo(userAssessmentUserTimePasswordLastChangedGreaterThanOrEqualTo)
            .timePasswordLastChangedLessThan(userAssessmentUserTimePasswordLastChangedLessThan)
            .timeUserCreatedGreaterThanOrEqualTo(userAssessmentUserTimeUserCreatedGreaterThanOrEqualTo)
            .timeUserCreatedLessThan(userAssessmentUserTimeUserCreatedLessThan)
            .userCategory(userAssessmentUserUserCategory)
            .userKey(userAssessmentUserUserKey)
            .userName(testUser.name())
            .userProfile(userAssessmentUserUserProfile)
            .userRole(userAssessmentUserUserRole)
            .userType(userAssessmentUserUserType)
            .build());
    }
}
variables:
  testUserAssessmentUsers:
    fn::invoke:
      function: oci:DataSafe:getUserAssessmentUsers
      arguments:
        userAssessmentId: ${testUserAssessment.id}
        accessLevel: ${userAssessmentUserAccessLevel}
        accountStatus: ${userAssessmentUserAccountStatus}
        areAllSchemasAccessible: ${userAssessmentUserAreAllSchemasAccessible}
        authenticationType: ${userAssessmentUserAuthenticationType}
        compartmentIdInSubtree: ${userAssessmentUserCompartmentIdInSubtree}
        schemaLists: ${userAssessmentUserSchemaList}
        targetId: ${testTarget.id}
        timeLastLoginGreaterThanOrEqualTo: ${userAssessmentUserTimeLastLoginGreaterThanOrEqualTo}
        timeLastLoginLessThan: ${userAssessmentUserTimeLastLoginLessThan}
        timePasswordExpiryGreaterThanOrEqualTo: ${userAssessmentUserTimePasswordExpiryGreaterThanOrEqualTo}
        timePasswordExpiryLessThan: ${userAssessmentUserTimePasswordExpiryLessThan}
        timePasswordLastChangedGreaterThanOrEqualTo: ${userAssessmentUserTimePasswordLastChangedGreaterThanOrEqualTo}
        timePasswordLastChangedLessThan: ${userAssessmentUserTimePasswordLastChangedLessThan}
        timeUserCreatedGreaterThanOrEqualTo: ${userAssessmentUserTimeUserCreatedGreaterThanOrEqualTo}
        timeUserCreatedLessThan: ${userAssessmentUserTimeUserCreatedLessThan}
        userCategory: ${userAssessmentUserUserCategory}
        userKey: ${userAssessmentUserUserKey}
        userName: ${testUser.name}
        userProfile: ${userAssessmentUserUserProfile}
        userRole: ${userAssessmentUserUserRole}
        userType: ${userAssessmentUserUserType}
Using getUserAssessmentUsers
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 getUserAssessmentUsers(args: GetUserAssessmentUsersArgs, opts?: InvokeOptions): Promise<GetUserAssessmentUsersResult>
function getUserAssessmentUsersOutput(args: GetUserAssessmentUsersOutputArgs, opts?: InvokeOptions): Output<GetUserAssessmentUsersResult>def get_user_assessment_users(access_level: Optional[str] = None,
                              account_status: Optional[str] = None,
                              are_all_schemas_accessible: Optional[bool] = None,
                              authentication_type: Optional[str] = None,
                              compartment_id_in_subtree: Optional[bool] = None,
                              filters: Optional[Sequence[GetUserAssessmentUsersFilter]] = None,
                              schema_lists: Optional[Sequence[str]] = None,
                              target_id: Optional[str] = None,
                              time_last_login_greater_than_or_equal_to: Optional[str] = None,
                              time_last_login_less_than: Optional[str] = None,
                              time_password_expiry_greater_than_or_equal_to: Optional[str] = None,
                              time_password_expiry_less_than: Optional[str] = None,
                              time_password_last_changed_greater_than_or_equal_to: Optional[str] = None,
                              time_password_last_changed_less_than: Optional[str] = None,
                              time_user_created_greater_than_or_equal_to: Optional[str] = None,
                              time_user_created_less_than: Optional[str] = None,
                              user_assessment_id: Optional[str] = None,
                              user_category: Optional[str] = None,
                              user_key: Optional[str] = None,
                              user_name: Optional[str] = None,
                              user_profile: Optional[str] = None,
                              user_role: Optional[str] = None,
                              user_type: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetUserAssessmentUsersResult
def get_user_assessment_users_output(access_level: Optional[pulumi.Input[str]] = None,
                              account_status: Optional[pulumi.Input[str]] = None,
                              are_all_schemas_accessible: Optional[pulumi.Input[bool]] = None,
                              authentication_type: Optional[pulumi.Input[str]] = None,
                              compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserAssessmentUsersFilterArgs]]]] = None,
                              schema_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                              target_id: Optional[pulumi.Input[str]] = None,
                              time_last_login_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                              time_last_login_less_than: Optional[pulumi.Input[str]] = None,
                              time_password_expiry_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                              time_password_expiry_less_than: Optional[pulumi.Input[str]] = None,
                              time_password_last_changed_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                              time_password_last_changed_less_than: Optional[pulumi.Input[str]] = None,
                              time_user_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                              time_user_created_less_than: Optional[pulumi.Input[str]] = None,
                              user_assessment_id: Optional[pulumi.Input[str]] = None,
                              user_category: Optional[pulumi.Input[str]] = None,
                              user_key: Optional[pulumi.Input[str]] = None,
                              user_name: Optional[pulumi.Input[str]] = None,
                              user_profile: Optional[pulumi.Input[str]] = None,
                              user_role: Optional[pulumi.Input[str]] = None,
                              user_type: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetUserAssessmentUsersResult]func GetUserAssessmentUsers(ctx *Context, args *GetUserAssessmentUsersArgs, opts ...InvokeOption) (*GetUserAssessmentUsersResult, error)
func GetUserAssessmentUsersOutput(ctx *Context, args *GetUserAssessmentUsersOutputArgs, opts ...InvokeOption) GetUserAssessmentUsersResultOutput> Note: This function is named GetUserAssessmentUsers in the Go SDK.
public static class GetUserAssessmentUsers 
{
    public static Task<GetUserAssessmentUsersResult> InvokeAsync(GetUserAssessmentUsersArgs args, InvokeOptions? opts = null)
    public static Output<GetUserAssessmentUsersResult> Invoke(GetUserAssessmentUsersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetUserAssessmentUsersResult> getUserAssessmentUsers(GetUserAssessmentUsersArgs args, InvokeOptions options)
public static Output<GetUserAssessmentUsersResult> getUserAssessmentUsers(GetUserAssessmentUsersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getUserAssessmentUsers:getUserAssessmentUsers
  arguments:
    # arguments dictionaryThe following arguments are supported:
- 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.
- AccountStatus string
- A filter to return only items that match the specified account status.
- AreAll boolSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- AuthenticationType string
- A filter to return only items that match the specified authentication type.
- 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.
- Filters
List<GetUser Assessment Users Filter> 
- SchemaLists List<string>
- A filter to return items that contain the specified schema list.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeLast stringLogin Greater Than Or Equal To 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimeLast stringLogin Less Than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringExpiry Greater Than Or Equal To 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringExpiry Less Than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringLast Changed Greater Than Or Equal To 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimePassword stringLast Changed Less Than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimeUser stringCreated Greater Than Or Equal To 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimeUser stringCreated Less Than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- UserCategory string
- A filter to return only items that match the specified user category.
- UserKey string
- A filter to return only items that match the specified user key.
- UserName string
- A filter to return only items that match the specified user name.
- UserProfile string
- A filter to return only items that match the specified user profile.
- UserRole string
- A filter to return only items that match the specified user role.
- UserType string
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
- 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.
- AccountStatus string
- A filter to return only items that match the specified account status.
- AreAll boolSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- AuthenticationType string
- A filter to return only items that match the specified authentication type.
- 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.
- Filters
[]GetUser Assessment Users Filter 
- SchemaLists []string
- A filter to return items that contain the specified schema list.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeLast stringLogin Greater Than Or Equal To 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimeLast stringLogin Less Than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringExpiry Greater Than Or Equal To 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringExpiry Less Than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimePassword stringLast Changed Greater Than Or Equal To 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimePassword stringLast Changed Less Than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- TimeUser stringCreated Greater Than Or Equal To 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- TimeUser stringCreated Less Than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- UserCategory string
- A filter to return only items that match the specified user category.
- UserKey string
- A filter to return only items that match the specified user key.
- UserName string
- A filter to return only items that match the specified user name.
- UserProfile string
- A filter to return only items that match the specified user profile.
- UserRole string
- A filter to return only items that match the specified user role.
- UserType string
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
- 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.
- accountStatus String
- A filter to return only items that match the specified account status.
- areAll BooleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType String
- A filter to return only items that match the specified authentication type.
- 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.
- filters
List<GetUser Assessment Users Filter> 
- schemaLists List<String>
- A filter to return items that contain the specified schema list.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeLast StringLogin Greater Than Or Equal To 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeLast StringLogin Less Than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringExpiry Greater Than Or Equal To 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringExpiry Less Than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringLast Changed Greater Than Or Equal To 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timePassword StringLast Changed Less Than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeUser StringCreated Greater Than Or Equal To 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timeUser StringCreated Less Than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- userCategory String
- A filter to return only items that match the specified user category.
- userKey String
- A filter to return only items that match the specified user key.
- userName String
- A filter to return only items that match the specified user name.
- userProfile String
- A filter to return only items that match the specified user profile.
- userRole String
- A filter to return only items that match the specified user role.
- userType String
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
- 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.
- accountStatus string
- A filter to return only items that match the specified account status.
- areAll booleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType string
- A filter to return only items that match the specified authentication type.
- 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.
- filters
GetUser Assessment Users Filter[] 
- schemaLists string[]
- A filter to return items that contain the specified schema list.
- targetId string
- A filter to return only items related to a specific target OCID.
- timeLast stringLogin Greater Than Or Equal To 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeLast stringLogin Less Than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword stringExpiry Greater Than Or Equal To 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword stringExpiry Less Than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword stringLast Changed Greater Than Or Equal To 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timePassword stringLast Changed Less Than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeUser stringCreated Greater Than Or Equal To 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timeUser stringCreated Less Than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- userCategory string
- A filter to return only items that match the specified user category.
- userKey string
- A filter to return only items that match the specified user key.
- userName string
- A filter to return only items that match the specified user name.
- userProfile string
- A filter to return only items that match the specified user profile.
- userRole string
- A filter to return only items that match the specified user role.
- userType string
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
- 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.
- account_status str
- A filter to return only items that match the specified account status.
- are_all_ boolschemas_ accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authentication_type str
- A filter to return only items that match the specified authentication type.
- 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.
- filters
Sequence[GetUser Assessment Users Filter] 
- schema_lists Sequence[str]
- A filter to return items that contain the specified schema list.
- target_id str
- A filter to return only items related to a specific target OCID.
- time_last_ strlogin_ greater_ than_ or_ equal_ to 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- time_last_ strlogin_ less_ than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- time_password_ strexpiry_ greater_ than_ or_ equal_ to 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- time_password_ strexpiry_ less_ than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- time_password_ strlast_ changed_ greater_ than_ or_ equal_ to 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- time_password_ strlast_ changed_ less_ than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- time_user_ strcreated_ greater_ than_ or_ equal_ to 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- time_user_ strcreated_ less_ than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- user_category str
- A filter to return only items that match the specified user category.
- user_key str
- A filter to return only items that match the specified user key.
- user_name str
- A filter to return only items that match the specified user name.
- user_profile str
- A filter to return only items that match the specified user profile.
- user_role str
- A filter to return only items that match the specified user role.
- user_type str
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
- 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.
- accountStatus String
- A filter to return only items that match the specified account status.
- areAll BooleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType String
- A filter to return only items that match the specified authentication type.
- 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.
- filters List<Property Map>
- schemaLists List<String>
- A filter to return items that contain the specified schema list.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeLast StringLogin Greater Than Or Equal To 
- A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeLast StringLogin Less Than 
- A filter to return users whose last login time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringExpiry Greater Than Or Equal To 
- A filter to return users whose password expiry date in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringExpiry Less Than 
- A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timePassword StringLast Changed Greater Than Or Equal To 
- A filter to return users whose last password change in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timePassword StringLast Changed Less Than 
- A filter to return users whose last password change in the database is less than the date and time specified, in the format defined by RFC3339. - Example: 2016-12-19T16:39:57.600Z 
- timeUser StringCreated Greater Than Or Equal To 
- A filter to return users whose creation time in the database is greater than or equal to the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- timeUser StringCreated Less Than 
- A filter to return users whose creation time in the database is less than the date and time specified, in the format defined by RFC3339. Example: 2016-12-19T16:39:57.600Z
- userCategory String
- A filter to return only items that match the specified user category.
- userKey String
- A filter to return only items that match the specified user key.
- userName String
- A filter to return only items that match the specified user name.
- userProfile String
- A filter to return only items that match the specified user profile.
- userRole String
- A filter to return only items that match the specified user role.
- userType String
- A filter to return only items that match the specified user type. The possible values can be- ADMIN_PRIVILEGED
- APPLICATION
- PRIVILEGED
- SCHEMA
- NON_PRIVILEGED as specified by '#/definitions/userTypes'.
 
getUserAssessmentUsers Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- UserAssessment stringId 
- Users
List<GetUser Assessment Users User> 
- The list of users.
- AccessLevel string
- AccountStatus string
- The status of the user account.
- AreAll boolSchemas Accessible 
- Indicates whether the user has access to all the schemas.
- AuthenticationType string
- The user authentication method.
- CompartmentId boolIn Subtree 
- Filters
List<GetUser Assessment Users Filter> 
- SchemaLists List<string>
- The list of database schemas current user can access.
- TargetId string
- The OCID of the target database.
- TimeLast stringLogin Greater Than Or Equal To 
- TimeLast stringLogin Less Than 
- TimePassword stringExpiry Greater Than Or Equal To 
- TimePassword stringExpiry Less Than 
- TimePassword stringLast Changed Greater Than Or Equal To 
- TimePassword stringLast Changed Less Than 
- TimeUser stringCreated Greater Than Or Equal To 
- TimeUser stringCreated Less Than 
- UserCategory string
- The user category based on the privileges and other details of the user.
- UserKey string
- UserName string
- The database user name.
- UserProfile string
- The user profile name.
- UserRole string
- UserType string
- Id string
- The provider-assigned unique ID for this managed resource.
- UserAssessment stringId 
- Users
[]GetUser Assessment Users User 
- The list of users.
- AccessLevel string
- AccountStatus string
- The status of the user account.
- AreAll boolSchemas Accessible 
- Indicates whether the user has access to all the schemas.
- AuthenticationType string
- The user authentication method.
- CompartmentId boolIn Subtree 
- Filters
[]GetUser Assessment Users Filter 
- SchemaLists []string
- The list of database schemas current user can access.
- TargetId string
- The OCID of the target database.
- TimeLast stringLogin Greater Than Or Equal To 
- TimeLast stringLogin Less Than 
- TimePassword stringExpiry Greater Than Or Equal To 
- TimePassword stringExpiry Less Than 
- TimePassword stringLast Changed Greater Than Or Equal To 
- TimePassword stringLast Changed Less Than 
- TimeUser stringCreated Greater Than Or Equal To 
- TimeUser stringCreated Less Than 
- UserCategory string
- The user category based on the privileges and other details of the user.
- UserKey string
- UserName string
- The database user name.
- UserProfile string
- The user profile name.
- UserRole string
- UserType string
- id String
- The provider-assigned unique ID for this managed resource.
- userAssessment StringId 
- users
List<GetUser Assessment Users User> 
- The list of users.
- accessLevel String
- accountStatus String
- The status of the user account.
- areAll BooleanSchemas Accessible 
- Indicates whether the user has access to all the schemas.
- authenticationType String
- The user authentication method.
- compartmentId BooleanIn Subtree 
- filters
List<GetUser Assessment Users Filter> 
- schemaLists List<String>
- The list of database schemas current user can access.
- targetId String
- The OCID of the target database.
- timeLast StringLogin Greater Than Or Equal To 
- timeLast StringLogin Less Than 
- timePassword StringExpiry Greater Than Or Equal To 
- timePassword StringExpiry Less Than 
- timePassword StringLast Changed Greater Than Or Equal To 
- timePassword StringLast Changed Less Than 
- timeUser StringCreated Greater Than Or Equal To 
- timeUser StringCreated Less Than 
- userCategory String
- The user category based on the privileges and other details of the user.
- userKey String
- userName String
- The database user name.
- userProfile String
- The user profile name.
- userRole String
- userType String
- id string
- The provider-assigned unique ID for this managed resource.
- userAssessment stringId 
- users
GetUser Assessment Users User[] 
- The list of users.
- accessLevel string
- accountStatus string
- The status of the user account.
- areAll booleanSchemas Accessible 
- Indicates whether the user has access to all the schemas.
- authenticationType string
- The user authentication method.
- compartmentId booleanIn Subtree 
- filters
GetUser Assessment Users Filter[] 
- schemaLists string[]
- The list of database schemas current user can access.
- targetId string
- The OCID of the target database.
- timeLast stringLogin Greater Than Or Equal To 
- timeLast stringLogin Less Than 
- timePassword stringExpiry Greater Than Or Equal To 
- timePassword stringExpiry Less Than 
- timePassword stringLast Changed Greater Than Or Equal To 
- timePassword stringLast Changed Less Than 
- timeUser stringCreated Greater Than Or Equal To 
- timeUser stringCreated Less Than 
- userCategory string
- The user category based on the privileges and other details of the user.
- userKey string
- userName string
- The database user name.
- userProfile string
- The user profile name.
- userRole string
- userType string
- id str
- The provider-assigned unique ID for this managed resource.
- user_assessment_ strid 
- users
Sequence[GetUser Assessment Users User] 
- The list of users.
- access_level str
- account_status str
- The status of the user account.
- are_all_ boolschemas_ accessible 
- Indicates whether the user has access to all the schemas.
- authentication_type str
- The user authentication method.
- compartment_id_ boolin_ subtree 
- filters
Sequence[GetUser Assessment Users Filter] 
- schema_lists Sequence[str]
- The list of database schemas current user can access.
- target_id str
- The OCID of the target database.
- time_last_ strlogin_ greater_ than_ or_ equal_ to 
- time_last_ strlogin_ less_ than 
- time_password_ strexpiry_ greater_ than_ or_ equal_ to 
- time_password_ strexpiry_ less_ than 
- time_password_ strlast_ changed_ greater_ than_ or_ equal_ to 
- time_password_ strlast_ changed_ less_ than 
- time_user_ strcreated_ greater_ than_ or_ equal_ to 
- time_user_ strcreated_ less_ than 
- user_category str
- The user category based on the privileges and other details of the user.
- user_key str
- user_name str
- The database user name.
- user_profile str
- The user profile name.
- user_role str
- user_type str
- id String
- The provider-assigned unique ID for this managed resource.
- userAssessment StringId 
- users List<Property Map>
- The list of users.
- accessLevel String
- accountStatus String
- The status of the user account.
- areAll BooleanSchemas Accessible 
- Indicates whether the user has access to all the schemas.
- authenticationType String
- The user authentication method.
- compartmentId BooleanIn Subtree 
- filters List<Property Map>
- schemaLists List<String>
- The list of database schemas current user can access.
- targetId String
- The OCID of the target database.
- timeLast StringLogin Greater Than Or Equal To 
- timeLast StringLogin Less Than 
- timePassword StringExpiry Greater Than Or Equal To 
- timePassword StringExpiry Less Than 
- timePassword StringLast Changed Greater Than Or Equal To 
- timePassword StringLast Changed Less Than 
- timeUser StringCreated Greater Than Or Equal To 
- timeUser StringCreated Less Than 
- userCategory String
- The user category based on the privileges and other details of the user.
- userKey String
- userName String
- The database user name.
- userProfile String
- The user profile name.
- userRole String
- userType String
Supporting Types
GetUserAssessmentUsersFilter    
GetUserAssessmentUsersUser    
- AccountStatus string
- A filter to return only items that match the specified account status.
- AdminRoles List<string>
- The admin roles granted to the user.
- AreAll boolSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- AuthenticationType string
- A filter to return only items that match the specified authentication type.
- Key string
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- SchemaLists List<string>
- A filter to return items that contain the specified schema list.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeLast stringLogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- TimePassword stringChanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- TimePassword stringExpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- TimeUser stringCreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- UserCategory string
- A filter to return only items that match the specified user category.
- UserName string
- A filter to return only items that match the specified user name.
- UserProfile string
- A filter to return only items that match the specified user profile.
- UserTypes List<string>
- The user type, which can be a combination of the following:
- AccountStatus string
- A filter to return only items that match the specified account status.
- AdminRoles []string
- The admin roles granted to the user.
- AreAll boolSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- AuthenticationType string
- A filter to return only items that match the specified authentication type.
- Key string
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- SchemaLists []string
- A filter to return items that contain the specified schema list.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeLast stringLogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- TimePassword stringChanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- TimePassword stringExpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- TimeUser stringCreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- UserCategory string
- A filter to return only items that match the specified user category.
- UserName string
- A filter to return only items that match the specified user name.
- UserProfile string
- A filter to return only items that match the specified user profile.
- UserTypes []string
- The user type, which can be a combination of the following:
- accountStatus String
- A filter to return only items that match the specified account status.
- adminRoles List<String>
- The admin roles granted to the user.
- areAll BooleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType String
- A filter to return only items that match the specified authentication type.
- key String
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- schemaLists List<String>
- A filter to return items that contain the specified schema list.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeLast StringLogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- timePassword StringChanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- timePassword StringExpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- timeUser StringCreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- userCategory String
- A filter to return only items that match the specified user category.
- userName String
- A filter to return only items that match the specified user name.
- userProfile String
- A filter to return only items that match the specified user profile.
- userTypes List<String>
- The user type, which can be a combination of the following:
- accountStatus string
- A filter to return only items that match the specified account status.
- adminRoles string[]
- The admin roles granted to the user.
- areAll booleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType string
- A filter to return only items that match the specified authentication type.
- key string
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- schemaLists string[]
- A filter to return items that contain the specified schema list.
- targetId string
- A filter to return only items related to a specific target OCID.
- timeLast stringLogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- timePassword stringChanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- timePassword stringExpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- timeUser stringCreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- userCategory string
- A filter to return only items that match the specified user category.
- userName string
- A filter to return only items that match the specified user name.
- userProfile string
- A filter to return only items that match the specified user profile.
- userTypes string[]
- The user type, which can be a combination of the following:
- account_status str
- A filter to return only items that match the specified account status.
- admin_roles Sequence[str]
- The admin roles granted to the user.
- are_all_ boolschemas_ accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authentication_type str
- A filter to return only items that match the specified authentication type.
- key str
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- schema_lists Sequence[str]
- A filter to return items that contain the specified schema list.
- target_id str
- A filter to return only items related to a specific target OCID.
- time_last_ strlogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- time_password_ strchanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- time_password_ strexpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- time_user_ strcreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- user_category str
- A filter to return only items that match the specified user category.
- user_name str
- A filter to return only items that match the specified user name.
- user_profile str
- A filter to return only items that match the specified user profile.
- user_types Sequence[str]
- The user type, which can be a combination of the following:
- accountStatus String
- A filter to return only items that match the specified account status.
- adminRoles List<String>
- The admin roles granted to the user.
- areAll BooleanSchemas Accessible 
- A filter to return only items that match the criteria that all schemas can be accessed by a user.
- authenticationType String
- A filter to return only items that match the specified authentication type.
- key String
- The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.
- schemaLists List<String>
- A filter to return items that contain the specified schema list.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeLast StringLogin 
- The date and time the user last logged in, in the format defined by RFC3339.
- timePassword StringChanged 
- The date and time the user password was last changed, in the format defined by RFC3339.
- timePassword StringExpiry 
- The date and time the user's password will expire, in the format defined by RFC3339.
- timeUser StringCreated 
- The date and time the user was created in the database, in the format defined by RFC3339.
- userCategory String
- A filter to return only items that match the specified user category.
- userName String
- A filter to return only items that match the specified user name.
- userProfile String
- A filter to return only items that match the specified user profile.
- userTypes List<String>
- The user type, which can be a combination of the following:
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.