import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Self Registration Profile resource in Oracle Cloud Infrastructure Identity Domains service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/identity-domains/latest/SelfRegistrationProfile * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/identity_domains * * Create a self-registration profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSelfRegistrationProfile = new oci.identity.DomainsSelfRegistrationProfile("test_self_registration_profile", { * activationEmailRequired: selfRegistrationProfileActivationEmailRequired === "true", * consentTextPresent: selfRegistrationProfileConsentTextPresent === "true", * displayNames: [{ * locale: selfRegistrationProfileDisplayNameLocale, * value: selfRegistrationProfileDisplayNameValue, * "default": selfRegistrationProfileDisplayNameDefault === "true", * }], * emailTemplate: { * value: selfRegistrationProfileEmailTemplateValue, * }, * idcsEndpoint: testDomain.url, * name: selfRegistrationProfileName, * numberOfDaysRedirectUrlIsValid: Number(selfRegistrationProfileNumberOfDaysRedirectUrlIsValid), * redirectUrl: selfRegistrationProfileRedirectUrl, * schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:SelfRegistrationProfile"], * showOnLoginPage: selfRegistrationProfileShowOnLoginPage === "true", * active: selfRegistrationProfileActive === "true", * afterSubmitTexts: [{ * locale: selfRegistrationProfileAfterSubmitTextLocale, * value: selfRegistrationProfileAfterSubmitTextValue, * "default": selfRegistrationProfileAfterSubmitTextDefault === "true", * }], * allowedEmailDomains: selfRegistrationProfileAllowedEmailDomains, * attributeSets: ["all"], * attributes: "", * authorization: selfRegistrationProfileAuthorization, * consentTexts: [{ * locale: selfRegistrationProfileConsentTextLocale, * value: selfRegistrationProfileConsentTextValue, * "default": selfRegistrationProfileConsentTextDefault === "true", * }], * defaultGroups: [{ * value: selfRegistrationProfileDefaultGroupsValue, * }], * disallowedEmailDomains: selfRegistrationProfileDisallowedEmailDomains, * externalId: "externalId", * footerLogo: selfRegistrationProfileFooterLogo, * footerTexts: [{ * locale: selfRegistrationProfileFooterTextLocale, * value: selfRegistrationProfileFooterTextValue, * "default": selfRegistrationProfileFooterTextDefault === "true", * }], * headerLogo: selfRegistrationProfileHeaderLogo, * headerTexts: [{ * locale: selfRegistrationProfileHeaderTextLocale, * value: selfRegistrationProfileHeaderTextValue, * "default": selfRegistrationProfileHeaderTextDefault === "true", * }], * id: selfRegistrationProfileId, * ocid: selfRegistrationProfileOcid, * resourceTypeSchemaVersion: selfRegistrationProfileResourceTypeSchemaVersion, * tags: [{ * key: selfRegistrationProfileTagsKey, * value: selfRegistrationProfileTagsValue, * }], * userAttributes: [{ * seqNumber: Number(selfRegistrationProfileUserAttributesSeqNumber), * value: selfRegistrationProfileUserAttributesValue, * fullyQualifiedAttributeName: selfRegistrationProfileUserAttributesFullyQualifiedAttributeName, * }], * }); * ``` * * ## Import * * SelfRegistrationProfiles can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Identity/domainsSelfRegistrationProfile:DomainsSelfRegistrationProfile test_self_registration_profile "idcsEndpoint/{idcsEndpoint}/selfRegistrationProfiles/{selfRegistrationProfileId}" * ``` */ export declare class DomainsSelfRegistrationProfile extends pulumi.CustomResource { /** * Get an existing DomainsSelfRegistrationProfile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DomainsSelfRegistrationProfileState, opts?: pulumi.CustomResourceOptions): DomainsSelfRegistrationProfile; /** * Returns true if the given object is an instance of DomainsSelfRegistrationProfile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DomainsSelfRegistrationProfile; /** * (Updatable) **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none A Boolean value that indicates whether Account verification email is required to be sent before login or not */ readonly activationEmailRequired: pulumi.Output; /** * (Updatable) A Boolean value that indicates whether the profile is enabled or not * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: boolean * * uniqueness: none */ readonly active: pulumi.Output; /** * (Updatable) Text to be displayed on UI after doing self registration * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly afterSubmitTexts: pulumi.Output; /** * (Updatable) A Multivalue String value for Email domains which are valid for this profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly allowedEmailDomains: pulumi.Output; /** * (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. */ readonly attributeSets: pulumi.Output; /** * (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. */ readonly attributes: pulumi.Output; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ readonly authorization: pulumi.Output; /** * (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 */ readonly compartmentOcid: pulumi.Output; /** * (Updatable) A boolean value that indicates whether the consent text is present. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ readonly consentTextPresent: pulumi.Output; /** * (Updatable) Consent text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly consentTexts: pulumi.Output; /** * (Updatable) Default groups assigned to the user * * **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex */ readonly defaultGroups: pulumi.Output; /** * (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 */ readonly deleteInProgress: pulumi.Output; /** * (Updatable) A Multivalue String Value for Email domains to be handled as exceptions * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly disallowedEmailDomains: pulumi.Output; /** * (Updatable) Registration page name * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: complex * * uniqueness: none */ readonly displayNames: pulumi.Output; /** * (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 */ readonly domainOcid: pulumi.Output; /** * (Updatable) Email template * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: request * * type: complex */ readonly emailTemplate: pulumi.Output; /** * (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:** * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly externalId: pulumi.Output; /** * (Updatable) References to footer logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ readonly footerLogo: pulumi.Output; /** * (Updatable) Footer text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly footerTexts: pulumi.Output; /** * (Updatable) Reference to header logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ readonly headerLogo: pulumi.Output; /** * (Updatable) Header text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly headerTexts: pulumi.Output; /** * (Updatable) The User or App who created the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: true * * returned: default * * type: complex */ readonly idcsCreatedBies: pulumi.Output; /** * The basic endpoint for the identity domain */ readonly idcsEndpoint: pulumi.Output; /** * (Updatable) The User or App who modified the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: complex */ readonly idcsLastModifiedBies: pulumi.Output; /** * (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 */ readonly idcsLastUpgradedInRelease: pulumi.Output; /** * (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 */ readonly idcsPreventedOperations: pulumi.Output; /** * (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 */ readonly metas: pulumi.Output; /** * (Updatable) Name of the profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: always * * type: string * * uniqueness: global */ readonly name: pulumi.Output; /** * (Updatable) Number of days redirect URL is valid * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: integer * * uniqueness: none */ readonly numberOfDaysRedirectUrlIsValid: pulumi.Output; /** * (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 */ readonly ocid: pulumi.Output; /** * (Updatable) This URL will be replaced in email notification sent to user. When activation email required is set to true, user is created in \"pending verification\" state, upon clicking this link user will be able to activate himself. When activation email required is set to false, user is created in \"verified\" state, this link will be used to verify user's email. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ readonly redirectUrl: pulumi.Output; /** * (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. */ readonly resourceTypeSchemaVersion: pulumi.Output; /** * (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 */ readonly schemas: pulumi.Output; /** * (Updatable) A Boolean value that indicates whether the profile should be displayed on login page * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ readonly showOnLoginPage: pulumi.Output; /** * (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 */ readonly tags: pulumi.Output; /** * (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 */ readonly tenancyOcid: pulumi.Output; /** * (Updatable) **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none User Attributes */ readonly userAttributes: pulumi.Output; /** * Create a DomainsSelfRegistrationProfile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DomainsSelfRegistrationProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DomainsSelfRegistrationProfile resources. */ export interface DomainsSelfRegistrationProfileState { /** * (Updatable) **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none A Boolean value that indicates whether Account verification email is required to be sent before login or not */ activationEmailRequired?: pulumi.Input; /** * (Updatable) A Boolean value that indicates whether the profile is enabled or not * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: boolean * * uniqueness: none */ active?: pulumi.Input; /** * (Updatable) Text to be displayed on UI after doing self registration * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ afterSubmitTexts?: pulumi.Input[] | undefined>; /** * (Updatable) A Multivalue String value for Email domains which are valid for this profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ allowedEmailDomains?: pulumi.Input[] | undefined>; /** * (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. */ attributeSets?: pulumi.Input[] | undefined>; /** * (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. */ attributes?: pulumi.Input; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ authorization?: pulumi.Input; /** * (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 */ compartmentOcid?: pulumi.Input; /** * (Updatable) A boolean value that indicates whether the consent text is present. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ consentTextPresent?: pulumi.Input; /** * (Updatable) Consent text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ consentTexts?: pulumi.Input[] | undefined>; /** * (Updatable) Default groups assigned to the user * * **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex */ defaultGroups?: pulumi.Input[] | undefined>; /** * (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 */ deleteInProgress?: pulumi.Input; /** * (Updatable) A Multivalue String Value for Email domains to be handled as exceptions * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ disallowedEmailDomains?: pulumi.Input[] | undefined>; /** * (Updatable) Registration page name * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: complex * * uniqueness: none */ displayNames?: pulumi.Input[] | undefined>; /** * (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 */ domainOcid?: pulumi.Input; /** * (Updatable) Email template * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: request * * type: complex */ emailTemplate?: pulumi.Input; /** * (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:** * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ externalId?: pulumi.Input; /** * (Updatable) References to footer logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ footerLogo?: pulumi.Input; /** * (Updatable) Footer text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ footerTexts?: pulumi.Input[] | undefined>; /** * (Updatable) Reference to header logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ headerLogo?: pulumi.Input; /** * (Updatable) Header text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ headerTexts?: pulumi.Input[] | undefined>; /** * (Updatable) The User or App who created the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: true * * returned: default * * type: complex */ idcsCreatedBies?: pulumi.Input[] | undefined>; /** * The basic endpoint for the identity domain */ idcsEndpoint?: pulumi.Input; /** * (Updatable) The User or App who modified the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: complex */ idcsLastModifiedBies?: pulumi.Input[] | undefined>; /** * (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 */ idcsLastUpgradedInRelease?: pulumi.Input; /** * (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 */ idcsPreventedOperations?: pulumi.Input[] | undefined>; /** * (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 */ metas?: pulumi.Input[] | undefined>; /** * (Updatable) Name of the profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: always * * type: string * * uniqueness: global */ name?: pulumi.Input; /** * (Updatable) Number of days redirect URL is valid * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: integer * * uniqueness: none */ numberOfDaysRedirectUrlIsValid?: pulumi.Input; /** * (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 */ ocid?: pulumi.Input; /** * (Updatable) This URL will be replaced in email notification sent to user. When activation email required is set to true, user is created in \"pending verification\" state, upon clicking this link user will be able to activate himself. When activation email required is set to false, user is created in \"verified\" state, this link will be used to verify user's email. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ redirectUrl?: pulumi.Input; /** * (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. */ resourceTypeSchemaVersion?: pulumi.Input; /** * (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 */ schemas?: pulumi.Input[] | undefined>; /** * (Updatable) A Boolean value that indicates whether the profile should be displayed on login page * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ showOnLoginPage?: pulumi.Input; /** * (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 */ tags?: pulumi.Input[] | undefined>; /** * (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 */ tenancyOcid?: pulumi.Input; /** * (Updatable) **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none User Attributes */ userAttributes?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a DomainsSelfRegistrationProfile resource. */ export interface DomainsSelfRegistrationProfileArgs { /** * (Updatable) **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none A Boolean value that indicates whether Account verification email is required to be sent before login or not */ activationEmailRequired: pulumi.Input; /** * (Updatable) A Boolean value that indicates whether the profile is enabled or not * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: boolean * * uniqueness: none */ active?: pulumi.Input; /** * (Updatable) Text to be displayed on UI after doing self registration * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ afterSubmitTexts?: pulumi.Input[] | undefined>; /** * (Updatable) A Multivalue String value for Email domains which are valid for this profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ allowedEmailDomains?: pulumi.Input[] | undefined>; /** * (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. */ attributeSets?: pulumi.Input[] | undefined>; /** * (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. */ attributes?: pulumi.Input; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ authorization?: pulumi.Input; /** * (Updatable) A boolean value that indicates whether the consent text is present. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ consentTextPresent: pulumi.Input; /** * (Updatable) Consent text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ consentTexts?: pulumi.Input[] | undefined>; /** * (Updatable) Default groups assigned to the user * * **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex */ defaultGroups?: pulumi.Input[] | undefined>; /** * (Updatable) A Multivalue String Value for Email domains to be handled as exceptions * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ disallowedEmailDomains?: pulumi.Input[] | undefined>; /** * (Updatable) Registration page name * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: complex * * uniqueness: none */ displayNames: pulumi.Input[]>; /** * (Updatable) Email template * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: request * * type: complex */ emailTemplate: pulumi.Input; /** * (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:** * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ externalId?: pulumi.Input; /** * (Updatable) References to footer logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ footerLogo?: pulumi.Input; /** * (Updatable) Footer text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ footerTexts?: pulumi.Input[] | undefined>; /** * (Updatable) Reference to header logo * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: reference */ headerLogo?: pulumi.Input; /** * (Updatable) Header text * * **SCIM++ Properties:** * * idcsCompositeKey: [locale] * * idcsMultiLanguage: true * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ headerTexts?: pulumi.Input[] | undefined>; /** * The basic endpoint for the identity domain */ idcsEndpoint: pulumi.Input; /** * (Updatable) Name of the profile * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: always * * type: string * * uniqueness: global */ name?: pulumi.Input; /** * (Updatable) Number of days redirect URL is valid * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: integer * * uniqueness: none */ numberOfDaysRedirectUrlIsValid: pulumi.Input; /** * (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 */ ocid?: pulumi.Input; /** * (Updatable) This URL will be replaced in email notification sent to user. When activation email required is set to true, user is created in \"pending verification\" state, upon clicking this link user will be able to activate himself. When activation email required is set to false, user is created in \"verified\" state, this link will be used to verify user's email. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ redirectUrl: pulumi.Input; /** * (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. */ resourceTypeSchemaVersion?: pulumi.Input; /** * (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 */ schemas: pulumi.Input[]>; /** * (Updatable) A Boolean value that indicates whether the profile should be displayed on login page * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readWrite * * required: true * * returned: default * * type: boolean * * uniqueness: none */ showOnLoginPage: pulumi.Input; /** * (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 */ tags?: pulumi.Input[] | undefined>; /** * (Updatable) **SCIM++ Properties:** * * idcsCompositeKey: [value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none User Attributes */ userAttributes?: pulumi.Input[] | undefined>; } //# sourceMappingURL=domainsSelfRegistrationProfile.d.ts.map