oci.DataSafe.getUserAssessmentUserAnalytics
Explore with Pulumi AI
This data source provides the list of User Assessment User Analytics in Oracle Cloud Infrastructure Data Safe service.
Gets a list of aggregated user details from the specified user assessment. This provides information about the overall state. of database user security. For example, the user details include how many users have the DBA role and how many users are in the critical category. This data is especially useful content for dashboards or to support analytics.
When you perform the ListUserAnalytics operation, if the parameter compartmentIdInSubtree is set to “true,” and if the parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has READ permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by compartmentId, then “Not Authorized” is returned.
The parameter compartmentIdInSubtree applies when you perform ListUserAnalytics on the compartmentId passed and when it is set to true, the entire hierarchy of compartments can be returned.
To use ListUserAnalytics to get a full list of all compartments and subcompartments in the tenancy from the 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 testUserAssessmentUserAnalytics = oci.DataSafe.getUserAssessmentUserAnalytics({
    userAssessmentId: testUserAssessment.id,
    accessLevel: userAssessmentUserAnalyticAccessLevel,
    accountStatus: userAssessmentUserAnalyticAccountStatus,
    authenticationType: userAssessmentUserAnalyticAuthenticationType,
    compartmentIdInSubtree: userAssessmentUserAnalyticCompartmentIdInSubtree,
    targetId: testTarget.id,
    timeLastLoginGreaterThanOrEqualTo: userAssessmentUserAnalyticTimeLastLoginGreaterThanOrEqualTo,
    timeLastLoginLessThan: userAssessmentUserAnalyticTimeLastLoginLessThan,
    timePasswordExpiryGreaterThanOrEqualTo: userAssessmentUserAnalyticTimePasswordExpiryGreaterThanOrEqualTo,
    timePasswordExpiryLessThan: userAssessmentUserAnalyticTimePasswordExpiryLessThan,
    timePasswordLastChangedGreaterThanOrEqualTo: userAssessmentUserAnalyticTimePasswordLastChangedGreaterThanOrEqualTo,
    timePasswordLastChangedLessThan: userAssessmentUserAnalyticTimePasswordLastChangedLessThan,
    timeUserCreatedGreaterThanOrEqualTo: userAssessmentUserAnalyticTimeUserCreatedGreaterThanOrEqualTo,
    timeUserCreatedLessThan: userAssessmentUserAnalyticTimeUserCreatedLessThan,
    userCategory: userAssessmentUserAnalyticUserCategory,
    userKey: userAssessmentUserAnalyticUserKey,
    userName: testUser.name,
});
import pulumi
import pulumi_oci as oci
test_user_assessment_user_analytics = oci.DataSafe.get_user_assessment_user_analytics(user_assessment_id=test_user_assessment["id"],
    access_level=user_assessment_user_analytic_access_level,
    account_status=user_assessment_user_analytic_account_status,
    authentication_type=user_assessment_user_analytic_authentication_type,
    compartment_id_in_subtree=user_assessment_user_analytic_compartment_id_in_subtree,
    target_id=test_target["id"],
    time_last_login_greater_than_or_equal_to=user_assessment_user_analytic_time_last_login_greater_than_or_equal_to,
    time_last_login_less_than=user_assessment_user_analytic_time_last_login_less_than,
    time_password_expiry_greater_than_or_equal_to=user_assessment_user_analytic_time_password_expiry_greater_than_or_equal_to,
    time_password_expiry_less_than=user_assessment_user_analytic_time_password_expiry_less_than,
    time_password_last_changed_greater_than_or_equal_to=user_assessment_user_analytic_time_password_last_changed_greater_than_or_equal_to,
    time_password_last_changed_less_than=user_assessment_user_analytic_time_password_last_changed_less_than,
    time_user_created_greater_than_or_equal_to=user_assessment_user_analytic_time_user_created_greater_than_or_equal_to,
    time_user_created_less_than=user_assessment_user_analytic_time_user_created_less_than,
    user_category=user_assessment_user_analytic_user_category,
    user_key=user_assessment_user_analytic_user_key,
    user_name=test_user["name"])
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.GetUserAssessmentUserAnalytics(ctx, &datasafe.GetUserAssessmentUserAnalyticsArgs{
			UserAssessmentId:                            testUserAssessment.Id,
			AccessLevel:                                 pulumi.StringRef(userAssessmentUserAnalyticAccessLevel),
			AccountStatus:                               pulumi.StringRef(userAssessmentUserAnalyticAccountStatus),
			AuthenticationType:                          pulumi.StringRef(userAssessmentUserAnalyticAuthenticationType),
			CompartmentIdInSubtree:                      pulumi.BoolRef(userAssessmentUserAnalyticCompartmentIdInSubtree),
			TargetId:                                    pulumi.StringRef(testTarget.Id),
			TimeLastLoginGreaterThanOrEqualTo:           pulumi.StringRef(userAssessmentUserAnalyticTimeLastLoginGreaterThanOrEqualTo),
			TimeLastLoginLessThan:                       pulumi.StringRef(userAssessmentUserAnalyticTimeLastLoginLessThan),
			TimePasswordExpiryGreaterThanOrEqualTo:      pulumi.StringRef(userAssessmentUserAnalyticTimePasswordExpiryGreaterThanOrEqualTo),
			TimePasswordExpiryLessThan:                  pulumi.StringRef(userAssessmentUserAnalyticTimePasswordExpiryLessThan),
			TimePasswordLastChangedGreaterThanOrEqualTo: pulumi.StringRef(userAssessmentUserAnalyticTimePasswordLastChangedGreaterThanOrEqualTo),
			TimePasswordLastChangedLessThan:             pulumi.StringRef(userAssessmentUserAnalyticTimePasswordLastChangedLessThan),
			TimeUserCreatedGreaterThanOrEqualTo:         pulumi.StringRef(userAssessmentUserAnalyticTimeUserCreatedGreaterThanOrEqualTo),
			TimeUserCreatedLessThan:                     pulumi.StringRef(userAssessmentUserAnalyticTimeUserCreatedLessThan),
			UserCategory:                                pulumi.StringRef(userAssessmentUserAnalyticUserCategory),
			UserKey:                                     pulumi.StringRef(userAssessmentUserAnalyticUserKey),
			UserName:                                    pulumi.StringRef(testUser.Name),
		}, 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 testUserAssessmentUserAnalytics = Oci.DataSafe.GetUserAssessmentUserAnalytics.Invoke(new()
    {
        UserAssessmentId = testUserAssessment.Id,
        AccessLevel = userAssessmentUserAnalyticAccessLevel,
        AccountStatus = userAssessmentUserAnalyticAccountStatus,
        AuthenticationType = userAssessmentUserAnalyticAuthenticationType,
        CompartmentIdInSubtree = userAssessmentUserAnalyticCompartmentIdInSubtree,
        TargetId = testTarget.Id,
        TimeLastLoginGreaterThanOrEqualTo = userAssessmentUserAnalyticTimeLastLoginGreaterThanOrEqualTo,
        TimeLastLoginLessThan = userAssessmentUserAnalyticTimeLastLoginLessThan,
        TimePasswordExpiryGreaterThanOrEqualTo = userAssessmentUserAnalyticTimePasswordExpiryGreaterThanOrEqualTo,
        TimePasswordExpiryLessThan = userAssessmentUserAnalyticTimePasswordExpiryLessThan,
        TimePasswordLastChangedGreaterThanOrEqualTo = userAssessmentUserAnalyticTimePasswordLastChangedGreaterThanOrEqualTo,
        TimePasswordLastChangedLessThan = userAssessmentUserAnalyticTimePasswordLastChangedLessThan,
        TimeUserCreatedGreaterThanOrEqualTo = userAssessmentUserAnalyticTimeUserCreatedGreaterThanOrEqualTo,
        TimeUserCreatedLessThan = userAssessmentUserAnalyticTimeUserCreatedLessThan,
        UserCategory = userAssessmentUserAnalyticUserCategory,
        UserKey = userAssessmentUserAnalyticUserKey,
        UserName = testUser.Name,
    });
});
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.GetUserAssessmentUserAnalyticsArgs;
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 testUserAssessmentUserAnalytics = DataSafeFunctions.getUserAssessmentUserAnalytics(GetUserAssessmentUserAnalyticsArgs.builder()
            .userAssessmentId(testUserAssessment.id())
            .accessLevel(userAssessmentUserAnalyticAccessLevel)
            .accountStatus(userAssessmentUserAnalyticAccountStatus)
            .authenticationType(userAssessmentUserAnalyticAuthenticationType)
            .compartmentIdInSubtree(userAssessmentUserAnalyticCompartmentIdInSubtree)
            .targetId(testTarget.id())
            .timeLastLoginGreaterThanOrEqualTo(userAssessmentUserAnalyticTimeLastLoginGreaterThanOrEqualTo)
            .timeLastLoginLessThan(userAssessmentUserAnalyticTimeLastLoginLessThan)
            .timePasswordExpiryGreaterThanOrEqualTo(userAssessmentUserAnalyticTimePasswordExpiryGreaterThanOrEqualTo)
            .timePasswordExpiryLessThan(userAssessmentUserAnalyticTimePasswordExpiryLessThan)
            .timePasswordLastChangedGreaterThanOrEqualTo(userAssessmentUserAnalyticTimePasswordLastChangedGreaterThanOrEqualTo)
            .timePasswordLastChangedLessThan(userAssessmentUserAnalyticTimePasswordLastChangedLessThan)
            .timeUserCreatedGreaterThanOrEqualTo(userAssessmentUserAnalyticTimeUserCreatedGreaterThanOrEqualTo)
            .timeUserCreatedLessThan(userAssessmentUserAnalyticTimeUserCreatedLessThan)
            .userCategory(userAssessmentUserAnalyticUserCategory)
            .userKey(userAssessmentUserAnalyticUserKey)
            .userName(testUser.name())
            .build());
    }
}
variables:
  testUserAssessmentUserAnalytics:
    fn::invoke:
      function: oci:DataSafe:getUserAssessmentUserAnalytics
      arguments:
        userAssessmentId: ${testUserAssessment.id}
        accessLevel: ${userAssessmentUserAnalyticAccessLevel}
        accountStatus: ${userAssessmentUserAnalyticAccountStatus}
        authenticationType: ${userAssessmentUserAnalyticAuthenticationType}
        compartmentIdInSubtree: ${userAssessmentUserAnalyticCompartmentIdInSubtree}
        targetId: ${testTarget.id}
        timeLastLoginGreaterThanOrEqualTo: ${userAssessmentUserAnalyticTimeLastLoginGreaterThanOrEqualTo}
        timeLastLoginLessThan: ${userAssessmentUserAnalyticTimeLastLoginLessThan}
        timePasswordExpiryGreaterThanOrEqualTo: ${userAssessmentUserAnalyticTimePasswordExpiryGreaterThanOrEqualTo}
        timePasswordExpiryLessThan: ${userAssessmentUserAnalyticTimePasswordExpiryLessThan}
        timePasswordLastChangedGreaterThanOrEqualTo: ${userAssessmentUserAnalyticTimePasswordLastChangedGreaterThanOrEqualTo}
        timePasswordLastChangedLessThan: ${userAssessmentUserAnalyticTimePasswordLastChangedLessThan}
        timeUserCreatedGreaterThanOrEqualTo: ${userAssessmentUserAnalyticTimeUserCreatedGreaterThanOrEqualTo}
        timeUserCreatedLessThan: ${userAssessmentUserAnalyticTimeUserCreatedLessThan}
        userCategory: ${userAssessmentUserAnalyticUserCategory}
        userKey: ${userAssessmentUserAnalyticUserKey}
        userName: ${testUser.name}
