1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. getUsers
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.Identity.getUsers

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    This data source provides the list of Users in Oracle Cloud Infrastructure Identity service.

    Lists the users in your tenancy. You must specify your tenancy’s OCID as the value for the compartment ID (remember that the tenancy is simply the root compartment). See Where to Get the Tenancy’s OCID and User’s OCID.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testUsers = oci.Identity.getUsers({
        compartmentId: _var.tenancy_ocid,
        externalIdentifier: _var.user_external_identifier,
        identityProviderId: oci_identity_identity_provider.test_identity_provider.id,
        name: _var.user_name,
        state: _var.user_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_users = oci.Identity.get_users(compartment_id=var["tenancy_ocid"],
        external_identifier=var["user_external_identifier"],
        identity_provider_id=oci_identity_identity_provider["test_identity_provider"]["id"],
        name=var["user_name"],
        state=var["user_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Identity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Identity.GetUsers(ctx, &identity.GetUsersArgs{
    			CompartmentId:      _var.Tenancy_ocid,
    			ExternalIdentifier: pulumi.StringRef(_var.User_external_identifier),
    			IdentityProviderId: pulumi.StringRef(oci_identity_identity_provider.Test_identity_provider.Id),
    			Name:               pulumi.StringRef(_var.User_name),
    			State:              pulumi.StringRef(_var.User_state),
    		}, 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 testUsers = Oci.Identity.GetUsers.Invoke(new()
        {
            CompartmentId = @var.Tenancy_ocid,
            ExternalIdentifier = @var.User_external_identifier,
            IdentityProviderId = oci_identity_identity_provider.Test_identity_provider.Id,
            Name = @var.User_name,
            State = @var.User_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Identity.IdentityFunctions;
    import com.pulumi.oci.Identity.inputs.GetUsersArgs;
    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 testUsers = IdentityFunctions.getUsers(GetUsersArgs.builder()
                .compartmentId(var_.tenancy_ocid())
                .externalIdentifier(var_.user_external_identifier())
                .identityProviderId(oci_identity_identity_provider.test_identity_provider().id())
                .name(var_.user_name())
                .state(var_.user_state())
                .build());
    
        }
    }
    
    variables:
      testUsers:
        fn::invoke:
          Function: oci:Identity:getUsers
          Arguments:
            compartmentId: ${var.tenancy_ocid}
            externalIdentifier: ${var.user_external_identifier}
            identityProviderId: ${oci_identity_identity_provider.test_identity_provider.id}
            name: ${var.user_name}
            state: ${var.user_state}
    

    Using getUsers

    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 getUsers(args: GetUsersArgs, opts?: InvokeOptions): Promise<GetUsersResult>
    function getUsersOutput(args: GetUsersOutputArgs, opts?: InvokeOptions): Output<GetUsersResult>
    def get_users(compartment_id: Optional[str] = None,
                  external_identifier: Optional[str] = None,
                  filters: Optional[Sequence[_identity.GetUsersFilter]] = None,
                  identity_provider_id: Optional[str] = None,
                  name: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetUsersResult
    def get_users_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  external_identifier: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_identity.GetUsersFilterArgs]]]] = None,
                  identity_provider_id: Optional[pulumi.Input[str]] = None,
                  name: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetUsersResult]
    func GetUsers(ctx *Context, args *GetUsersArgs, opts ...InvokeOption) (*GetUsersResult, error)
    func GetUsersOutput(ctx *Context, args *GetUsersOutputArgs, opts ...InvokeOption) GetUsersResultOutput

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

    public static class GetUsers 
    {
        public static Task<GetUsersResult> InvokeAsync(GetUsersArgs args, InvokeOptions? opts = null)
        public static Output<GetUsersResult> Invoke(GetUsersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Identity/getUsers:getUsers
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    ExternalIdentifier string
    The id of a user in the identity provider.
    Filters List<GetUsersFilter>
    IdentityProviderId string
    The id of the identity provider.
    Name string
    A filter to only return resources that match the given name exactly.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    ExternalIdentifier string
    The id of a user in the identity provider.
    Filters []GetUsersFilter
    IdentityProviderId string
    The id of the identity provider.
    Name string
    A filter to only return resources that match the given name exactly.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    externalIdentifier String
    The id of a user in the identity provider.
    filters List<GetUsersFilter>
    identityProviderId String
    The id of the identity provider.
    name String
    A filter to only return resources that match the given name exactly.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    externalIdentifier string
    The id of a user in the identity provider.
    filters GetUsersFilter[]
    identityProviderId string
    The id of the identity provider.
    name string
    A filter to only return resources that match the given name exactly.
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    external_identifier str
    The id of a user in the identity provider.
    filters GetUsersFilter]
    identity_provider_id str
    The id of the identity provider.
    name str
    A filter to only return resources that match the given name exactly.
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    externalIdentifier String
    The id of a user in the identity provider.
    filters List<Property Map>
    identityProviderId String
    The id of the identity provider.
    name String
    A filter to only return resources that match the given name exactly.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    getUsers Result

    The following output properties are available:

    CompartmentId string
    The OCID of the tenancy containing the user.
    Id string
    The provider-assigned unique ID for this managed resource.
    Users List<GetUsersUser>
    The list of users.
    ExternalIdentifier string
    Identifier of the user in the identity provider
    Filters List<GetUsersFilter>
    IdentityProviderId string
    The OCID of the IdentityProvider this user belongs to.
    Name string
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    State string
    The user's current state.
    CompartmentId string
    The OCID of the tenancy containing the user.
    Id string
    The provider-assigned unique ID for this managed resource.
    Users []GetUsersUser
    The list of users.
    ExternalIdentifier string
    Identifier of the user in the identity provider
    Filters []GetUsersFilter
    IdentityProviderId string
    The OCID of the IdentityProvider this user belongs to.
    Name string
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    State string
    The user's current state.
    compartmentId String
    The OCID of the tenancy containing the user.
    id String
    The provider-assigned unique ID for this managed resource.
    users List<GetUsersUser>
    The list of users.
    externalIdentifier String
    Identifier of the user in the identity provider
    filters List<GetUsersFilter>
    identityProviderId String
    The OCID of the IdentityProvider this user belongs to.
    name String
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    state String
    The user's current state.
    compartmentId string
    The OCID of the tenancy containing the user.
    id string
    The provider-assigned unique ID for this managed resource.
    users GetUsersUser[]
    The list of users.
    externalIdentifier string
    Identifier of the user in the identity provider
    filters GetUsersFilter[]
    identityProviderId string
    The OCID of the IdentityProvider this user belongs to.
    name string
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    state string
    The user's current state.
    compartment_id str
    The OCID of the tenancy containing the user.
    id str
    The provider-assigned unique ID for this managed resource.
    users GetUsersUser]
    The list of users.
    external_identifier str
    Identifier of the user in the identity provider
    filters GetUsersFilter]
    identity_provider_id str
    The OCID of the IdentityProvider this user belongs to.
    name str
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    state str
    The user's current state.
    compartmentId String
    The OCID of the tenancy containing the user.
    id String
    The provider-assigned unique ID for this managed resource.
    users List<Property Map>
    The list of users.
    externalIdentifier String
    Identifier of the user in the identity provider
    filters List<Property Map>
    identityProviderId String
    The OCID of the IdentityProvider this user belongs to.
    name String
    The name you assign to the user during creation. This is the user's login for the Console. The name must be unique across all users in the tenancy and cannot be changed.
    state String
    The user's current state.

    Supporting Types

    GetUsersFilter

    Name string
    A filter to only return resources that match the given name exactly.
    Values List<string>
    Regex bool
    Name string
    A filter to only return resources that match the given name exactly.
    Values []string
    Regex bool
    name String
    A filter to only return resources that match the given name exactly.
    values List<String>
    regex Boolean
    name string
    A filter to only return resources that match the given name exactly.
    values string[]
    regex boolean
    name str
    A filter to only return resources that match the given name exactly.
    values Sequence[str]
    regex bool
    name String
    A filter to only return resources that match the given name exactly.
    values List<String>
    regex Boolean

    GetUsersUser

    Capabilities List<GetUsersUserCapability>
    Properties indicating how the user is allowed to authenticate.
    CompartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    DbUserName string
    DB username of the DB credential. Has to be unique across the tenancy.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    The description you assign to the user. Does not have to be unique, and it's changeable.
    Email string
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    EmailVerified bool
    Whether the email address has been validated.
    ExternalIdentifier string
    The id of a user in the identity provider.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the user.
    IdentityProviderId string
    The id of the identity provider.
    InactiveState string
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    LastSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    Name string
    A filter to only return resources that match the given name exactly.
    PreviousSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    Capabilities []GetUsersUserCapability
    Properties indicating how the user is allowed to authenticate.
    CompartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    DbUserName string
    DB username of the DB credential. Has to be unique across the tenancy.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    The description you assign to the user. Does not have to be unique, and it's changeable.
    Email string
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    EmailVerified bool
    Whether the email address has been validated.
    ExternalIdentifier string
    The id of a user in the identity provider.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the user.
    IdentityProviderId string
    The id of the identity provider.
    InactiveState string
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    LastSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    Name string
    A filter to only return resources that match the given name exactly.
    PreviousSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    capabilities List<GetUsersUserCapability>
    Properties indicating how the user is allowed to authenticate.
    compartmentId String
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    dbUserName String
    DB username of the DB credential. Has to be unique across the tenancy.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    The description you assign to the user. Does not have to be unique, and it's changeable.
    email String
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    emailVerified Boolean
    Whether the email address has been validated.
    externalIdentifier String
    The id of a user in the identity provider.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the user.
    identityProviderId String
    The id of the identity provider.
    inactiveState String
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    lastSuccessfulLoginTime String
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    name String
    A filter to only return resources that match the given name exactly.
    previousSuccessfulLoginTime String
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    capabilities GetUsersUserCapability[]
    Properties indicating how the user is allowed to authenticate.
    compartmentId string
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    dbUserName string
    DB username of the DB credential. Has to be unique across the tenancy.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    The description you assign to the user. Does not have to be unique, and it's changeable.
    email string
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    emailVerified boolean
    Whether the email address has been validated.
    externalIdentifier string
    The id of a user in the identity provider.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the user.
    identityProviderId string
    The id of the identity provider.
    inactiveState string
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    lastSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    name string
    A filter to only return resources that match the given name exactly.
    previousSuccessfulLoginTime string
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated string
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    capabilities GetUsersUserCapability]
    Properties indicating how the user is allowed to authenticate.
    compartment_id str
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    db_user_name str
    DB username of the DB credential. Has to be unique across the tenancy.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    The description you assign to the user. Does not have to be unique, and it's changeable.
    email str
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    email_verified bool
    Whether the email address has been validated.
    external_identifier str
    The id of a user in the identity provider.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the user.
    identity_provider_id str
    The id of the identity provider.
    inactive_state str
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    last_successful_login_time str
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    name str
    A filter to only return resources that match the given name exactly.
    previous_successful_login_time str
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    time_created str
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    capabilities List<Property Map>
    Properties indicating how the user is allowed to authenticate.
    compartmentId String
    The OCID of the compartment (remember that the tenancy is simply the root compartment).
    dbUserName String
    DB username of the DB credential. Has to be unique across the tenancy.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    The description you assign to the user. Does not have to be unique, and it's changeable.
    email String
    The email address you assign to the user. The email address must be unique across all users in the tenancy.
    emailVerified Boolean
    Whether the email address has been validated.
    externalIdentifier String
    The id of a user in the identity provider.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the user.
    identityProviderId String
    The id of the identity provider.
    inactiveState String
    Returned only if the user's lifecycleState is INACTIVE. A 16-bit value showing the reason why the user is inactive:

    • bit 0: SUSPENDED (reserved for future use)
    • bit 1: DISABLED (reserved for future use)
    • bit 2: BLOCKED (the user has exceeded the maximum number of failed login attempts for the Console)
    lastSuccessfulLoginTime String
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    name String
    A filter to only return resources that match the given name exactly.
    previousSuccessfulLoginTime String
    The date and time of when the user most recently logged in the format defined by RFC3339 (ex. 2016-08-25T21:10:29.600Z). If there is no login history, this field is null.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    Date and time the user was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    GetUsersUserCapability

    CanUseApiKeys bool
    Indicates if the user can use API keys.
    CanUseAuthTokens bool
    Indicates if the user can use SWIFT passwords / auth tokens.
    CanUseConsolePassword bool
    Indicates if the user can log in to the console.
    CanUseCustomerSecretKeys bool
    Indicates if the user can use SigV4 symmetric keys.
    CanUseDbCredentials bool
    Indicates if the user can use DB passwords.
    CanUseOauth2clientCredentials bool
    Indicates if the user can use OAuth2 credentials and tokens.
    CanUseSmtpCredentials bool
    Indicates if the user can use SMTP passwords.
    CanUseApiKeys bool
    Indicates if the user can use API keys.
    CanUseAuthTokens bool
    Indicates if the user can use SWIFT passwords / auth tokens.
    CanUseConsolePassword bool
    Indicates if the user can log in to the console.
    CanUseCustomerSecretKeys bool
    Indicates if the user can use SigV4 symmetric keys.
    CanUseDbCredentials bool
    Indicates if the user can use DB passwords.
    CanUseOauth2clientCredentials bool
    Indicates if the user can use OAuth2 credentials and tokens.
    CanUseSmtpCredentials bool
    Indicates if the user can use SMTP passwords.
    canUseApiKeys Boolean
    Indicates if the user can use API keys.
    canUseAuthTokens Boolean
    Indicates if the user can use SWIFT passwords / auth tokens.
    canUseConsolePassword Boolean
    Indicates if the user can log in to the console.
    canUseCustomerSecretKeys Boolean
    Indicates if the user can use SigV4 symmetric keys.
    canUseDbCredentials Boolean
    Indicates if the user can use DB passwords.
    canUseOauth2clientCredentials Boolean
    Indicates if the user can use OAuth2 credentials and tokens.
    canUseSmtpCredentials Boolean
    Indicates if the user can use SMTP passwords.
    canUseApiKeys boolean
    Indicates if the user can use API keys.
    canUseAuthTokens boolean
    Indicates if the user can use SWIFT passwords / auth tokens.
    canUseConsolePassword boolean
    Indicates if the user can log in to the console.
    canUseCustomerSecretKeys boolean
    Indicates if the user can use SigV4 symmetric keys.
    canUseDbCredentials boolean
    Indicates if the user can use DB passwords.
    canUseOauth2clientCredentials boolean
    Indicates if the user can use OAuth2 credentials and tokens.
    canUseSmtpCredentials boolean
    Indicates if the user can use SMTP passwords.
    can_use_api_keys bool
    Indicates if the user can use API keys.
    can_use_auth_tokens bool
    Indicates if the user can use SWIFT passwords / auth tokens.
    can_use_console_password bool
    Indicates if the user can log in to the console.
    can_use_customer_secret_keys bool
    Indicates if the user can use SigV4 symmetric keys.
    can_use_db_credentials bool
    Indicates if the user can use DB passwords.
    can_use_oauth2client_credentials bool
    Indicates if the user can use OAuth2 credentials and tokens.
    can_use_smtp_credentials bool
    Indicates if the user can use SMTP passwords.
    canUseApiKeys Boolean
    Indicates if the user can use API keys.
    canUseAuthTokens Boolean
    Indicates if the user can use SWIFT passwords / auth tokens.
    canUseConsolePassword Boolean
    Indicates if the user can log in to the console.
    canUseCustomerSecretKeys Boolean
    Indicates if the user can use SigV4 symmetric keys.
    canUseDbCredentials Boolean
    Indicates if the user can use DB passwords.
    canUseOauth2clientCredentials Boolean
    Indicates if the user can use OAuth2 credentials and tokens.
    canUseSmtpCredentials Boolean
    Indicates if the user can use SMTP passwords.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi