Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Identity.getUsers
Explore with Pulumi AI
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: tenancyOcid,
    externalIdentifier: userExternalIdentifier,
    identityProviderId: testIdentityProvider.id,
    name: userName,
    state: userState,
});
import pulumi
import pulumi_oci as oci
test_users = oci.Identity.get_users(compartment_id=tenancy_ocid,
    external_identifier=user_external_identifier,
    identity_provider_id=test_identity_provider["id"],
    name=user_name,
    state=user_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/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:      tenancyOcid,
			ExternalIdentifier: pulumi.StringRef(userExternalIdentifier),
			IdentityProviderId: pulumi.StringRef(testIdentityProvider.Id),
			Name:               pulumi.StringRef(userName),
			State:              pulumi.StringRef(userState),
		}, 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 = tenancyOcid,
        ExternalIdentifier = userExternalIdentifier,
        IdentityProviderId = testIdentityProvider.Id,
        Name = userName,
        State = userState,
    });
});
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(tenancyOcid)
            .externalIdentifier(userExternalIdentifier)
            .identityProviderId(testIdentityProvider.id())
            .name(userName)
            .state(userState)
            .build());
    }
}
variables:
  testUsers:
    fn::invoke:
      function: oci:Identity:getUsers
      arguments:
        compartmentId: ${tenancyOcid}
        externalIdentifier: ${userExternalIdentifier}
        identityProviderId: ${testIdentityProvider.id}
        name: ${userName}
        state: ${userState}
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[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[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)
public static Output<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Identity/getUsers:getUsers
  arguments:
    # arguments dictionaryThe 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<GetUsers Filter> 
- IdentityProvider stringId 
- 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
[]GetUsers Filter 
- IdentityProvider stringId 
- 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<GetUsers Filter> 
- identityProvider StringId 
- 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
GetUsers Filter[] 
- identityProvider stringId 
- 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
Sequence[GetUsers Filter] 
- identity_provider_ strid 
- 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>
- identityProvider StringId 
- 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<GetUsers User> 
- The list of users.
- ExternalIdentifier string
- Identifier of the user in the identity provider
- Filters
List<GetUsers Filter> 
- IdentityProvider stringId 
- The OCID of the IdentityProviderthis 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
[]GetUsers User 
- The list of users.
- ExternalIdentifier string
- Identifier of the user in the identity provider
- Filters
[]GetUsers Filter 
- IdentityProvider stringId 
- The OCID of the IdentityProviderthis 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<GetUsers User> 
- The list of users.
- externalIdentifier String
- Identifier of the user in the identity provider
- filters
List<GetUsers Filter> 
- identityProvider StringId 
- The OCID of the IdentityProviderthis 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
GetUsers User[] 
- The list of users.
- externalIdentifier string
- Identifier of the user in the identity provider
- filters
GetUsers Filter[] 
- identityProvider stringId 
- The OCID of the IdentityProviderthis 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
Sequence[GetUsers User] 
- The list of users.
- external_identifier str
- Identifier of the user in the identity provider
- filters
Sequence[GetUsers Filter] 
- identity_provider_ strid 
- The OCID of the IdentityProviderthis 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>
- identityProvider StringId 
- The OCID of the IdentityProviderthis 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  
GetUsersUser  
- Capabilities
List<GetUsers User Capability> 
- 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).
- DbUser stringName 
- DB username of the DB credential. Has to be unique across the tenancy.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the user.
- IdentityProvider stringId 
- The id of the identity provider.
- InactiveState string
- Returned only if the user's lifecycleStateis 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)
 
- LastSuccessful stringLogin Time 
- 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.
- PreviousSuccessful stringLogin Time 
- 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
[]GetUsers User Capability 
- 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).
- DbUser stringName 
- DB username of the DB credential. Has to be unique across the tenancy.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the user.
- IdentityProvider stringId 
- The id of the identity provider.
- InactiveState string
- Returned only if the user's lifecycleStateis 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)
 
- LastSuccessful stringLogin Time 
- 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.
- PreviousSuccessful stringLogin Time 
- 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<GetUsers User Capability> 
- 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).
- dbUser StringName 
- DB username of the DB credential. Has to be unique across the tenancy.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the user.
- identityProvider StringId 
- The id of the identity provider.
- inactiveState String
- Returned only if the user's lifecycleStateis 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)
 
