1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. DomainsPasswordPolicy
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Identity.DomainsPasswordPolicy

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Password Policy resource in Oracle Cloud Infrastructure Identity Domains service.

    Create a password policy.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Identity.DomainsPasswordPolicy;
    import com.pulumi.oci.Identity.DomainsPasswordPolicyArgs;
    import com.pulumi.oci.Identity.inputs.DomainsPasswordPolicyGroupArgs;
    import com.pulumi.oci.Identity.inputs.DomainsPasswordPolicyTagArgs;
    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) {
            var testPasswordPolicy = new DomainsPasswordPolicy("testPasswordPolicy", DomainsPasswordPolicyArgs.builder()        
                .idcsEndpoint(data.oci_identity_domain().test_domain().url())
                .schemas("urn:ietf:params:scim:schemas:oracle:idcs:PasswordPolicy")
                .allowedChars(var_.password_policy_allowed_chars())
                .attributeSets()
                .attributes("")
                .authorization(var_.password_policy_authorization())
                .description(var_.password_policy_description())
                .dictionaryDelimiter(var_.password_policy_dictionary_delimiter())
                .dictionaryLocation(var_.password_policy_dictionary_location())
                .dictionaryWordDisallowed(var_.password_policy_dictionary_word_disallowed())
                .disallowedChars(var_.password_policy_disallowed_chars())
                .disallowedSubstrings(var_.password_policy_disallowed_substrings())
                .disallowedUserAttributeValues(var_.password_policy_disallowed_user_attribute_values())
                .distinctCharacters(var_.password_policy_distinct_characters())
                .externalId("externalId")
                .firstNameDisallowed(var_.password_policy_first_name_disallowed())
                .forcePasswordReset(var_.password_policy_force_password_reset())
                .groups(DomainsPasswordPolicyGroupArgs.builder()
                    .value(oci_identity_domains_group.test_group().id())
                    .build())
                .id(var_.password_policy_id())
                .lastNameDisallowed(var_.password_policy_last_name_disallowed())
                .lockoutDuration(var_.password_policy_lockout_duration())
                .maxIncorrectAttempts(var_.password_policy_max_incorrect_attempts())
                .maxLength(var_.password_policy_max_length())
                .maxRepeatedChars(var_.password_policy_max_repeated_chars())
                .maxSpecialChars(var_.password_policy_max_special_chars())
                .minAlphaNumerals(var_.password_policy_min_alpha_numerals())
                .minAlphas(var_.password_policy_min_alphas())
                .minLength(var_.password_policy_min_length())
                .minLowerCase(var_.password_policy_min_lower_case())
                .minNumerals(var_.password_policy_min_numerals())
                .minPasswordAge(var_.password_policy_min_password_age())
                .minSpecialChars(var_.password_policy_min_special_chars())
                .minUniqueChars(var_.password_policy_min_unique_chars())
                .minUpperCase(var_.password_policy_min_upper_case())
                .numPasswordsInHistory(var_.password_policy_num_passwords_in_history())
                .ocid(var_.password_policy_ocid())
                .passwordExpireWarning(var_.password_policy_password_expire_warning())
                .passwordExpiresAfter(var_.password_policy_password_expires_after())
                .passwordStrength(var_.password_policy_password_strength())
                .priority(var_.password_policy_priority())
                .requiredChars(var_.password_policy_required_chars())
                .resourceTypeSchemaVersion(var_.password_policy_resource_type_schema_version())
                .startsWithAlphabet(var_.password_policy_starts_with_alphabet())
                .tags(DomainsPasswordPolicyTagArgs.builder()
                    .key(var_.password_policy_tags_key())
                    .value(var_.password_policy_tags_value())
                    .build())
                .userNameDisallowed(var_.password_policy_user_name_disallowed())
                .build());
    
        }
    }
    
    resources:
      testPasswordPolicy:
        type: oci:Identity:DomainsPasswordPolicy
        properties:
          #Required
          idcsEndpoint: ${data.oci_identity_domain.test_domain.url}
          schemas:
            - urn:ietf:params:scim:schemas:oracle:idcs:PasswordPolicy
          #Optional
          allowedChars: ${var.password_policy_allowed_chars}
          attributeSets: []
          attributes:
          authorization: ${var.password_policy_authorization}
          description: ${var.password_policy_description}
          dictionaryDelimiter: ${var.password_policy_dictionary_delimiter}
          dictionaryLocation: ${var.password_policy_dictionary_location}
          dictionaryWordDisallowed: ${var.password_policy_dictionary_word_disallowed}
          disallowedChars: ${var.password_policy_disallowed_chars}
          disallowedSubstrings: ${var.password_policy_disallowed_substrings}
          disallowedUserAttributeValues: ${var.password_policy_disallowed_user_attribute_values}
          distinctCharacters: ${var.password_policy_distinct_characters}
          externalId: externalId
          firstNameDisallowed: ${var.password_policy_first_name_disallowed}
          forcePasswordReset: ${var.password_policy_force_password_reset}
          groups:
            - value: ${oci_identity_domains_group.test_group.id}
          id: ${var.password_policy_id}
          lastNameDisallowed: ${var.password_policy_last_name_disallowed}
          lockoutDuration: ${var.password_policy_lockout_duration}
          maxIncorrectAttempts: ${var.password_policy_max_incorrect_attempts}
          maxLength: ${var.password_policy_max_length}
          maxRepeatedChars: ${var.password_policy_max_repeated_chars}
          maxSpecialChars: ${var.password_policy_max_special_chars}
          minAlphaNumerals: ${var.password_policy_min_alpha_numerals}
          minAlphas: ${var.password_policy_min_alphas}
          minLength: ${var.password_policy_min_length}
          minLowerCase: ${var.password_policy_min_lower_case}
          minNumerals: ${var.password_policy_min_numerals}
          minPasswordAge: ${var.password_policy_min_password_age}
          minSpecialChars: ${var.password_policy_min_special_chars}
          minUniqueChars: ${var.password_policy_min_unique_chars}
          minUpperCase: ${var.password_policy_min_upper_case}
          numPasswordsInHistory: ${var.password_policy_num_passwords_in_history}
          ocid: ${var.password_policy_ocid}
          passwordExpireWarning: ${var.password_policy_password_expire_warning}
          passwordExpiresAfter: ${var.password_policy_password_expires_after}
          passwordStrength: ${var.password_policy_password_strength}
          priority: ${var.password_policy_priority}
          requiredChars: ${var.password_policy_required_chars}
          resourceTypeSchemaVersion: ${var.password_policy_resource_type_schema_version}
          startsWithAlphabet: ${var.password_policy_starts_with_alphabet}
          tags:
            - key: ${var.password_policy_tags_key}
              value: ${var.password_policy_tags_value}
          userNameDisallowed: ${var.password_policy_user_name_disallowed}
    

    Create DomainsPasswordPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DomainsPasswordPolicy(name: string, args: DomainsPasswordPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def DomainsPasswordPolicy(resource_name: str,
                              args: DomainsPasswordPolicyArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def DomainsPasswordPolicy(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              idcs_endpoint: Optional[str] = None,
                              schemas: Optional[Sequence[str]] = None,
                              max_special_chars: Optional[int] = None,
                              dictionary_delimiter: Optional[str] = None,
                              description: Optional[str] = None,
                              min_alpha_numerals: Optional[int] = None,
                              dictionary_location: Optional[str] = None,
                              dictionary_word_disallowed: Optional[bool] = None,
                              disallowed_chars: Optional[str] = None,
                              disallowed_substrings: Optional[Sequence[str]] = None,
                              disallowed_user_attribute_values: Optional[Sequence[str]] = None,
                              distinct_characters: Optional[int] = None,
                              external_id: Optional[str] = None,
                              first_name_disallowed: Optional[bool] = None,
                              force_password_reset: Optional[bool] = None,
                              groups: Optional[Sequence[_identity.DomainsPasswordPolicyGroupArgs]] = None,
                              attributes: Optional[str] = None,
                              min_alphas: Optional[int] = None,
                              lockout_duration: Optional[int] = None,
                              max_incorrect_attempts: Optional[int] = None,
                              max_length: Optional[int] = None,
                              max_repeated_chars: Optional[int] = None,
                              tags: Optional[Sequence[_identity.DomainsPasswordPolicyTagArgs]] = None,
                              authorization: Optional[str] = None,
                              last_name_disallowed: Optional[bool] = None,
                              min_length: Optional[int] = None,
                              min_lower_case: Optional[int] = None,
                              min_numerals: Optional[int] = None,
                              min_password_age: Optional[int] = None,
                              min_special_chars: Optional[int] = None,
                              min_unique_chars: Optional[int] = None,
                              min_upper_case: Optional[int] = None,
                              name: Optional[str] = None,
                              num_passwords_in_history: Optional[int] = None,
                              ocid: Optional[str] = None,
                              password_expire_warning: Optional[int] = None,
                              password_expires_after: Optional[int] = None,
                              password_strength: Optional[str] = None,
                              priority: Optional[int] = None,
                              required_chars: Optional[str] = None,
                              resource_type_schema_version: Optional[str] = None,
                              attribute_sets: Optional[Sequence[str]] = None,
                              starts_with_alphabet: Optional[bool] = None,
                              allowed_chars: Optional[str] = None,
                              user_name_disallowed: Optional[bool] = None)
    func NewDomainsPasswordPolicy(ctx *Context, name string, args DomainsPasswordPolicyArgs, opts ...ResourceOption) (*DomainsPasswordPolicy, error)
    public DomainsPasswordPolicy(string name, DomainsPasswordPolicyArgs args, CustomResourceOptions? opts = null)
    public DomainsPasswordPolicy(String name, DomainsPasswordPolicyArgs args)
    public DomainsPasswordPolicy(String name, DomainsPasswordPolicyArgs args, CustomResourceOptions options)
    
    type: oci:Identity:DomainsPasswordPolicy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DomainsPasswordPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DomainsPasswordPolicyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DomainsPasswordPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DomainsPasswordPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DomainsPasswordPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var domainsPasswordPolicyResource = new Oci.Identity.DomainsPasswordPolicy("domainsPasswordPolicyResource", new()
    {
        IdcsEndpoint = "string",
        Schemas = new[]
        {
            "string",
        },
        MaxSpecialChars = 0,
        DictionaryDelimiter = "string",
        Description = "string",
        MinAlphaNumerals = 0,
        DictionaryLocation = "string",
        DictionaryWordDisallowed = false,
        DisallowedChars = "string",
        DisallowedSubstrings = new[]
        {
            "string",
        },
        DisallowedUserAttributeValues = new[]
        {
            "string",
        },
        DistinctCharacters = 0,
        ExternalId = "string",
        FirstNameDisallowed = false,
        ForcePasswordReset = false,
        Groups = new[]
        {
            new Oci.Identity.Inputs.DomainsPasswordPolicyGroupArgs
            {
                Value = "string",
                Display = "string",
                Ref = "string",
            },
        },
        Attributes = "string",
        MinAlphas = 0,
        LockoutDuration = 0,
        MaxIncorrectAttempts = 0,
        MaxLength = 0,
        MaxRepeatedChars = 0,
        Tags = new[]
        {
            new Oci.Identity.Inputs.DomainsPasswordPolicyTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        Authorization = "string",
        LastNameDisallowed = false,
        MinLength = 0,
        MinLowerCase = 0,
        MinNumerals = 0,
        MinPasswordAge = 0,
        MinSpecialChars = 0,
        MinUniqueChars = 0,
        MinUpperCase = 0,
        Name = "string",
        NumPasswordsInHistory = 0,
        Ocid = "string",
        PasswordExpireWarning = 0,
        PasswordExpiresAfter = 0,
        PasswordStrength = "string",
        Priority = 0,
        RequiredChars = "string",
        ResourceTypeSchemaVersion = "string",
        AttributeSets = new[]
        {
            "string",
        },
        StartsWithAlphabet = false,
        AllowedChars = "string",
        UserNameDisallowed = false,
    });
    
    example, err := Identity.NewDomainsPasswordPolicy(ctx, "domainsPasswordPolicyResource", &Identity.DomainsPasswordPolicyArgs{
    	IdcsEndpoint: pulumi.String("string"),
    	Schemas: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	MaxSpecialChars:          pulumi.Int(0),
    	DictionaryDelimiter:      pulumi.String("string"),
    	Description:              pulumi.String("string"),
    	MinAlphaNumerals:         pulumi.Int(0),
    	DictionaryLocation:       pulumi.String("string"),
    	DictionaryWordDisallowed: pulumi.Bool(false),
    	DisallowedChars:          pulumi.String("string"),
    	DisallowedSubstrings: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DisallowedUserAttributeValues: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DistinctCharacters:  pulumi.Int(0),
    	ExternalId:          pulumi.String("string"),
    	FirstNameDisallowed: pulumi.Bool(false),
    	ForcePasswordReset:  pulumi.Bool(false),
    	Groups: identity.DomainsPasswordPolicyGroupArray{
    		&identity.DomainsPasswordPolicyGroupArgs{
    			Value:   pulumi.String("string"),
    			Display: pulumi.String("string"),
    			Ref:     pulumi.String("string"),
    		},
    	},
    	Attributes:           pulumi.String("string"),
    	MinAlphas:            pulumi.Int(0),
    	LockoutDuration:      pulumi.Int(0),
    	MaxIncorrectAttempts: pulumi.Int(0),
    	MaxLength:            pulumi.Int(0),
    	MaxRepeatedChars:     pulumi.Int(0),
    	Tags: identity.DomainsPasswordPolicyTagArray{
    		&identity.DomainsPasswordPolicyTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Authorization:             pulumi.String("string"),
    	LastNameDisallowed:        pulumi.Bool(false),
    	MinLength:                 pulumi.Int(0),
    	MinLowerCase:              pulumi.Int(0),
    	MinNumerals:               pulumi.Int(0),
    	MinPasswordAge:            pulumi.Int(0),
    	MinSpecialChars:           pulumi.Int(0),
    	MinUniqueChars:            pulumi.Int(0),
    	MinUpperCase:              pulumi.Int(0),
    	Name:                      pulumi.String("string"),
    	NumPasswordsInHistory:     pulumi.Int(0),
    	Ocid:                      pulumi.String("string"),
    	PasswordExpireWarning:     pulumi.Int(0),
    	PasswordExpiresAfter:      pulumi.Int(0),
    	PasswordStrength:          pulumi.String("string"),
    	Priority:                  pulumi.Int(0),
    	RequiredChars:             pulumi.String("string"),
    	ResourceTypeSchemaVersion: pulumi.String("string"),
    	AttributeSets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	StartsWithAlphabet: pulumi.Bool(false),
    	AllowedChars:       pulumi.String("string"),
    	UserNameDisallowed: pulumi.Bool(false),
    })
    
    var domainsPasswordPolicyResource = new DomainsPasswordPolicy("domainsPasswordPolicyResource", DomainsPasswordPolicyArgs.builder()        
        .idcsEndpoint("string")
        .schemas("string")
        .maxSpecialChars(0)
        .dictionaryDelimiter("string")
        .description("string")
        .minAlphaNumerals(0)
        .dictionaryLocation("string")
        .dictionaryWordDisallowed(false)
        .disallowedChars("string")
        .disallowedSubstrings("string")
        .disallowedUserAttributeValues("string")
        .distinctCharacters(0)
        .externalId("string")
        .firstNameDisallowed(false)
        .forcePasswordReset(false)
        .groups(DomainsPasswordPolicyGroupArgs.builder()
            .value("string")
            .display("string")
            .ref("string")
            .build())
        .attributes("string")
        .minAlphas(0)
        .lockoutDuration(0)
        .maxIncorrectAttempts(0)
        .maxLength(0)
        .maxRepeatedChars(0)
        .tags(DomainsPasswordPolicyTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .authorization("string")
        .lastNameDisallowed(false)
        .minLength(0)
        .minLowerCase(0)
        .minNumerals(0)
        .minPasswordAge(0)
        .minSpecialChars(0)
        .minUniqueChars(0)
        .minUpperCase(0)
        .name("string")
        .numPasswordsInHistory(0)
        .ocid("string")
        .passwordExpireWarning(0)
        .passwordExpiresAfter(0)
        .passwordStrength("string")
        .priority(0)
        .requiredChars("string")
        .resourceTypeSchemaVersion("string")
        .attributeSets("string")
        .startsWithAlphabet(false)
        .allowedChars("string")
        .userNameDisallowed(false)
        .build());
    
    domains_password_policy_resource = oci.identity.DomainsPasswordPolicy("domainsPasswordPolicyResource",
        idcs_endpoint="string",
        schemas=["string"],
        max_special_chars=0,
        dictionary_delimiter="string",
        description="string",
        min_alpha_numerals=0,
        dictionary_location="string",
        dictionary_word_disallowed=False,
        disallowed_chars="string",
        disallowed_substrings=["string"],
        disallowed_user_attribute_values=["string"],
        distinct_characters=0,
        external_id="string",
        first_name_disallowed=False,
        force_password_reset=False,
        groups=[oci.identity.DomainsPasswordPolicyGroupArgs(
            value="string",
            display="string",
            ref="string",
        )],
        attributes="string",
        min_alphas=0,
        lockout_duration=0,
        max_incorrect_attempts=0,
        max_length=0,
        max_repeated_chars=0,
        tags=[oci.identity.DomainsPasswordPolicyTagArgs(
            key="string",
            value="string",
        )],
        authorization="string",
        last_name_disallowed=False,
        min_length=0,
        min_lower_case=0,
        min_numerals=0,
        min_password_age=0,
        min_special_chars=0,
        min_unique_chars=0,
        min_upper_case=0,
        name="string",
        num_passwords_in_history=0,
        ocid="string",
        password_expire_warning=0,
        password_expires_after=0,
        password_strength="string",
        priority=0,
        required_chars="string",
        resource_type_schema_version="string",
        attribute_sets=["string"],
        starts_with_alphabet=False,
        allowed_chars="string",
        user_name_disallowed=False)
    
    const domainsPasswordPolicyResource = new oci.identity.DomainsPasswordPolicy("domainsPasswordPolicyResource", {
        idcsEndpoint: "string",
        schemas: ["string"],
        maxSpecialChars: 0,
        dictionaryDelimiter: "string",
        description: "string",
        minAlphaNumerals: 0,
        dictionaryLocation: "string",
        dictionaryWordDisallowed: false,
        disallowedChars: "string",
        disallowedSubstrings: ["string"],
        disallowedUserAttributeValues: ["string"],
        distinctCharacters: 0,
        externalId: "string",
        firstNameDisallowed: false,
        forcePasswordReset: false,
        groups: [{
            value: "string",
            display: "string",
            ref: "string",
        }],
        attributes: "string",
        minAlphas: 0,
        lockoutDuration: 0,
        maxIncorrectAttempts: 0,
        maxLength: 0,
        maxRepeatedChars: 0,
        tags: [{
            key: "string",
            value: "string",
        }],
        authorization: "string",
        lastNameDisallowed: false,
        minLength: 0,
        minLowerCase: 0,
        minNumerals: 0,
        minPasswordAge: 0,
        minSpecialChars: 0,
        minUniqueChars: 0,
        minUpperCase: 0,
        name: "string",
        numPasswordsInHistory: 0,
        ocid: "string",
        passwordExpireWarning: 0,
        passwordExpiresAfter: 0,
        passwordStrength: "string",
        priority: 0,
        requiredChars: "string",
        resourceTypeSchemaVersion: "string",
        attributeSets: ["string"],
        startsWithAlphabet: false,
        allowedChars: "string",
        userNameDisallowed: false,
    });
    
    type: oci:Identity:DomainsPasswordPolicy
    properties:
        allowedChars: string
        attributeSets:
            - string
        attributes: string
        authorization: string
        description: string
        dictionaryDelimiter: string
        dictionaryLocation: string
        dictionaryWordDisallowed: false
        disallowedChars: string
        disallowedSubstrings:
            - string
        disallowedUserAttributeValues:
            - string
        distinctCharacters: 0
        externalId: string
        firstNameDisallowed: false
        forcePasswordReset: false
        groups:
            - display: string
              ref: string
              value: string
        idcsEndpoint: string
        lastNameDisallowed: false
        lockoutDuration: 0
        maxIncorrectAttempts: 0
        maxLength: 0
        maxRepeatedChars: 0
        maxSpecialChars: 0
        minAlphaNumerals: 0
        minAlphas: 0
        minLength: 0
        minLowerCase: 0
        minNumerals: 0
        minPasswordAge: 0
        minSpecialChars: 0
        minUniqueChars: 0
        minUpperCase: 0
        name: string
        numPasswordsInHistory: 0
        ocid: string
        passwordExpireWarning: 0
        passwordExpiresAfter: 0
        passwordStrength: string
        priority: 0
        requiredChars: string
        resourceTypeSchemaVersion: string
        schemas:
            - string
        startsWithAlphabet: false
        tags:
            - key: string
              value: string
        userNameDisallowed: false
    

    DomainsPasswordPolicy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DomainsPasswordPolicy resource accepts the following input properties:

    IdcsEndpoint string
    The basic endpoint for the identity domain
    Schemas List<string>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    AllowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AttributeSets List<string>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    Attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    Authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    Description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryWordDisallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DisallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedSubstrings List<string>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedUserAttributeValues List<string>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DistinctCharacters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ExternalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    FirstNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    ForcePasswordReset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    Groups List<DomainsPasswordPolicyGroup>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    LastNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    LockoutDuration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxIncorrectAttempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxLength int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxRepeatedChars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxSpecialChars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphaNumerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLength int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLowerCase int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinNumerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinPasswordAge int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinSpecialChars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUniqueChars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUpperCase int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    NumPasswordsInHistory int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    PasswordExpireWarning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordExpiresAfter int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    RequiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    StartsWithAlphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Tags List<DomainsPasswordPolicyTag>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    UserNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    IdcsEndpoint string
    The basic endpoint for the identity domain
    Schemas []string

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    AllowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AttributeSets []string
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    Attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    Authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    Description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryWordDisallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DisallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedSubstrings []string

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedUserAttributeValues []string

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DistinctCharacters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ExternalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    FirstNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    ForcePasswordReset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    Groups []DomainsPasswordPolicyGroupArgs

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    LastNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    LockoutDuration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxIncorrectAttempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxLength int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxRepeatedChars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxSpecialChars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphaNumerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLength int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLowerCase int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinNumerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinPasswordAge int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinSpecialChars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUniqueChars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUpperCase int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    NumPasswordsInHistory int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    PasswordExpireWarning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordExpiresAfter int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    RequiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    StartsWithAlphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Tags []DomainsPasswordPolicyTagArgs

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    UserNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    idcsEndpoint String
    The basic endpoint for the identity domain
    schemas List<String>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    allowedChars String

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets List<String>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes String
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization String
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    description String

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter String

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation String

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed Boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars String

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings List<String>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues List<String>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters Integer

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    externalId String

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset Boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups List<DomainsPasswordPolicyGroup>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    lastNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration Integer

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts Integer

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength Integer

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars Integer

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars Integer

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphaNumerals Integer

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas Integer

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength Integer

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase Integer

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals Integer

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge Integer

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars Integer

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars Integer

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase Integer

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name String

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory Integer

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning Integer

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter Integer

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength String

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority Integer

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars String

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion String
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    startsWithAlphabet Boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags List<DomainsPasswordPolicyTag>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    userNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    idcsEndpoint string
    The basic endpoint for the identity domain
    schemas string[]

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    allowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets string[]
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings string[]

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues string[]

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters number

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    externalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups DomainsPasswordPolicyGroup[]

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    lastNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration number

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts number

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength number

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars number

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars number

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphaNumerals number

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas number

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength number

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase number

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals number

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge number

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars number

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars number

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase number

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory number

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning number

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter number

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority number

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    startsWithAlphabet boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags DomainsPasswordPolicyTag[]

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    userNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    idcs_endpoint str
    The basic endpoint for the identity domain
    schemas Sequence[str]

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    allowed_chars str

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attribute_sets Sequence[str]
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes str
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization str
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    description str

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_delimiter str

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_location str

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_word_disallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowed_chars str

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowed_substrings Sequence[str]

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowed_user_attribute_values Sequence[str]

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinct_characters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    external_id str

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    first_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    force_password_reset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups Sequence[identity.DomainsPasswordPolicyGroupArgs]

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    last_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockout_duration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_incorrect_attempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_length int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_repeated_chars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_special_chars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_alpha_numerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_alphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_length int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_lower_case int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_numerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_password_age int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_special_chars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_unique_chars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_upper_case int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name str

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    num_passwords_in_history int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid str

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    password_expire_warning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    password_expires_after int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    password_strength str

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    required_chars str

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resource_type_schema_version str
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    starts_with_alphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags Sequence[identity.DomainsPasswordPolicyTagArgs]

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    user_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    idcsEndpoint String
    The basic endpoint for the identity domain
    schemas List<String>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    allowedChars String

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets List<String>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes String
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization String
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    description String

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter String

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation String

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed Boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars String

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings List<String>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues List<String>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters Number

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    externalId String

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset Boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups List<Property Map>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    lastNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration Number

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts Number

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength Number

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars Number

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars Number

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphaNumerals Number

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas Number

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength Number

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase Number

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals Number

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge Number

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars Number

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars Number

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase Number

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name String

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory Number

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning Number

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter Number

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength String

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority Number

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars String

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion String
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    startsWithAlphabet Boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags List<Property Map>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    userNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DomainsPasswordPolicy resource produces the following output properties:

    CompartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ConfiguredPasswordPolicyRules List<DomainsPasswordPolicyConfiguredPasswordPolicyRule>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    DeleteInProgress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DomainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Id string
    The provider-assigned unique ID for this managed resource.
    IdcsCreatedBies List<DomainsPasswordPolicyIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsLastModifiedBies List<DomainsPasswordPolicyIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    IdcsPreventedOperations List<string>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    Metas List<DomainsPasswordPolicyMeta>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    TenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    CompartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ConfiguredPasswordPolicyRules []DomainsPasswordPolicyConfiguredPasswordPolicyRule

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    DeleteInProgress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DomainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Id string
    The provider-assigned unique ID for this managed resource.
    IdcsCreatedBies []DomainsPasswordPolicyIdcsCreatedBy

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsLastModifiedBies []DomainsPasswordPolicyIdcsLastModifiedBy

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    IdcsPreventedOperations []string

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    Metas []DomainsPasswordPolicyMeta

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    TenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    compartmentOcid String

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules List<DomainsPasswordPolicyConfiguredPasswordPolicyRule>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress Boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    domainOcid String

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    id String
    The provider-assigned unique ID for this managed resource.
    idcsCreatedBies List<DomainsPasswordPolicyIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies List<DomainsPasswordPolicyIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations List<String>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    metas List<DomainsPasswordPolicyMeta>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    tenancyOcid String

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    compartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules DomainsPasswordPolicyConfiguredPasswordPolicyRule[]

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    domainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    id string
    The provider-assigned unique ID for this managed resource.
    idcsCreatedBies DomainsPasswordPolicyIdcsCreatedBy[]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies DomainsPasswordPolicyIdcsLastModifiedBy[]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations string[]

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    metas DomainsPasswordPolicyMeta[]

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    tenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    compartment_ocid str

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configured_password_policy_rules Sequence[identity.DomainsPasswordPolicyConfiguredPasswordPolicyRule]

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    delete_in_progress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    domain_ocid str

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    id str
    The provider-assigned unique ID for this managed resource.
    idcs_created_bies Sequence[identity.DomainsPasswordPolicyIdcsCreatedBy]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcs_last_modified_bies Sequence[identity.DomainsPasswordPolicyIdcsLastModifiedBy]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcs_last_upgraded_in_release str

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcs_prevented_operations Sequence[str]

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    metas Sequence[identity.DomainsPasswordPolicyMeta]

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    tenancy_ocid str

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    compartmentOcid String

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules List<Property Map>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress Boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    domainOcid String

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    id String
    The provider-assigned unique ID for this managed resource.
    idcsCreatedBies List<Property Map>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies List<Property Map>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations List<String>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    metas List<Property Map>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    tenancyOcid String

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none

    Look up Existing DomainsPasswordPolicy Resource

    Get an existing DomainsPasswordPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DomainsPasswordPolicyState, opts?: CustomResourceOptions): DomainsPasswordPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allowed_chars: Optional[str] = None,
            attribute_sets: Optional[Sequence[str]] = None,
            attributes: Optional[str] = None,
            authorization: Optional[str] = None,
            compartment_ocid: Optional[str] = None,
            configured_password_policy_rules: Optional[Sequence[_identity.DomainsPasswordPolicyConfiguredPasswordPolicyRuleArgs]] = None,
            delete_in_progress: Optional[bool] = None,
            description: Optional[str] = None,
            dictionary_delimiter: Optional[str] = None,
            dictionary_location: Optional[str] = None,
            dictionary_word_disallowed: Optional[bool] = None,
            disallowed_chars: Optional[str] = None,
            disallowed_substrings: Optional[Sequence[str]] = None,
            disallowed_user_attribute_values: Optional[Sequence[str]] = None,
            distinct_characters: Optional[int] = None,
            domain_ocid: Optional[str] = None,
            external_id: Optional[str] = None,
            first_name_disallowed: Optional[bool] = None,
            force_password_reset: Optional[bool] = None,
            groups: Optional[Sequence[_identity.DomainsPasswordPolicyGroupArgs]] = None,
            idcs_created_bies: Optional[Sequence[_identity.DomainsPasswordPolicyIdcsCreatedByArgs]] = None,
            idcs_endpoint: Optional[str] = None,
            idcs_last_modified_bies: Optional[Sequence[_identity.DomainsPasswordPolicyIdcsLastModifiedByArgs]] = None,
            idcs_last_upgraded_in_release: Optional[str] = None,
            idcs_prevented_operations: Optional[Sequence[str]] = None,
            last_name_disallowed: Optional[bool] = None,
            lockout_duration: Optional[int] = None,
            max_incorrect_attempts: Optional[int] = None,
            max_length: Optional[int] = None,
            max_repeated_chars: Optional[int] = None,
            max_special_chars: Optional[int] = None,
            metas: Optional[Sequence[_identity.DomainsPasswordPolicyMetaArgs]] = None,
            min_alpha_numerals: Optional[int] = None,
            min_alphas: Optional[int] = None,
            min_length: Optional[int] = None,
            min_lower_case: Optional[int] = None,
            min_numerals: Optional[int] = None,
            min_password_age: Optional[int] = None,
            min_special_chars: Optional[int] = None,
            min_unique_chars: Optional[int] = None,
            min_upper_case: Optional[int] = None,
            name: Optional[str] = None,
            num_passwords_in_history: Optional[int] = None,
            ocid: Optional[str] = None,
            password_expire_warning: Optional[int] = None,
            password_expires_after: Optional[int] = None,
            password_strength: Optional[str] = None,
            priority: Optional[int] = None,
            required_chars: Optional[str] = None,
            resource_type_schema_version: Optional[str] = None,
            schemas: Optional[Sequence[str]] = None,
            starts_with_alphabet: Optional[bool] = None,
            tags: Optional[Sequence[_identity.DomainsPasswordPolicyTagArgs]] = None,
            tenancy_ocid: Optional[str] = None,
            user_name_disallowed: Optional[bool] = None) -> DomainsPasswordPolicy
    func GetDomainsPasswordPolicy(ctx *Context, name string, id IDInput, state *DomainsPasswordPolicyState, opts ...ResourceOption) (*DomainsPasswordPolicy, error)
    public static DomainsPasswordPolicy Get(string name, Input<string> id, DomainsPasswordPolicyState? state, CustomResourceOptions? opts = null)
    public static DomainsPasswordPolicy get(String name, Output<String> id, DomainsPasswordPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AttributeSets List<string>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    Attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    Authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    CompartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ConfiguredPasswordPolicyRules List<DomainsPasswordPolicyConfiguredPasswordPolicyRule>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    DeleteInProgress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryWordDisallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DisallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedSubstrings List<string>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedUserAttributeValues List<string>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DistinctCharacters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    DomainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ExternalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    FirstNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    ForcePasswordReset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    Groups List<DomainsPasswordPolicyGroup>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    IdcsCreatedBies List<DomainsPasswordPolicyIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsEndpoint string
    The basic endpoint for the identity domain
    IdcsLastModifiedBies List<DomainsPasswordPolicyIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    IdcsPreventedOperations List<string>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    LastNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    LockoutDuration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxIncorrectAttempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxLength int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxRepeatedChars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxSpecialChars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Metas List<DomainsPasswordPolicyMeta>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    MinAlphaNumerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLength int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLowerCase int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinNumerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinPasswordAge int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinSpecialChars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUniqueChars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUpperCase int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    NumPasswordsInHistory int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    PasswordExpireWarning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordExpiresAfter int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    RequiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    Schemas List<string>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    StartsWithAlphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Tags List<DomainsPasswordPolicyTag>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    TenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    UserNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AllowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AttributeSets []string
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    Attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    Authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    CompartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ConfiguredPasswordPolicyRules []DomainsPasswordPolicyConfiguredPasswordPolicyRuleArgs

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    DeleteInProgress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DictionaryWordDisallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    DisallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedSubstrings []string

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DisallowedUserAttributeValues []string

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    DistinctCharacters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    DomainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ExternalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    FirstNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    ForcePasswordReset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    Groups []DomainsPasswordPolicyGroupArgs

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    IdcsCreatedBies []DomainsPasswordPolicyIdcsCreatedByArgs

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsEndpoint string
    The basic endpoint for the identity domain
    IdcsLastModifiedBies []DomainsPasswordPolicyIdcsLastModifiedByArgs

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    IdcsPreventedOperations []string

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    LastNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    LockoutDuration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxIncorrectAttempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxLength int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxRepeatedChars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MaxSpecialChars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Metas []DomainsPasswordPolicyMetaArgs

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    MinAlphaNumerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinAlphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLength int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinLowerCase int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinNumerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinPasswordAge int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinSpecialChars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUniqueChars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    MinUpperCase int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    NumPasswordsInHistory int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    PasswordExpireWarning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordExpiresAfter int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    PasswordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    RequiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    Schemas []string

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    StartsWithAlphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    Tags []DomainsPasswordPolicyTagArgs

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    TenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    UserNameDisallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    allowedChars String

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets List<String>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes String
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization String
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentOcid String

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules List<DomainsPasswordPolicyConfiguredPasswordPolicyRule>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress Boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    description String

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter String

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation String

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed Boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars String

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings List<String>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues List<String>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters Integer

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    domainOcid String

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    externalId String

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset Boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups List<DomainsPasswordPolicyGroup>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    idcsCreatedBies List<DomainsPasswordPolicyIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint String
    The basic endpoint for the identity domain
    idcsLastModifiedBies List<DomainsPasswordPolicyIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations List<String>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    lastNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration Integer

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts Integer

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength Integer

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars Integer

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars Integer

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    metas List<DomainsPasswordPolicyMeta>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    minAlphaNumerals Integer

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas Integer

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength Integer

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase Integer

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals Integer

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge Integer

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars Integer

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars Integer

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase Integer

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name String

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory Integer

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning Integer

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter Integer

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength String

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority Integer

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars String

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion String
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    schemas List<String>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    startsWithAlphabet Boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags List<DomainsPasswordPolicyTag>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    tenancyOcid String

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    userNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    allowedChars string

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets string[]
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes string
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization string
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentOcid string

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules DomainsPasswordPolicyConfiguredPasswordPolicyRule[]

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    description string

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter string

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation string

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars string

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings string[]

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues string[]

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters number

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    domainOcid string

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    externalId string

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups DomainsPasswordPolicyGroup[]

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    idcsCreatedBies DomainsPasswordPolicyIdcsCreatedBy[]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint string
    The basic endpoint for the identity domain
    idcsLastModifiedBies DomainsPasswordPolicyIdcsLastModifiedBy[]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease string

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations string[]

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    lastNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration number

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts number

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength number

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars number

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars number

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    metas DomainsPasswordPolicyMeta[]

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    minAlphaNumerals number

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas number

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength number

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase number

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals number

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge number

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars number

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars number

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase number

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name string

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory number

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning number

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter number

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength string

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority number

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars string

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion string
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    schemas string[]

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    startsWithAlphabet boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags DomainsPasswordPolicyTag[]

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    tenancyOcid string

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    userNameDisallowed boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    allowed_chars str

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attribute_sets Sequence[str]
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes str
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization str
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartment_ocid str

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configured_password_policy_rules Sequence[identity.DomainsPasswordPolicyConfiguredPasswordPolicyRuleArgs]

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    delete_in_progress bool

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    description str

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_delimiter str

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_location str

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionary_word_disallowed bool

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowed_chars str

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowed_substrings Sequence[str]

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowed_user_attribute_values Sequence[str]

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinct_characters int

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    domain_ocid str

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    external_id str

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    first_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    force_password_reset bool

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups Sequence[identity.DomainsPasswordPolicyGroupArgs]

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    idcs_created_bies Sequence[identity.DomainsPasswordPolicyIdcsCreatedByArgs]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcs_endpoint str
    The basic endpoint for the identity domain
    idcs_last_modified_bies Sequence[identity.DomainsPasswordPolicyIdcsLastModifiedByArgs]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcs_last_upgraded_in_release str

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcs_prevented_operations Sequence[str]

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    last_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockout_duration int

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_incorrect_attempts int

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_length int

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_repeated_chars int

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    max_special_chars int

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    metas Sequence[identity.DomainsPasswordPolicyMetaArgs]

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    min_alpha_numerals int

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_alphas int

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_length int

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_lower_case int

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_numerals int

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_password_age int

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_special_chars int

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_unique_chars int

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    min_upper_case int

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name str

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    num_passwords_in_history int

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid str

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    password_expire_warning int

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    password_expires_after int

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    password_strength str

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority int

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    required_chars str

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resource_type_schema_version str
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    schemas Sequence[str]

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    starts_with_alphabet bool

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags Sequence[identity.DomainsPasswordPolicyTagArgs]

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    tenancy_ocid str

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    user_name_disallowed bool

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    allowedChars String

    (Updatable) A String value whose contents indicate a set of characters that can appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    attributeSets List<String>
    (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
    attributes String
    (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
    authorization String
    (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentOcid String

    (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    configuredPasswordPolicyRules List<Property Map>

    (Updatable) List of password policy rules that have values set. This map of stringKey:stringValue pairs can be used to aid users while setting/resetting password

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [key]
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    deleteInProgress Boolean

    (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    description String

    (Updatable) A String that describes the password policy

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryDelimiter String

    (Updatable) A delimiter used to separate characters in the dictionary file

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryLocation String

    (Updatable) A Reference value that contains the URI of a dictionary of words not allowed to appear within a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    dictionaryWordDisallowed Boolean

    (Updatable) Indicates whether the password can match a dictionary word

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    disallowedChars String

    (Updatable) A String value whose contents indicate a set of characters that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedSubstrings List<String>

    (Updatable) A String value whose contents indicate a set of substrings that cannot appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    disallowedUserAttributeValues List<String>

    (Updatable) List of User attributes whose values are not allowed in the password.

    Added In: 2303212224

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    distinctCharacters Number

    (Updatable) The number of distinct characters between old password and new password

    Added In: 2303212224

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    domainOcid String

    (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    externalId String

    (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    firstNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's first name of given name cannot be the password. Password validation against policy will be ignored if length of first name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    forcePasswordReset Boolean

    (Updatable) Indicates whether all of the users should be forced to reset their password on the next login (to comply with new password policy changes)

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: writeOnly
    • required: false
    • returned: never
    • type: boolean
    • uniqueness: none
    groups List<Property Map>

    (Updatable) A list of groups that the password policy belongs to.

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • idcsCompositeKey: [value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: complex
    • uniqueness: none
    idcsCreatedBies List<Property Map>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint String
    The basic endpoint for the identity domain
    idcsLastModifiedBies List<Property Map>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (Updatable) The release number when the resource was upgraded.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    idcsPreventedOperations List<String>

    (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: true
    • mutability: readOnly
    • required: false
    • returned: request
    • type: string
    • uniqueness: none
    lastNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the user's last name of given name cannot be the password. Password validation against policy will be ignored if length of last name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    lockoutDuration Number

    (Updatable) The time period in minutes to lock out a user account when the threshold of invalid login attempts is reached. The available range is from 5 through 1440 minutes (24 hours).

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxIncorrectAttempts Number

    (Updatable) An integer that represents the maximum number of failed logins before an account is locked

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxLength Number

    (Updatable) The maximum password length (in characters). A value of 0 or no value indicates no maximum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxRepeatedChars Number

    (Updatable) The maximum number of repeated characters allowed in a password. A value of 0 or no value indicates no such restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    maxSpecialChars Number

    (Updatable) The maximum number of special characters in a password. A value of 0 or no value indicates no maximum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    metas List<Property Map>

    (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
    • type: complex
    minAlphaNumerals Number

    (Updatable) The minimum number of a combination of alphabetic and numeric characters in a password. A value of 0 or no value indicates no minimum alphanumeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minAlphas Number

    (Updatable) The minimum number of alphabetic characters in a password. A value of 0 or no value indicates no minimum alphas restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLength Number

    (Updatable) The minimum password length (in characters). A value of 0 or no value indicates no minimum length restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minLowerCase Number

    (Updatable) The minimum number of lowercase alphabetic characters in a password. A value of 0 or no value indicates no minimum lowercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minNumerals Number

    (Updatable) The minimum number of numeric characters in a password. A value of 0 or no value indicates no minimum numeric character restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minPasswordAge Number

    (Updatable) Minimum time after which the user can resubmit the reset password request

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minSpecialChars Number

    (Updatable) The minimum number of special characters in a password. A value of 0 or no value indicates no minimum special characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUniqueChars Number

    (Updatable) The minimum number of unique characters in a password. A value of 0 or no value indicates no minimum unique characters restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    minUpperCase Number

    (Updatable) The minimum number of uppercase alphabetic characters in a password. A value of 0 or no value indicates no minimum uppercase restriction.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    name String

    (Updatable) A String that is the name of the policy to display to the user. This is the only mandatory attribute for a password policy.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: always
    • type: string
    • uniqueness: server
    numPasswordsInHistory Number

    (Updatable) The number of passwords that will be kept in history that may not be used as a password

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    passwordExpireWarning Number

    (Updatable) An integer indicating the number of days before which the user should be warned about password expiry.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordExpiresAfter Number

    (Updatable) The number of days after which the password expires automatically

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    passwordStrength String

    (Updatable) Indicates whether the password policy is configured as Simple, Standard, or Custom.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    priority Number

    (Updatable) Password policy priority

    Added In: 20.1.3

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • idcsMinValue: 1
    • uniqueness: server
    requiredChars String

    (Updatable) A String value whose contents indicate a set of characters that must appear, in any sequence, in a password value

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceTypeSchemaVersion String
    (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
    schemas List<String>

    (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    startsWithAlphabet Boolean

    (Updatable) Indicates that the password must begin with an alphabetic character

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none
    tags List<Property Map>

    (Updatable) A list of tags on this resource.

    SCIM++ Properties:

    • idcsCompositeKey: [key, value]
    • idcsSearchable: true
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: request
    • type: complex
    • uniqueness: none
    tenancyOcid String

    (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    userNameDisallowed Boolean

    (Updatable) Indicates a sequence of characters that match the username cannot be the password. Password validation against policy will be ignored if length of user name is less than or equal to 3 characters.

    SCIM++ Properties:

    • caseExact: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: boolean
    • uniqueness: none

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Supporting Types

    DomainsPasswordPolicyConfiguredPasswordPolicyRule, DomainsPasswordPolicyConfiguredPasswordPolicyRuleArgs

    Key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key String

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key str

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value str

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key String

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none

    DomainsPasswordPolicyGroup, DomainsPasswordPolicyGroupArgs

    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    value str

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display str

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ref str

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none

    DomainsPasswordPolicyIdcsCreatedBy, DomainsPasswordPolicyIdcsCreatedByArgs

    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    Type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    Type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type String

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value str

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display str

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid str

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref str

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type str

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type String

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none

    DomainsPasswordPolicyIdcsLastModifiedBy, DomainsPasswordPolicyIdcsLastModifiedByArgs

    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    Type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    Ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    Type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type String

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display string

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid string

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref string

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type string

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value str

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display str

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid str

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref str

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type str

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    display String

    (Updatable) The displayName of the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ocid String

    (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: false
    • returned: default
    • type: string
    • uniqueness: global
    ref String

    (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: reference
    • uniqueness: none
    type String

    (Updatable) The type of resource, User or App, that modified this Resource

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none

    DomainsPasswordPolicyMeta, DomainsPasswordPolicyMetaArgs

    Created string

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    LastModified string

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    Location string

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceType string

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Version string

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Created string

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    LastModified string

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    Location string

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    ResourceType string

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Version string

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    created String

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    lastModified String

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    location String

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceType String

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    version String

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    created string

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    lastModified string

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    location string

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceType string

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    version string

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    created str

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    last_modified str

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    location str

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resource_type str

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    version str

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    created String

    (Updatable) The DateTime the Resource was added to the Service Provider

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    lastModified String

    (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: dateTime
    • uniqueness: none
    location String

    (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    resourceType String

    (Updatable) Name of the resource type of the resource--for example, Users or Groups

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    version String

    (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: false
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: string
    • uniqueness: none

    DomainsPasswordPolicyTag, DomainsPasswordPolicyTagArgs

    Key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    Value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key String

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key string

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value string

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key str

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value str

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    key String

    (Updatable) Key or name of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    value String

    (Updatable) Value of the tag.

    SCIM++ Properties:

    • caseExact: false
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: string
    • uniqueness: none

    Import

    PasswordPolicies can be imported using the id, e.g.

    $ pulumi import oci:Identity/domainsPasswordPolicy:DomainsPasswordPolicy test_password_policy "idcsEndpoint/{idcsEndpoint}/passwordPolicies/{passwordPolicyId}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.32.0 published on Thursday, Apr 18, 2024 by Pulumi