Using getUserAssessmentUserAnalytics
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 getUserAssessmentUserAnalytics(args: GetUserAssessmentUserAnalyticsArgs, opts?: InvokeOptions): Promise<GetUserAssessmentUserAnalyticsResult>
function getUserAssessmentUserAnalyticsOutput(args: GetUserAssessmentUserAnalyticsOutputArgs, opts?: InvokeOptions): Output<GetUserAssessmentUserAnalyticsResult>def get_user_assessment_user_analytics(access_level: Optional[str] = None,
                                       account_status: Optional[str] = None,
                                       authentication_type: Optional[str] = None,
                                       compartment_id_in_subtree: Optional[bool] = None,
                                       filters: Optional[Sequence[GetUserAssessmentUserAnalyticsFilter]] = 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,
                                       opts: Optional[InvokeOptions] = None) -> GetUserAssessmentUserAnalyticsResult
def get_user_assessment_user_analytics_output(access_level: Optional[pulumi.Input[str]] = None,
                                       account_status: Optional[pulumi.Input[str]] = None,
                                       authentication_type: Optional[pulumi.Input[str]] = None,
                                       compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserAssessmentUserAnalyticsFilterArgs]]]] = 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,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetUserAssessmentUserAnalyticsResult]func GetUserAssessmentUserAnalytics(ctx *Context, args *GetUserAssessmentUserAnalyticsArgs, opts ...InvokeOption) (*GetUserAssessmentUserAnalyticsResult, error)