- lastSuccessful StringLogin Time 
- 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.
- previousSuccessful StringLogin Time 
- 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
GetUsers User Capability[] 
- 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).
- dbUser stringName 
- DB username of the DB credential. Has to be unique across the tenancy.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id string
- The OCID of the user.
- identityProvider stringId 
- The id of the identity provider.
- inactiveState string
- Returned only if the user's lifecycleStateis 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)
 
- lastSuccessful stringLogin Time 
- 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.
- previousSuccessful stringLogin Time 
- 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
Sequence[GetUsers User Capability] 
- 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_ strname 
- DB username of the DB credential. Has to be unique across the tenancy.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id str
- The OCID of the user.
- identity_provider_ strid 
- The id of the identity provider.
- inactive_state str
- Returned only if the user's lifecycleStateis 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_ strlogin_ time 
- 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_ strlogin_ time 
- 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).
- dbUser StringName 
- DB username of the DB credential. Has to be unique across the tenancy.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- 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.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the user.
- identityProvider StringId 
- The id of the identity provider.
- inactiveState String
- Returned only if the user's lifecycleStateis 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)
 
- lastSuccessful StringLogin Time 
- 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.
- previousSuccessful StringLogin Time 
- 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   
- CanUse boolApi Keys 
- Indicates if the user can use API keys.
- CanUse boolAuth Tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- CanUse boolConsole Password 
- Indicates if the user can log in to the console.
- CanUse boolCustomer Secret Keys 
- Indicates if the user can use SigV4 symmetric keys.
- CanUse boolDb Credentials 
- Indicates if the user can use DB passwords.
- CanUse boolOauth2client Credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- CanUse boolSmtp Credentials 
- Indicates if the user can use SMTP passwords.
- CanUse boolApi Keys 
- Indicates if the user can use API keys.
- CanUse boolAuth Tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- CanUse boolConsole Password 
- Indicates if the user can log in to the console.
- CanUse boolCustomer Secret Keys 
- Indicates if the user can use SigV4 symmetric keys.
- CanUse boolDb Credentials 
- Indicates if the user can use DB passwords.
- CanUse boolOauth2client Credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- CanUse boolSmtp Credentials 
- Indicates if the user can use SMTP passwords.
- canUse BooleanApi Keys 
- Indicates if the user can use API keys.
- canUse BooleanAuth Tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- canUse BooleanConsole Password 
- Indicates if the user can log in to the console.
- canUse BooleanCustomer Secret Keys 
- Indicates if the user can use SigV4 symmetric keys.
- canUse BooleanDb Credentials 
- Indicates if the user can use DB passwords.
- canUse BooleanOauth2client Credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- canUse BooleanSmtp Credentials 
- Indicates if the user can use SMTP passwords.
- canUse booleanApi Keys 
- Indicates if the user can use API keys.
- canUse booleanAuth Tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- canUse booleanConsole Password 
- Indicates if the user can log in to the console.
- canUse booleanCustomer Secret Keys 
- Indicates if the user can use SigV4 symmetric keys.
- canUse booleanDb Credentials 
- Indicates if the user can use DB passwords.
- canUse booleanOauth2client Credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- canUse booleanSmtp Credentials 
- Indicates if the user can use SMTP passwords.
- can_use_ boolapi_ keys 
- Indicates if the user can use API keys.
- can_use_ boolauth_ tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- can_use_ boolconsole_ password 
- Indicates if the user can log in to the console.
- can_use_ boolcustomer_ secret_ keys 
- Indicates if the user can use SigV4 symmetric keys.
- can_use_ booldb_ credentials 
- Indicates if the user can use DB passwords.
- can_use_ booloauth2client_ credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- can_use_ boolsmtp_ credentials 
- Indicates if the user can use SMTP passwords.
- canUse BooleanApi Keys 
- Indicates if the user can use API keys.
- canUse BooleanAuth Tokens 
- Indicates if the user can use SWIFT passwords / auth tokens.
- canUse BooleanConsole Password 
- Indicates if the user can log in to the console.
- canUse BooleanCustomer Secret Keys 
- Indicates if the user can use SigV4 symmetric keys.
- canUse BooleanDb Credentials 
- Indicates if the user can use DB passwords.
- canUse BooleanOauth2client Credentials 
- Indicates if the user can use OAuth2 credentials and tokens.
- canUse BooleanSmtp Credentials 
- 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 ociTerraform Provider.