DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CLAIM_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_claim_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
value varchar2(32767),
issuer varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_claim_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_claim_t (
key varchar2,
value varchar2,
issuer varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) The key of the claim.
value
(required) The value of the claim.
issuer
(optional) The issuer of the claim.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CLAIM_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_claim_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_claim_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_claim_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PRINCIPAL_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_principal_t FORCE AUTHID CURRENT_USER IS OBJECT (
subject_id varchar2(32767),
tenant_id varchar2(32767),
claims dbms_cloud_oci_identity_dataplane_claim_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_principal_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_principal_t (
subject_id varchar2,
tenant_id varchar2,
claims dbms_cloud_oci_identity_dataplane_claim_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
subject_id
(required) The user's OCID.
tenant_id
(required) The tenancy OCID.
claims
(required) The set of claims for this principal.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PERMISSION_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_permission_t FORCE AUTHID CURRENT_USER IS OBJECT (
p varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_permission_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_permission_t (
p varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
p
(required) The name of the permission.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CONTEXT_VARIABLE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_context_variable_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
value varchar2(32767),
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_context_variable_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_context_variable_t (
name varchar2,
value varchar2,
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CONTEXT_VARIABLE_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_context_variable_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_context_variable_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_context_variable_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PERMISSION_CONTEXT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_permission_context_t FORCE AUTHID CURRENT_USER IS OBJECT (
permission dbms_cloud_oci_identity_dataplane_permission_t,
variables dbms_cloud_oci_identity_dataplane_context_variable_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_permission_context_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_permission_context_t (
permission dbms_cloud_oci_identity_dataplane_permission_t,
variables dbms_cloud_oci_identity_dataplane_context_variable_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
permission
(required) The permission context.
variables
(required) The set of variables in this permission context.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PERMISSION_CONTEXT_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_permission_context_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_permission_context_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_permission_context_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHORIZATION_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authorization_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
request_id varchar2(32767),
user_principal dbms_cloud_oci_identity_dataplane_principal_t,
svc_principal dbms_cloud_oci_identity_dataplane_principal_t,
service_name varchar2(32767),
context dbms_cloud_oci_identity_dataplane_permission_context_tbl,
policy_hash varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authorization_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authorization_request_t (
request_id varchar2,
user_principal dbms_cloud_oci_identity_dataplane_principal_t,
svc_principal dbms_cloud_oci_identity_dataplane_principal_t,
service_name varchar2,
context dbms_cloud_oci_identity_dataplane_permission_context_tbl,
policy_hash varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
request_id
(required) The id of this request. It is a GUID.
user_principal
(required) The user principal object
svc_principal
(required) The service principal object for service to service calls.
service_name
(required) The name of the service that is making this authorization request
context
(required) A set of permission contexts
policy_hash
(required) The hash of cached policy on the caller service side. If this is different than what Identity has, it will send the most recent policy statements.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ACCESSIBLE_COMPARTMENT_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_accessible_compartment_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
authorization_request dbms_cloud_oci_identity_dataplane_authorization_request_t,
compartment_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_accessible_compartment_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_accessible_compartment_request_t (
authorization_request dbms_cloud_oci_identity_dataplane_authorization_request_t,
compartment_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
authorization_request
(required) The authorization request.
compartment_ids
(required) The list of compartment ids.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_COMPARTMENT_METADATA_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_compartment_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
access_level varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_compartment_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_compartment_metadata_t (
compartment_id varchar2,
access_level varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_COMPARTMENT_METADATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_compartment_metadata_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_compartment_metadata_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_compartment_metadata_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ACCESSIBLE_COMPARTMENT_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_accessible_compartment_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartments_metadata dbms_cloud_oci_identity_dataplane_compartment_metadata_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_accessible_compartment_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_accessible_compartment_response_t (
compartments_metadata dbms_cloud_oci_identity_dataplane_compartment_metadata_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartments_metadata
(required) The compartments metadata.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHORIZATION_REQUEST_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_authorization_request_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authorization_request_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_authorization_request_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ASSOCIATION_AUTHORIZATION_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_association_authorization_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
requests dbms_cloud_oci_identity_dataplane_authorization_request_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_association_authorization_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_association_authorization_request_t (
requests dbms_cloud_oci_identity_dataplane_authorization_request_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
requests
(required) The list of authorization requests.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTH_SERVICE_USER_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_auth_service_user_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
tenant_id varchar2(32767),
id varchar2(32767),
name varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_auth_service_user_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_auth_service_user_t (
compartment_id varchar2,
tenant_id varchar2,
id varchar2,
name varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The id of the compartment.
tenant_id
(required) The id of the tenant.
id
(required) The user's Oracle ID (OCID).
name
(required) The name of the user.
display_name
(required) The display name of the user.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATE_CLIENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authenticate_client_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
request_headers json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_client_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_client_details_t (
request_headers json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
request_headers
(required) The signed headers of the original caller's request.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATE_CLIENT_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authenticate_client_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
principal dbms_cloud_oci_identity_dataplane_principal_t,
error_message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_client_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_client_result_t (
principal dbms_cloud_oci_identity_dataplane_principal_t,
error_message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
principal
(optional) The original caller's resolved principal object if the authentication succeeds, null otherwise.
error_message
(optional) If the authentication fails for the original caller (not failing authentication of the calling service, in which case we return 401), we return a 200, but with null principal and an error message
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATE_USER_RESULT_T Type 🔗
See ValidAuthenticateUserResult, BadUserStateAuthenticateUserResult, UserNotFoundAuthenticateUserResult, TenantNotFoundAuthenticateUserResult
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authenticate_user_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_input varchar2(32767),
user_input varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_user_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authenticate_user_result_t (
tenant_input varchar2,
user_input varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant_input
(required) The tenant name.
user_input
(required) The user name.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PASSWORD_POLICY_T Type 🔗
Password policy, currently set for the given compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_password_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
minimum_password_length number,
is_uppercase_characters_required number,
is_lowercase_characters_required number,
is_numeric_characters_required number,
is_special_characters_required number,
is_username_containment_allowed number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_password_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_password_policy_t (
minimum_password_length number,
is_uppercase_characters_required number,
is_lowercase_characters_required number,
is_numeric_characters_required number,
is_special_characters_required number,
is_username_containment_allowed number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
minimum_password_length
(optional) Minimum password length required.
is_uppercase_characters_required
(optional) At least one uppercase character required.
is_lowercase_characters_required
(optional) At least one lower case character required.
is_numeric_characters_required
(optional) At least one numeric character required.
is_special_characters_required
(optional) At least one special character required.
is_username_containment_allowed
(optional) User name is allowed to be part of the password.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATION_POLICY_T Type 🔗
Authentication policy, currently set for the given compartment
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authentication_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
password_policy dbms_cloud_oci_identity_dataplane_password_policy_t,
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_policy_t (
password_policy dbms_cloud_oci_identity_dataplane_password_policy_t,
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
password_policy
(optional) Password policy.
compartment_id
(optional) Compartment OCID.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_TENANT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_tenant_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
service_namespace varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_tenant_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_tenant_t (
id varchar2,
name varchar2,
service_namespace varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The tenant's Oracle ID (OCID).
name
(required) The name of the tenancy.
service_namespace
(optional) The service namespace.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_USER_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_user_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
is_otp number,
is_mfa_activated number,
is_mfa_verified number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_user_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_user_t (
id varchar2,
name varchar2,
is_otp number,
is_mfa_activated number,
is_mfa_verified number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The user's Oracle ID (OCID).
name
(required) The name of the user.
is_otp
(required) If the provided password is a one-time password.
is_mfa_activated
(required) If mfa is activated.
is_mfa_verified
(required) If the user has been mfa verified.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATION_PRINCIPAL_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authentication_principal_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant dbms_cloud_oci_identity_dataplane_tenant_t,
l_user dbms_cloud_oci_identity_dataplane_user_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_principal_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_principal_t (
tenant dbms_cloud_oci_identity_dataplane_tenant_t,
l_user dbms_cloud_oci_identity_dataplane_user_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant
(required) The tenancy object.
l_user
(required) The user object.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_AUTHENTICATION_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_authentication_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
user_name varchar2(32767),
password varchar2(32767),
tenant_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_authentication_request_t (
user_name varchar2,
password varchar2,
tenant_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
user_name
(required) The user name
password
(required) The password
tenant_name
(required) The name of the tenancy
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_BAD_USER_STATE_AUTHENTICATE_USER_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_bad_user_state_authenticate_user_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_input varchar2(32767),
user_input varchar2(32767),
resolved_tenant_id varchar2(32767),
resolved_user_id varchar2(32767),
user_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_bad_user_state_authenticate_user_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_bad_user_state_authenticate_user_result_t (
tenant_input varchar2,
user_input varchar2,
resolved_tenant_id varchar2,
resolved_user_id varchar2,
user_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CLIENT_CREDENTIALS_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_client_credentials_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
access_token varchar2(32767),
token_type varchar2(32767),
expires_in varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_client_credentials_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_client_credentials_response_t (
access_token varchar2,
token_type varchar2,
expires_in varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
access_token
(required) The access token.
token_type
(required) The token type.
expires_in
(required) The amount of time until the token expires.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_COMMON_PRINCIPAL_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_common_principal_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant dbms_cloud_oci_identity_dataplane_tenant_t,
l_user dbms_cloud_oci_identity_dataplane_user_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_common_principal_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_common_principal_t (
tenant dbms_cloud_oci_identity_dataplane_tenant_t,
l_user dbms_cloud_oci_identity_dataplane_user_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant
(required) The tenant.
l_user
(required) The user.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ENTITY_STATUS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_entity_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
inactive_bit_mask number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_entity_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_entity_status_t (
status varchar2,
inactive_bit_mask number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
status
(required) The entity status.
inactive_bit_mask
(required) A bit mask showing the reason why the entity is inactive: - bit 0: ACTIVE - bit 1: SUSPENDED - bit 2: DISABLED - bit 3: BLOCKED - bit 4: LOCKED
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_COMPARTMENT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_compartment_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
display_name varchar2(32767),
full_name varchar2(32767),
parent_compartment_id varchar2(32767),
status dbms_cloud_oci_identity_dataplane_entity_status_t,
property_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_compartment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_compartment_t (
id varchar2,
name varchar2,
display_name varchar2,
full_name varchar2,
parent_compartment_id varchar2,
status dbms_cloud_oci_identity_dataplane_entity_status_t,
property_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The id of the compartment.
name
(required) The name of the compartment.
display_name
(required) The display name of the compartment.
full_name
(required) The full name of the compartment.
parent_compartment_id
(required) The id of the parent compartment.
status
(required) The status of the compartment.
property_map
(required) The extended properties.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_COST_TRACKING_TAG_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_cost_tracking_tag_t FORCE AUTHID CURRENT_USER IS OBJECT (
tag_namespace_id varchar2(32767),
tag_namespace_name varchar2(32767),
tag_definition_id varchar2(32767),
tag_definition_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_cost_tracking_tag_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_cost_tracking_tag_t (
tag_namespace_id varchar2,
tag_namespace_name varchar2,
tag_definition_id varchar2,
tag_definition_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tag_namespace_id
(required) The tag namespace id.
tag_namespace_name
(required) The tag namespace name.
tag_definition_id
(required) The tag definition id.
tag_definition_name
(required) The tag definition name.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_CREDENTIAL_AUTHENTICATOR_INFO_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_credential_authenticator_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
raw_credential varchar2(32767),
user_id varchar2(32767),
tenant_id varchar2(32767),
user_name varchar2(32767),
tenant_name varchar2(32767),
credential_identifier varchar2(32767),
credential_list dbms_cloud_oci_identity_dataplane_varchar2_tbl,
service varchar2(32767),
client_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_credential_authenticator_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_credential_authenticator_info_t (
raw_credential varchar2,
user_id varchar2,
tenant_id varchar2,
user_name varchar2,
tenant_name varchar2,
credential_identifier varchar2,
credential_list dbms_cloud_oci_identity_dataplane_varchar2_tbl,
service varchar2,
client_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
raw_credential
(required) The raw credential.
user_id
(required) The id of the user.
tenant_id
(required) The id of the tenant.
user_name
(required) The name of the user.
tenant_name
(required) The name of the tenant.
credential_identifier
(required) The credential identifier.
credential_list
(required) The credential list.
service
(required) The name of the service that is making this authorization request.
client_id
(required) The id of the client.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_DERIVED_KEY_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_derived_key_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
signing_key varchar2(32767),
principal dbms_cloud_oci_identity_dataplane_common_principal_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_derived_key_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_derived_key_response_t (
signing_key varchar2,
principal dbms_cloud_oci_identity_dataplane_common_principal_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
signing_key
(required) The derived key.
principal
(required) The principal.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ERROR_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_FILTER_GROUP_MEMBERSHIP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_filter_group_membership_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
principal dbms_cloud_oci_identity_dataplane_principal_t,
group_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_filter_group_membership_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_filter_group_membership_details_t (
principal dbms_cloud_oci_identity_dataplane_principal_t,
group_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
principal
(required) A resolved principal object
group_ids
(required) An array of group or dynamic group Ids the resolved principal potentially belongs to.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_FILTER_GROUP_MEMBERSHIP_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_filter_group_membership_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
principal dbms_cloud_oci_identity_dataplane_principal_t,
group_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_filter_group_membership_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_filter_group_membership_result_t (
principal dbms_cloud_oci_identity_dataplane_principal_t,
group_ids dbms_cloud_oci_identity_dataplane_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
principal
(required) Return passed-in resolved principal object
group_ids
(required) An array of group or dynamic group Ids which present the intersection between the passed-in group/dynamic-group and the actual group/dynamic-group the resovled principal belongs to.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_GENERATE_SCOPED_ACCESS_TOKEN_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_generate_scoped_access_token_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
scope varchar2(32767),
public_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_generate_scoped_access_token_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_generate_scoped_access_token_details_t (
scope varchar2,
public_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
scope
(required) Scope definition for the scoped access token
public_key
(required) A temporary public key, owned by the service. The service also owns the corresponding private key. This public key will be put inside the security token by the auth service after successful validation of the certificate.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_GENERATE_USER_SECURITY_TOKEN_DETAILS_T Type 🔗
Request parameters in body for obtaining a user principal session token (UPST) for self.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_generate_user_security_token_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
public_key varchar2(32767),
session_expiration_in_minutes number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_generate_user_security_token_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_generate_user_security_token_details_t (
public_key varchar2,
session_expiration_in_minutes number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
public_key
(required) The user-owned public key in PEM format that corresponds to the RSA key pair used for signing requests. The user also owns the corresponding private key. This public key will be put inside the user security token by the auth service after successful validation of the request.
session_expiration_in_minutes
(optional) User session expiration in minutes to which the requested user principal session token (UPST) is bounded. Valid values are from 5 to 60 for all realms.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_IDENTITY_PROVIDER_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_identity_provider_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
tenant_name varchar2(32767),
tenant_id varchar2(32767),
redirect_uri varchar2(32767),
signing_certificate varchar2(32767),
protocol varchar2(32767),
service_provider_entity_id varchar2(32767),
force_authentication number,
authn_context_class_refs dbms_cloud_oci_identity_dataplane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_identity_provider_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_identity_provider_t (
id varchar2,
name varchar2,
tenant_name varchar2,
tenant_id varchar2,
redirect_uri varchar2,
signing_certificate varchar2,
protocol varchar2,
service_provider_entity_id varchar2,
force_authentication number,
authn_context_class_refs dbms_cloud_oci_identity_dataplane_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The id of the provider.
name
(required) The name of the provider.
tenant_name
(required) The name of the tenant.
tenant_id
(required) The id of the tenant.
redirect_uri
(required) The SAML endpoint where user will be redirected.
signing_certificate
(required) The signing certificate of the provider.
protocol
(required) The type of the provider.
Allowed values are: 'SAML2'
service_provider_entity_id
(required) The id of the service provider entity.
force_authentication
(required) Whether to force authentication.
authn_context_class_refs
(required) Authentication context class refs.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_JWK_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_jwk_t FORCE AUTHID CURRENT_USER IS OBJECT (
n varchar2(32767),
e varchar2(32767),
kid varchar2(32767),
use varchar2(32767),
alg varchar2(32767),
kty varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_jwk_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_jwk_t (
n varchar2,
e varchar2,
kid varchar2,
use varchar2,
alg varchar2,
kty varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
n
(required) The modulus.
e
(required) The exponent.
kid
(required) The key id.
use
(required) The key use.
alg
(required) The algorithm.
kty
(required) The key type.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_ON_BEHALF_OF_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_on_behalf_of_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
request_headers json_element_t,
target_service_name varchar2(32767),
obo_token varchar2(32767),
expiration varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_on_behalf_of_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_on_behalf_of_request_t (
request_headers json_element_t,
target_service_name varchar2,
obo_token varchar2,
expiration varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
request_headers
(required) The signed headers of the customer call.
target_service_name
(required) The name of the target service.
obo_token
(optional) If you have an obo token already, exchange that for a new obo token.
expiration
(optional) A duration for which the obo token is requested to be valid.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_PASSWORD_RESET_AUTHENTICATION_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_password_reset_authentication_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
user_id varchar2(32767),
password_reset_token varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_password_reset_authentication_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_password_reset_authentication_request_t (
user_id varchar2,
password_reset_token varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
user_id
(required) The id of the user
password_reset_token
(required) The password reset token
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_REFRESH_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_refresh_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
current_token varchar2(32767),
new_public_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_refresh_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_refresh_request_t (
current_token varchar2,
new_public_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
current_token
(required) The current security token that is to be renewed.
new_public_key
(optional) An optional new public for the new token. If not supplied, currentToken's public key will be used.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_RESOURCE_PRINCIPAL_SESSION_TOKEN_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_resource_principal_session_token_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_principal_token varchar2(32767),
service_principal_session_token varchar2(32767),
session_public_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_resource_principal_session_token_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_resource_principal_session_token_request_t (
resource_principal_token varchar2,
service_principal_session_token varchar2,
session_public_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
resource_principal_token
(required) The resource principal token.
service_principal_session_token
(required) The service principal session token.
session_public_key
(required) The session public key.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_SECURITY_TOKEN_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_security_token_t FORCE AUTHID CURRENT_USER IS OBJECT (
token varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_security_token_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_security_token_t (
token varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
token
(required) The security token, signed by auth service
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_TENANT_NOT_FOUND_AUTHENTICATE_USER_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_tenant_not_found_authenticate_user_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_input varchar2(32767),
user_input varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_tenant_not_found_authenticate_user_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_tenant_not_found_authenticate_user_result_t (
tenant_input varchar2,
user_input varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant_input
(required) The tenant name.
user_input
(required) The user name.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_THICK_AUTHORIZATION_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_thick_authorization_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
policy varchar2(32767),
policy_cache_duration varchar2(32767),
groups dbms_cloud_oci_identity_dataplane_varchar2_tbl,
group_membership_cache_duration varchar2(32767),
flush_all_caches number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thick_authorization_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thick_authorization_response_t (
policy varchar2,
policy_cache_duration varchar2,
groups dbms_cloud_oci_identity_dataplane_varchar2_tbl,
group_membership_cache_duration varchar2,
flush_all_caches number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
policy
(required) The policy string related to the request
policy_cache_duration
(required) The duration of how long this policy should be cached. Note that the type is of type java.time.Duration, not string.
groups
(required) The policy string related to the request.
group_membership_cache_duration
(required) The duration of how long the user's group membership should be cached. Note that the type is of type java.time.Duration, not string.
flush_all_caches
(optional) If set to true, the SDK should clear the caches.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_THIN_AUTHORIZATION_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_thin_authorization_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
authorization_request dbms_cloud_oci_identity_dataplane_authorization_request_t,
decision_cache_duration varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thin_authorization_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thin_authorization_response_t (
authorization_request dbms_cloud_oci_identity_dataplane_authorization_request_t,
decision_cache_duration varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
authorization_request
(required) The policy string related to the request.
decision_cache_duration
(required) The duration of how long this decision should be cached. Note that the type is of type java.time.Duration, not string.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_THIN_AUTHORIZATION_RESPONSE_TBL Type 🔗
Nested table type of dbms_cloud_oci_identity_dataplane_thin_authorization_response_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_thin_authorization_response_tbl FORCE IS TABLE OF (dbms_cloud_oci_identity_dataplane_thin_authorization_response_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_THIN_ASSOCIATION_AUTHORIZATION_RESPONSE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_thin_association_authorization_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
responses dbms_cloud_oci_identity_dataplane_thin_authorization_response_tbl,
association_result varchar2(32767),
decision_cache_duration varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thin_association_authorization_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_thin_association_authorization_response_t (
responses dbms_cloud_oci_identity_dataplane_thin_authorization_response_tbl,
association_result varchar2,
decision_cache_duration varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_USER_NOT_FOUND_AUTHENTICATE_USER_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_user_not_found_authenticate_user_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_input varchar2(32767),
user_input varchar2(32767),
resolved_tenant_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_user_not_found_authenticate_user_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_user_not_found_authenticate_user_result_t (
tenant_input varchar2,
user_input varchar2,
resolved_tenant_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant_input
(required) The tenant name.
user_input
(required) The user name.
resolved_tenant_id
(required) The resolved tenant id.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_VALID_AUTHENTICATE_USER_RESULT_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_valid_authenticate_user_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_input varchar2(32767),
user_input varchar2(32767),
resolved_principal dbms_cloud_oci_identity_dataplane_authentication_principal_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_valid_authenticate_user_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_valid_authenticate_user_result_t (
tenant_input varchar2,
user_input varchar2,
resolved_principal dbms_cloud_oci_identity_dataplane_authentication_principal_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant_input
(required) The tenant name.
user_input
(required) The user name.
resolved_principal
(required) The resolved principal.
DBMS_CLOUD_OCI_IDENTITY_DATAPLANE_X509_FEDERATION_REQUEST_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_identity_dataplane_x509_federation_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
certificate varchar2(32767),
public_key varchar2(32767),
intermediate_certificates dbms_cloud_oci_identity_dataplane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_x509_federation_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_identity_dataplane_x509_federation_request_t (
certificate varchar2,
public_key varchar2,
intermediate_certificates dbms_cloud_oci_identity_dataplane_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
certificate
(required) The x509 certificate of the service instance, issued by his CA.
public_key
(required) A temporary public key, owned by the service. The service also owns the corresponding private key. This public key will be put inside the security token by the auth service after successful validation of the certificate.
intermediate_certificates
(optional) An array of intermediate certificates to form the chain from the leaf certificate to the root CA. If auth service already has the intermediate certificate(s), then this is not required.