func GetUserAssessmentUserAnalyticsOutput(ctx *Context, args *GetUserAssessmentUserAnalyticsOutputArgs, opts ...InvokeOption) GetUserAssessmentUserAnalyticsResultOutput> Note: This function is named GetUserAssessmentUserAnalytics in the Go SDK.
public static class GetUserAssessmentUserAnalytics 
{
    public static Task<GetUserAssessmentUserAnalyticsResult> InvokeAsync(GetUserAssessmentUserAnalyticsArgs args, InvokeOptions? opts = null)
    public static Output<GetUserAssessmentUserAnalyticsResult> Invoke(GetUserAssessmentUserAnalyticsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetUserAssessmentUserAnalyticsResult> getUserAssessmentUserAnalytics(GetUserAssessmentUserAnalyticsArgs args, InvokeOptions options)
public static Output<GetUserAssessmentUserAnalyticsResult> getUserAssessmentUserAnalytics(GetUserAssessmentUserAnalyticsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getUserAssessmentUserAnalytics:getUserAssessmentUserAnalytics
  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.
- 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 User Analytics Filter> 
- 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.
- 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.
- 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 User Analytics Filter 
- 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.
- 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.
- 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 User Analytics Filter> 
- 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.
- 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.
- 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 User Analytics Filter[] 
- 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.
- 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.
- 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 User Analytics Filter] 
- 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.
- 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.
- 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>
- 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.
getUserAssessmentUserAnalytics Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- UserAggregations List<GetUser Assessment User Analytics User Aggregation> 
- The list of user_aggregations.
- UserAssessment stringId 
- AccessLevel string
- AccountStatus string
- AuthenticationType string
- CompartmentId boolIn Subtree 
- Filters
List<GetUser Assessment User Analytics Filter> 
- TargetId string
- 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
- UserKey string
- UserName string
- Id string
- The provider-assigned unique ID for this managed resource.
- UserAggregations []GetUser Assessment User Analytics User Aggregation 
- The list of user_aggregations.
- UserAssessment stringId 
- AccessLevel string
- AccountStatus string
- AuthenticationType string
- CompartmentId boolIn Subtree 
- Filters
[]GetUser Assessment User Analytics Filter 
- TargetId string
- 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
- UserKey string
- UserName string
- id String
- The provider-assigned unique ID for this managed resource.
- userAggregations List<GetUser Assessment User Analytics User Aggregation> 
- The list of user_aggregations.
- userAssessment StringId 
- accessLevel String
- accountStatus String
- authenticationType String
- compartmentId BooleanIn Subtree 
- filters
List<GetUser Assessment User Analytics Filter> 
- targetId String
- 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
- userKey String
- userName String
- id string
- The provider-assigned unique ID for this managed resource.
- userAggregations GetUser Assessment User Analytics User Aggregation[] 
- The list of user_aggregations.
- userAssessment stringId 
- accessLevel string
- accountStatus string
- authenticationType string
- compartmentId booleanIn Subtree 
- filters
GetUser Assessment User Analytics Filter[] 
- targetId string
- 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
- userKey string
- userName string
- id str
- The provider-assigned unique ID for this managed resource.
- user_aggregations Sequence[GetUser Assessment User Analytics User Aggregation] 
- The list of user_aggregations.
- user_assessment_ strid 
- access_level str
- account_status str
- authentication_type str
- compartment_id_ boolin_ subtree 
- filters
Sequence[GetUser Assessment User Analytics Filter] 
- target_id str
- 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
- user_key str
- user_name str
- id String
- The provider-assigned unique ID for this managed resource.
- userAggregations List<Property Map>
- The list of user_aggregations.
- userAssessment StringId 
- accessLevel String
- accountStatus String
- authenticationType String
- compartmentId BooleanIn Subtree 
- filters List<Property Map>
- targetId String
- 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
- userKey String
- userName String
Supporting Types
GetUserAssessmentUserAnalyticsFilter     
GetUserAssessmentUserAnalyticsUserAggregation      
- Items
List<GetUser Assessment User Analytics User Aggregation Item> 
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
- Items
[]GetUser Assessment User Analytics User Aggregation Item 
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
- items
List<GetUser Assessment User Analytics User Aggregation Item> 
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
- items
GetUser Assessment User Analytics User Aggregation Item[] 
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
- items
Sequence[GetUser Assessment User Analytics User Aggregation Item] 
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
- items List<Property Map>
- List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.