File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/identity_domains/models/identity_proofing_provider.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class IdentityProofingProvider(object): """ Manage Identity Proofing Providers. Oracle Identity Cloud Service provides cross-domain SSO capabilities via the OASIS SAML 2.0 SSO protocol and implements two modes of operation for Federation SSO--as an IdP where the user is authenticated on behalf of remote Service Providers (SP), and as an SP where Oracle Identity Cloud Service delegates authentication to a remote IdP. As an IdP, Oracle Identity Cloud Service can integrate with multiple SPs at the same time. As an SP, This REST API is SCIM compliant. """ #: A constant which can be used with the idcs_prevented_operations property of a IdentityProofingProvider. #: This constant has a value of "replace" IDCS_PREVENTED_OPERATIONS_REPLACE = "replace" #: A constant which can be used with the idcs_prevented_operations property of a IdentityProofingProvider. #: This constant has a value of "update" IDCS_PREVENTED_OPERATIONS_UPDATE = "update" #: A constant which can be used with the idcs_prevented_operations property of a IdentityProofingProvider. #: This constant has a value of "delete" IDCS_PREVENTED_OPERATIONS_DELETE = "delete" #: A constant which can be used with the idcs_locked_operations property of a IdentityProofingProvider. #: This constant has a value of "replace" IDCS_LOCKED_OPERATIONS_REPLACE = "replace" #: A constant which can be used with the idcs_locked_operations property of a IdentityProofingProvider. #: This constant has a value of "update" IDCS_LOCKED_OPERATIONS_UPDATE = "update" #: A constant which can be used with the idcs_locked_operations property of a IdentityProofingProvider. #: This constant has a value of "delete" IDCS_LOCKED_OPERATIONS_DELETE = "delete" #: A constant which can be used with the status property of a IdentityProofingProvider. #: This constant has a value of "INACTIVE" STATUS_INACTIVE = "INACTIVE" #: A constant which can be used with the status property of a IdentityProofingProvider. #: This constant has a value of "ACTIVE" STATUS_ACTIVE = "ACTIVE" def __init__(self, **kwargs): """ Initializes a new IdentityProofingProvider object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this IdentityProofingProvider. :type id: str :param ocid: The value to assign to the ocid property of this IdentityProofingProvider. :type ocid: str :param schemas: The value to assign to the schemas property of this IdentityProofingProvider. :type schemas: list[str] :param meta: The value to assign to the meta property of this IdentityProofingProvider. :type meta: oci.identity_domains.models.Meta :param idcs_created_by: The value to assign to the idcs_created_by property of this IdentityProofingProvider. :type idcs_created_by: oci.identity_domains.models.IdcsCreatedBy :param idcs_last_modified_by: The value to assign to the idcs_last_modified_by property of this IdentityProofingProvider. :type idcs_last_modified_by: oci.identity_domains.models.IdcsLastModifiedBy :param idcs_prevented_operations: The value to assign to the idcs_prevented_operations property of this IdentityProofingProvider. Allowed values for items in this list are: "replace", "update", "delete", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type idcs_prevented_operations: list[str] :param tags: The value to assign to the tags property of this IdentityProofingProvider. :type tags: list[oci.identity_domains.models.Tags] :param idcs_locked_operations: The value to assign to the idcs_locked_operations property of this IdentityProofingProvider. Allowed values for items in this list are: "replace", "update", "delete", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type idcs_locked_operations: list[str] :param idcs_locked_by: The value to assign to the idcs_locked_by property of this IdentityProofingProvider. :type idcs_locked_by: oci.identity_domains.models.IdentityProofingProviderIdcsLockedBy :param idcs_locked_on: The value to assign to the idcs_locked_on property of this IdentityProofingProvider. :type idcs_locked_on: str :param delete_in_progress: The value to assign to the delete_in_progress property of this IdentityProofingProvider. :type delete_in_progress: bool :param idcs_last_upgraded_in_release: The value to assign to the idcs_last_upgraded_in_release property of this IdentityProofingProvider. :type idcs_last_upgraded_in_release: str :param domain_ocid: The value to assign to the domain_ocid property of this IdentityProofingProvider. :type domain_ocid: str :param compartment_ocid: The value to assign to the compartment_ocid property of this IdentityProofingProvider. :type compartment_ocid: str :param tenancy_ocid: The value to assign to the tenancy_ocid property of this IdentityProofingProvider. :type tenancy_ocid: str :param provider: The value to assign to the provider property of this IdentityProofingProvider. :type provider: str :param name: The value to assign to the name property of this IdentityProofingProvider. :type name: str :param description: The value to assign to the description property of this IdentityProofingProvider. :type description: str :param status: The value to assign to the status property of this IdentityProofingProvider. Allowed values for this property are: "INACTIVE", "ACTIVE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type status: str :param runtime_data: The value to assign to the runtime_data property of this IdentityProofingProvider. :type runtime_data: list[oci.identity_domains.models.IdentityProofingProviderRuntimeData] :param configuration: The value to assign to the configuration property of this IdentityProofingProvider. :type configuration: list[oci.identity_domains.models.IdentityProofingProviderConfiguration] :param claim_mapping: The value to assign to the claim_mapping property of this IdentityProofingProvider. :type claim_mapping: list[oci.identity_domains.models.IdentityProofingProviderClaimMapping] """ self.swagger_types = { 'id': 'str', 'ocid': 'str', 'schemas': 'list[str]', 'meta': 'Meta', 'idcs_created_by': 'IdcsCreatedBy', 'idcs_last_modified_by': 'IdcsLastModifiedBy', 'idcs_prevented_operations': 'list[str]', 'tags': 'list[Tags]', 'idcs_locked_operations': 'list[str]', 'idcs_locked_by': 'IdentityProofingProviderIdcsLockedBy', 'idcs_locked_on': 'str', 'delete_in_progress': 'bool', 'idcs_last_upgraded_in_release': 'str', 'domain_ocid': 'str', 'compartment_ocid': 'str', 'tenancy_ocid': 'str', 'provider': 'str', 'name': 'str', 'description': 'str', 'status': 'str', 'runtime_data': 'list[IdentityProofingProviderRuntimeData]', 'configuration': 'list[IdentityProofingProviderConfiguration]', 'claim_mapping': 'list[IdentityProofingProviderClaimMapping]' } self.attribute_map = { 'id': 'id', 'ocid': 'ocid', 'schemas': 'schemas', 'meta': 'meta', 'idcs_created_by': 'idcsCreatedBy', 'idcs_last_modified_by': 'idcsLastModifiedBy', 'idcs_prevented_operations': 'idcsPreventedOperations', 'tags': 'tags', 'idcs_locked_operations': 'idcsLockedOperations', 'idcs_locked_by': 'idcsLockedBy', 'idcs_locked_on': 'idcsLockedOn', 'delete_in_progress': 'deleteInProgress', 'idcs_last_upgraded_in_release': 'idcsLastUpgradedInRelease', 'domain_ocid': 'domainOcid', 'compartment_ocid': 'compartmentOcid', 'tenancy_ocid': 'tenancyOcid', 'provider': 'provider', 'name': 'name', 'description': 'description', 'status': 'status', 'runtime_data': 'runtimeData', 'configuration': 'configuration', 'claim_mapping': 'claimMapping' } self._id = None self._ocid = None self._schemas = None self._meta = None self._idcs_created_by = None self._idcs_last_modified_by = None self._idcs_prevented_operations = None self._tags = None self._idcs_locked_operations = None self._idcs_locked_by = None self._idcs_locked_on = None self._delete_in_progress = None self._idcs_last_upgraded_in_release = None self._domain_ocid = None self._compartment_ocid = None self._tenancy_ocid = None self._provider = None self._name = None self._description = None self._status = None self._runtime_data = None self._configuration = None self._claim_mapping = None @property def id(self): """ Gets the id of this IdentityProofingProvider. Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier. **SCIM++ Properties:** - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: always - type: string - uniqueness: global :return: The id of this IdentityProofingProvider. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this IdentityProofingProvider. Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier. **SCIM++ Properties:** - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: always - type: string - uniqueness: global :param id: The id of this IdentityProofingProvider. :type: str """ self._id = id @property def ocid(self): """ Gets the ocid of this IdentityProofingProvider. Unique OCI identifier (OCID) for the SCIM Resource. **SCIM++ Properties:** - caseExact: true - idcsSearchable: true - multiValued: false - mutability: immutable - required: false - returned: default - type: string - uniqueness: global :return: The ocid of this IdentityProofingProvider. :rtype: str """ return self._ocid @ocid.setter def ocid(self, ocid): """ Sets the ocid of this IdentityProofingProvider. Unique OCI identifier (OCID) for the SCIM Resource. **SCIM++ Properties:** - caseExact: true - idcsSearchable: true - multiValued: false - mutability: immutable - required: false - returned: default - type: string - uniqueness: global :param ocid: The ocid of this IdentityProofingProvider. :type: str """ self._ocid = ocid @property def schemas(self): """ **[Required]** Gets the schemas of this IdentityProofingProvider. 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 :return: The schemas of this IdentityProofingProvider. :rtype: list[str] """ return self._schemas @schemas.setter def schemas(self, schemas): """ Sets the schemas of this IdentityProofingProvider. 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 :param schemas: The schemas of this IdentityProofingProvider. :type: list[str] """ self._schemas = schemas @property def meta(self): """ Gets the meta of this IdentityProofingProvider. :return: The meta of this IdentityProofingProvider. :rtype: oci.identity_domains.models.Meta """ return self._meta @meta.setter def meta(self, meta): """ Sets the meta of this IdentityProofingProvider. :param meta: The meta of this IdentityProofingProvider. :type: oci.identity_domains.models.Meta """ self._meta = meta @property def idcs_created_by(self): """ Gets the idcs_created_by of this IdentityProofingProvider. :return: The idcs_created_by of this IdentityProofingProvider. :rtype: oci.identity_domains.models.IdcsCreatedBy """ return self._idcs_created_by @idcs_created_by.setter def idcs_created_by(self, idcs_created_by): """ Sets the idcs_created_by of this IdentityProofingProvider. :param idcs_created_by: The idcs_created_by of this IdentityProofingProvider. :type: oci.identity_domains.models.IdcsCreatedBy """ self._idcs_created_by = idcs_created_by @property def idcs_last_modified_by(self): """ Gets the idcs_last_modified_by of this IdentityProofingProvider. :return: The idcs_last_modified_by of this IdentityProofingProvider. :rtype: oci.identity_domains.models.IdcsLastModifiedBy """ return self._idcs_last_modified_by @idcs_last_modified_by.setter def idcs_last_modified_by(self, idcs_last_modified_by): """ Sets the idcs_last_modified_by of this IdentityProofingProvider. :param idcs_last_modified_by: The idcs_last_modified_by of this IdentityProofingProvider. :type: oci.identity_domains.models.IdcsLastModifiedBy """ self._idcs_last_modified_by = idcs_last_modified_by @property def idcs_prevented_operations(self): """ Gets the idcs_prevented_operations of this IdentityProofingProvider. 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 Allowed values for items in this list are: "replace", "update", "delete", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The idcs_prevented_operations of this IdentityProofingProvider. :rtype: list[str] """ return self._idcs_prevented_operations @idcs_prevented_operations.setter def idcs_prevented_operations(self, idcs_prevented_operations): """ Sets the idcs_prevented_operations of this IdentityProofingProvider. 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 :param idcs_prevented_operations: The idcs_prevented_operations of this IdentityProofingProvider. :type: list[str] """ allowed_values = ["replace", "update", "delete"] if idcs_prevented_operations: idcs_prevented_operations[:] = ['UNKNOWN_ENUM_VALUE' if not value_allowed_none_or_none_sentinel(x, allowed_values) else x for x in idcs_prevented_operations] self._idcs_prevented_operations = idcs_prevented_operations @property def tags(self): """ Gets the tags of this IdentityProofingProvider. A list of tags on this resource. **SCIM++ Properties:** - idcsCompositeKey: [key, value] - idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]] - idcsSearchable: true - multiValued: true - mutability: readWrite - required: false - returned: request - type: complex - uniqueness: none :return: The tags of this IdentityProofingProvider. :rtype: list[oci.identity_domains.models.Tags] """ return self._tags @tags.setter def tags(self, tags): """ Sets the tags of this IdentityProofingProvider. A list of tags on this resource. **SCIM++ Properties:** - idcsCompositeKey: [key, value] - idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]] - idcsSearchable: true - multiValued: true - mutability: readWrite - required: false - returned: request - type: complex - uniqueness: none :param tags: The tags of this IdentityProofingProvider. :type: list[oci.identity_domains.models.Tags] """ self._tags = tags @property def idcs_locked_operations(self): """ Gets the idcs_locked_operations of this IdentityProofingProvider. Operations that are locked on the resource. **SCIM++ Properties:** - idcsSearchable: false - idcsCsvAttributeNameMappings: [[columnHeaderName:Locked Operations, multiValueDelimiter:;]] - multiValued: true - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none Allowed values for items in this list are: "replace", "update", "delete", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The idcs_locked_operations of this IdentityProofingProvider. :rtype: list[str] """ return self._idcs_locked_operations @idcs_locked_operations.setter def idcs_locked_operations(self, idcs_locked_operations): """ Sets the idcs_locked_operations of this IdentityProofingProvider. Operations that are locked on the resource. **SCIM++ Properties:** - idcsSearchable: false - idcsCsvAttributeNameMappings: [[columnHeaderName:Locked Operations, multiValueDelimiter:;]] - multiValued: true - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none :param idcs_locked_operations: The idcs_locked_operations of this IdentityProofingProvider. :type: list[str] """ allowed_values = ["replace", "update", "delete"] if idcs_locked_operations: idcs_locked_operations[:] = ['UNKNOWN_ENUM_VALUE' if not value_allowed_none_or_none_sentinel(x, allowed_values) else x for x in idcs_locked_operations] self._idcs_locked_operations = idcs_locked_operations @property def idcs_locked_by(self): """ Gets the idcs_locked_by of this IdentityProofingProvider. :return: The idcs_locked_by of this IdentityProofingProvider. :rtype: oci.identity_domains.models.IdentityProofingProviderIdcsLockedBy """ return self._idcs_locked_by @idcs_locked_by.setter def idcs_locked_by(self, idcs_locked_by): """ Sets the idcs_locked_by of this IdentityProofingProvider. :param idcs_locked_by: The idcs_locked_by of this IdentityProofingProvider. :type: oci.identity_domains.models.IdentityProofingProviderIdcsLockedBy """ self._idcs_locked_by = idcs_locked_by @property def idcs_locked_on(self): """ Gets the idcs_locked_on of this IdentityProofingProvider. The most recent DateTime the resource was locked. **SCIM++ Properties:** - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: dateTime - uniqueness: none :return: The idcs_locked_on of this IdentityProofingProvider. :rtype: str """ return self._idcs_locked_on @idcs_locked_on.setter def idcs_locked_on(self, idcs_locked_on): """ Sets the idcs_locked_on of this IdentityProofingProvider. The most recent DateTime the resource was locked. **SCIM++ Properties:** - caseExact: false - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: dateTime - uniqueness: none :param idcs_locked_on: The idcs_locked_on of this IdentityProofingProvider. :type: str """ self._idcs_locked_on = idcs_locked_on @property def delete_in_progress(self): """ Gets the delete_in_progress of this IdentityProofingProvider. 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 :return: The delete_in_progress of this IdentityProofingProvider. :rtype: bool """ return self._delete_in_progress @delete_in_progress.setter def delete_in_progress(self, delete_in_progress): """ Sets the delete_in_progress of this IdentityProofingProvider. 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 :param delete_in_progress: The delete_in_progress of this IdentityProofingProvider. :type: bool """ self._delete_in_progress = delete_in_progress @property def idcs_last_upgraded_in_release(self): """ Gets the idcs_last_upgraded_in_release of this IdentityProofingProvider. 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 :return: The idcs_last_upgraded_in_release of this IdentityProofingProvider. :rtype: str """ return self._idcs_last_upgraded_in_release @idcs_last_upgraded_in_release.setter def idcs_last_upgraded_in_release(self, idcs_last_upgraded_in_release): """ Sets the idcs_last_upgraded_in_release of this IdentityProofingProvider. 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 :param idcs_last_upgraded_in_release: The idcs_last_upgraded_in_release of this IdentityProofingProvider. :type: str """ self._idcs_last_upgraded_in_release = idcs_last_upgraded_in_release @property def domain_ocid(self): """ Gets the domain_ocid of this IdentityProofingProvider. OCI 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 :return: The domain_ocid of this IdentityProofingProvider. :rtype: str """ return self._domain_ocid @domain_ocid.setter def domain_ocid(self, domain_ocid): """ Sets the domain_ocid of this IdentityProofingProvider. OCI 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 :param domain_ocid: The domain_ocid of this IdentityProofingProvider. :type: str """ self._domain_ocid = domain_ocid @property def compartment_ocid(self): """ Gets the compartment_ocid of this IdentityProofingProvider. OCI 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 :return: The compartment_ocid of this IdentityProofingProvider. :rtype: str """ return self._compartment_ocid @compartment_ocid.setter def compartment_ocid(self, compartment_ocid): """ Sets the compartment_ocid of this IdentityProofingProvider. OCI 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 :param compartment_ocid: The compartment_ocid of this IdentityProofingProvider. :type: str """ self._compartment_ocid = compartment_ocid @property def tenancy_ocid(self): """ Gets the tenancy_ocid of this IdentityProofingProvider. OCI 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 :return: The tenancy_ocid of this IdentityProofingProvider. :rtype: str """ return self._tenancy_ocid @tenancy_ocid.setter def tenancy_ocid(self, tenancy_ocid): """ Sets the tenancy_ocid of this IdentityProofingProvider. OCI 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 :param tenancy_ocid: The tenancy_ocid of this IdentityProofingProvider. :type: str """ self._tenancy_ocid = tenancy_ocid @property def provider(self): """ **[Required]** Gets the provider of this IdentityProofingProvider. The Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: true - multiValued: false - mutability: readWrite - idcsCanonicalValueSourceFilter: provider eq \"$(provider)\" - idcsCanonicalValueSourceResourceType: IdentityProofingProviderTemplate - caseExact: true - required: true - returned: always - type: string - uniqueness: none :return: The provider of this IdentityProofingProvider. :rtype: str """ return self._provider @provider.setter def provider(self, provider): """ Sets the provider of this IdentityProofingProvider. The Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: true - multiValued: false - mutability: readWrite - idcsCanonicalValueSourceFilter: provider eq \"$(provider)\" - idcsCanonicalValueSourceResourceType: IdentityProofingProviderTemplate - caseExact: true - required: true - returned: always - type: string - uniqueness: none :param provider: The provider of this IdentityProofingProvider. :type: str """ self._provider = provider @property def name(self): """ **[Required]** Gets the name of this IdentityProofingProvider. Name of the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: false - mutability: readWrite - required: true - returned: always - type: string - uniqueness: global :return: The name of this IdentityProofingProvider. :rtype: str """ return self._name @name.setter def name(self, name): """ Sets the name of this IdentityProofingProvider. Name of the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: false - mutability: readWrite - required: true - returned: always - type: string - uniqueness: global :param name: The name of this IdentityProofingProvider. :type: str """ self._name = name @property def description(self): """ Gets the description of this IdentityProofingProvider. Description field to add comments and additional information about the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: false - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none :return: The description of this IdentityProofingProvider. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this IdentityProofingProvider. Description field to add comments and additional information about the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: false - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none :param description: The description of this IdentityProofingProvider. :type: str """ self._description = description @property def status(self): """ Gets the status of this IdentityProofingProvider. Status of the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: true - multiValued: false - caseExact: true - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none Allowed values for this property are: "INACTIVE", "ACTIVE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The status of this IdentityProofingProvider. :rtype: str """ return self._status @status.setter def status(self, status): """ Sets the status of this IdentityProofingProvider. Status of the Identity Proofing Provider. **SCIM++ Properties:** - idcsSearchable: true - multiValued: false - caseExact: true - mutability: readWrite - required: false - returned: default - type: string - uniqueness: none :param status: The status of this IdentityProofingProvider. :type: str """ allowed_values = ["INACTIVE", "ACTIVE"] if not value_allowed_none_or_none_sentinel(status, allowed_values): status = 'UNKNOWN_ENUM_VALUE' self._status = status @property def runtime_data(self): """ Gets the runtime_data of this IdentityProofingProvider. Identity Proofing runtime custom data. **Added In:** 2505161800 **SCIM++ Properties:** - idcsCompositeKey: [attrName] - multiValued: true - mutability: readWrite - required: false - returned: default - type: complex :return: The runtime_data of this IdentityProofingProvider. :rtype: list[oci.identity_domains.models.IdentityProofingProviderRuntimeData] """ return self._runtime_data @runtime_data.setter def runtime_data(self, runtime_data): """ Sets the runtime_data of this IdentityProofingProvider. Identity Proofing runtime custom data. **Added In:** 2505161800 **SCIM++ Properties:** - idcsCompositeKey: [attrName] - multiValued: true - mutability: readWrite - required: false - returned: default - type: complex :param runtime_data: The runtime_data of this IdentityProofingProvider. :type: list[oci.identity_domains.models.IdentityProofingProviderRuntimeData] """ self._runtime_data = runtime_data @property def configuration(self): """ **[Required]** Gets the configuration of this IdentityProofingProvider. Configure the verification provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: true - mutability: immutable - required: true - returned: always - idcsCompositeKey: [name] - type: complex - uniqueness: server :return: The configuration of this IdentityProofingProvider. :rtype: list[oci.identity_domains.models.IdentityProofingProviderConfiguration] """ return self._configuration @configuration.setter def configuration(self, configuration): """ Sets the configuration of this IdentityProofingProvider. Configure the verification provider. **SCIM++ Properties:** - idcsSearchable: false - multiValued: true - mutability: immutable - required: true - returned: always - idcsCompositeKey: [name] - type: complex - uniqueness: server :param configuration: The configuration of this IdentityProofingProvider. :type: list[oci.identity_domains.models.IdentityProofingProviderConfiguration] """ self._configuration = configuration @property def claim_mapping(self): """ **[Required]** Gets the claim_mapping of this IdentityProofingProvider. Configure the verification claims and IAM Domain user attribute mapping. **SCIM++ Properties:** - idcsSearchable: false - multiValued: true - mutability: immutable - required: true - returned: always - idcsCompositeKey: [verifiableClaim] - type: complex - uniqueness: server :return: The claim_mapping of this IdentityProofingProvider. :rtype: list[oci.identity_domains.models.IdentityProofingProviderClaimMapping] """ return self._claim_mapping @claim_mapping.setter def claim_mapping(self, claim_mapping): """ Sets the claim_mapping of this IdentityProofingProvider. Configure the verification claims and IAM Domain user attribute mapping. **SCIM++ Properties:** - idcsSearchable: false - multiValued: true - mutability: immutable - required: true - returned: always - idcsCompositeKey: [verifiableClaim] - type: complex - uniqueness: server :param claim_mapping: The claim_mapping of this IdentityProofingProvider. :type: list[oci.identity_domains.models.IdentityProofingProviderClaimMapping] """ self._claim_mapping = claim_mapping def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings