CIMS Common Types
DBMS_CLOUD_OCI_CIMS_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_CATEGORY_T Type
Details about the service category associated with the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_category_t FORCE AUTHID CURRENT_USER IS OBJECT (
category_key varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_category_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_category_t (
category_key varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the service category. |
|
(optional) The name of the service category. For example, `Compute` or `Identity`. |
DBMS_CLOUD_OCI_CIMS_SUB_CATEGORY_T Type
Details about the service subcategory associated with the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_sub_category_t FORCE AUTHID CURRENT_USER IS OBJECT (
sub_category_key varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_sub_category_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_sub_category_t (
sub_category_key varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the service subcategory. |
|
(optional) The name of the service subcategory. For example, `Backup Count` or `Custom Image Count`. |
DBMS_CLOUD_OCI_CIMS_ISSUE_TYPE_T Type
Details about the issue type associated with the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_issue_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
issue_type_key varchar2(32767),
label varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_issue_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_issue_type_t (
issue_type_key varchar2,
label varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the issue type. |
|
(optional) The label for the issue type. For example, `Instance Performance`. |
|
(optional) The URL for the contextual documentation. |
DBMS_CLOUD_OCI_CIMS_ITEM_T Type
Details about the item object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
item_key varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_item_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_item_t (
item_key varchar2,
name varchar2,
l_type varchar2,
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for the item. |
|
(optional) The display name of the item. Avoid entering confidential information. |
|
(optional) The type of the item. |
|
(optional) |
|
(optional) |
|
(optional) |
DBMS_CLOUD_OCI_CIMS_ACCOUNT_ITEM_T Type
Details about the AccountItem object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_account_item_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_item_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_account_item_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_account_item_t (
item_key varchar2,
name varchar2,
l_type varchar2,
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_account_item_t
is a subtype of the dbms_cloud_oci_cims_item_t
type.
DBMS_CLOUD_OCI_CIMS_ACTIVITY_ITEM_T Type
Details about the ActivityItem object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_activity_item_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_item_t (
comments varchar2(32767),
time_created number,
time_updated number,
activity_type varchar2(32767),
activity_author varchar2(32767),
item_type varchar2(32767),
item_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_activity_item_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_activity_item_t (
item_key varchar2,
name varchar2,
l_type varchar2,
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t,
comments varchar2,
time_created number,
time_updated number,
activity_type varchar2,
activity_author varchar2,
item_type varchar2,
item_status varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_activity_item_t
is a subtype of the dbms_cloud_oci_cims_item_t
type.
Fields
Field | Description |
---|---|
|
(required) Comments added with the activity on the support ticket. |
|
(required) The time when the activity was created, in milliseconds since epoch time. |
|
(required) The time when the activity was updated, in milliseconds since epoch time. |
|
(required) The type of activity occuring on the support ticket. Allowed values are: 'NOTES', 'PROBLEM_DESCRIPTION', 'UPDATE', 'CLOSE', 'REOPEN' |
|
(required) Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) Allowed values are: 'ATTACHMENTS', 'COMMENTS' |
|
(optional) Who updates the activity on the support ticket. Allowed values are: 'PROCESSING', 'ATTACHED', 'REMOVED', 'FAILED' |
DBMS_CLOUD_OCI_CIMS_ISSUE_TYPE_TBL Type
Nested table type of dbms_cloud_oci_cims_issue_type_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_issue_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_issue_type_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_CLASSIFIER_T Type
Details about the incident classifier object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_classifier_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
label varchar2(32767),
description varchar2(32767),
issue_type_list dbms_cloud_oci_cims_issue_type_tbl,
scope varchar2(32767),
unit varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_classifier_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_classifier_t (
id varchar2,
name varchar2,
label varchar2,
description varchar2,
issue_type_list dbms_cloud_oci_cims_issue_type_tbl,
scope varchar2,
unit varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier of the classifier. |
|
(optional) The display name of the classifier. |
|
(optional) The label associated with the classifier. |
|
(optional) The description of the classifier. |
|
(optional) The list of issues. |
|
(optional) The scope of the service category or resource. Allowed values are: 'AD', 'REGION', 'TENANCY', 'NONE' |
|
(optional) The unit to use to measure the service category or resource. Allowed values are: 'COUNT', 'GB', 'NONE' |
DBMS_CLOUD_OCI_CIMS_CONTACT_T Type
Contact details for the customer. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_contact_t FORCE AUTHID CURRENT_USER IS OBJECT (
contact_name varchar2(32767),
contact_email varchar2(32767),
email varchar2(32767),
contact_phone varchar2(32767),
contact_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contact_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contact_t (
contact_name varchar2,
contact_email varchar2,
email varchar2,
contact_phone varchar2,
contact_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The name of the contact person. |
|
(optional) The email of the contact person. |
|
(optional) The email of the contact person. |
|
(optional) The phone number of the contact person. |
|
(optional) The type of contact, such as primary or alternate. Allowed values are: 'PRIMARY', 'ALTERNATE', 'SECONDARY', 'ADMIN', 'MANAGER' |
DBMS_CLOUD_OCI_CIMS_CONTACT_TBL Type
Nested table type of dbms_cloud_oci_cims_contact_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_contact_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_contact_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_CONTACT_LIST_T Type
The list of contacts for the ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_contact_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
contact_list dbms_cloud_oci_cims_contact_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contact_list_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contact_list_t (
contact_list dbms_cloud_oci_cims_contact_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The list of contacts. |
DBMS_CLOUD_OCI_CIMS_CONTEXTUAL_DATA_T Type
Information collected from user context during ticket creation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_contextual_data_t FORCE AUTHID CURRENT_USER IS OBJECT (
client_id varchar2(32767),
schema_name varchar2(32767),
schema_version varchar2(32767),
payload varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contextual_data_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_contextual_data_t (
client_id varchar2,
schema_name varchar2,
schema_version varchar2,
payload varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier for the client. |
|
(required) The name assigned to the schema. |
|
(required) The version of the schema. |
|
(required) The payload for the contextual data. |
DBMS_CLOUD_OCI_CIMS_CREATE_CATEGORY_DETAILS_T Type
Details for creating the category of the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_category_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
category_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_category_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_category_details_t (
category_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the service category. |
DBMS_CLOUD_OCI_CIMS_CREATE_SUB_CATEGORY_DETAILS_T Type
Details for creating the service subcategory of the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_sub_category_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
sub_category_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_sub_category_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_sub_category_details_t (
sub_category_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the service subcategory. |
DBMS_CLOUD_OCI_CIMS_CREATE_ISSUE_TYPE_DETAILS_T Type
Details for creating the issue type of the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_issue_type_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
issue_type_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_issue_type_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_issue_type_details_t (
issue_type_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the issue type. |
DBMS_CLOUD_OCI_CIMS_CREATE_ITEM_DETAILS_T Type
Details gathered during ticket creation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_item_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
category dbms_cloud_oci_cims_create_category_details_t,
sub_category dbms_cloud_oci_cims_create_sub_category_details_t,
issue_type dbms_cloud_oci_cims_create_issue_type_details_t,
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_item_details_t (
l_type varchar2,
category dbms_cloud_oci_cims_create_category_details_t,
sub_category dbms_cloud_oci_cims_create_sub_category_details_t,
issue_type dbms_cloud_oci_cims_create_issue_type_details_t,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(optional) The type of the ticket. |
|
(optional) |
|
(optional) |
|
(optional) |
|
(optional) The display name of the ticket. Avoid entering confidential information. |
DBMS_CLOUD_OCI_CIMS_CREATE_ACCOUNT_ITEM_DETAILS_T Type
Details about the issue that the account support ticket relates to. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_account_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_create_item_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_account_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_account_item_details_t (
l_type varchar2,
category dbms_cloud_oci_cims_create_category_details_t,
sub_category dbms_cloud_oci_cims_create_sub_category_details_t,
issue_type dbms_cloud_oci_cims_create_issue_type_details_t,
name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_create_account_item_details_t
is a subtype of the dbms_cloud_oci_cims_create_item_details_t
type.
DBMS_CLOUD_OCI_CIMS_CREATE_RESOURCE_DETAILS_T Type
Details about the resource that the support ticket relates to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_resource_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
item dbms_cloud_oci_cims_create_item_details_t,
l_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_resource_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_resource_details_t (
item dbms_cloud_oci_cims_create_item_details_t,
l_region varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) The list of available Oracle Cloud Infrastructure regions. |
DBMS_CLOUD_OCI_CIMS_CREATE_RESOURCE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cims_create_resource_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_resource_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_create_resource_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_CREATE_TICKET_DETAILS_T Type
Details relevant to the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_ticket_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
severity varchar2(32767),
resource_list dbms_cloud_oci_cims_create_resource_details_tbl,
title varchar2(32767),
description varchar2(32767),
contextual_data dbms_cloud_oci_cims_contextual_data_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_ticket_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_ticket_details_t (
severity varchar2,
resource_list dbms_cloud_oci_cims_create_resource_details_tbl,
title varchar2,
description varchar2,
contextual_data dbms_cloud_oci_cims_contextual_data_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The severity of the support ticket. Allowed values are: 'HIGHEST', 'HIGH', 'MEDIUM', 'LOW' |
|
(optional) The list of resources. |
|
(required) The title of the support ticket. Avoid entering confidential information. |
|
(required) The description of the support ticket. Avoid entering confidential information. |
|
(optional) |
DBMS_CLOUD_OCI_CIMS_CREATE_INCIDENT_T Type
Details gathered during the creation of the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_incident_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
ticket dbms_cloud_oci_cims_create_ticket_details_t,
csi varchar2(32767),
problem_type varchar2(32767),
contacts dbms_cloud_oci_cims_contact_tbl,
referrer varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_incident_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_incident_t (
compartment_id varchar2,
ticket dbms_cloud_oci_cims_create_ticket_details_t,
csi varchar2,
problem_type varchar2,
contacts dbms_cloud_oci_cims_contact_tbl,
referrer varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the tenancy. |
|
(required) |
|
(optional) The Customer Support Identifier (CSI) number associated with the support account. The CSI is required for technical support tickets and optional for limits and billing tickets. |
|
(required) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
|
(optional) The list of contacts. |
|
(optional) The incident referrer. This value is often the URL that the customer used when creating the support ticket. |
DBMS_CLOUD_OCI_CIMS_CREATE_LIMIT_ITEM_DETAILS_T Type
Details about the service limit increase request. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_limit_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_create_item_details_t (
current_limit number,
current_usage number,
requested_limit number,
limit_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_limit_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_limit_item_details_t (
l_type varchar2,
category dbms_cloud_oci_cims_create_category_details_t,
sub_category dbms_cloud_oci_cims_create_sub_category_details_t,
issue_type dbms_cloud_oci_cims_create_issue_type_details_t,
name varchar2,
current_limit number,
current_usage number,
requested_limit number,
limit_status varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_create_limit_item_details_t
is a subtype of the dbms_cloud_oci_cims_create_item_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) The limit of the resource currently available. |
|
(optional) The current usage of the resource. |
|
(optional) The new service limit being requested. |
|
(optional) The current status of the request. Allowed values are: 'APPROVED', 'PARTIALLY_APPROVED', 'NOT_APPROVED' |
DBMS_CLOUD_OCI_CIMS_CREATE_TECH_SUPPORT_ITEM_DETAILS_T Type
Details about the issue that the technical support ticket relates to. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_tech_support_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_create_item_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_tech_support_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_tech_support_item_details_t (
l_type varchar2,
category dbms_cloud_oci_cims_create_category_details_t,
sub_category dbms_cloud_oci_cims_create_sub_category_details_t,
issue_type dbms_cloud_oci_cims_create_issue_type_details_t,
name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_create_tech_support_item_details_t
is a subtype of the dbms_cloud_oci_cims_create_item_details_t
type.
DBMS_CLOUD_OCI_CIMS_CREATE_USER_DETAILS_T Type
Details for creating a new user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_create_user_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
first_name varchar2(32767),
last_name varchar2(32767),
csi varchar2(32767),
phone varchar2(32767),
timezone varchar2(32767),
organization_name varchar2(32767),
problem_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_user_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_create_user_details_t (
compartment_id varchar2,
first_name varchar2,
last_name varchar2,
csi varchar2,
phone varchar2,
timezone varchar2,
organization_name varchar2,
problem_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the tenancy. |
|
(required) First name of the user. |
|
(required) Last name of the user. |
|
(required) CSI associated with the user. |
|
(required) Contact number of the user. |
|
(required) Timezone of the user. |
|
(required) Organization of the user. |
|
(required) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
DBMS_CLOUD_OCI_CIMS_ERROR_T Type
Details about an error that occurred.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A short error code that defines the error, meant for programmatic parsing. Allowed values are: 'CONTENT_EMPTY', 'CLIENT_EXCEPTION', 'INVALID_FORMAT', 'INVALID_JSON_INPUT', 'SSL_AUTHORIZATION', 'AUTH_FAILED', 'AUTHZ_FAILED', 'CSI_NOT_AUTHORIZED', 'USER_POLICY_NOT_AUTHORIZED', 'EMAIL_NOT_VERIFIED', 'EMAIL_NOT_FOUND', 'OCI_EMAIL_NOT_FOUND', 'MOS_EMAIL_NOT_FOUND', 'IDCS_EMAIL_NOT_VALID', 'INVALID_PATH', 'METHOD_NOT_ALLOWED', 'JSON_PROCESSING', 'GENERIC_EXCEPTION', 'EXTERNAL_SERVICE_PROVIDER_UNAVAILABLE', 'EXTERNAL_SERVICE_PROVIDER_TIMEOUT', 'TOO_MANY_REQUESTS', 'IDP_SCIM_NOT_SETUP', 'INCIDENT_NOT_FOUND', 'INVALID_USER_CSI', 'DATA_ALREADY_EXISTS', 'AUTH_USER_NOT_MATCHING', 'CONTACT_NOT_APPROVED', 'CREATE_PROFILE_MOS_FAILURE', 'CREATE_PROFILE_CREATE_OSSO_FAILURE', 'CREATE_PROFILE_IDENTITY_FAILURE', 'CREATE_PROFILE_VERIFY_OSSO_FAILURE', 'PROFILE_ACCOUNT_NOT_VERIFIED', 'SUPPORT_ACCOUNT_NOT_FOUND', 'SUPPORT_ACCOUNT_PENDING_CSI_APPROVAL', 'FREE_TIER_CUSTOMER_SLI_UNSUPPORTED', 'PROFILE_ACCOUNT_VERIFIED', 'PROFILE_VERIFIED_CSI_REQUEST_PENDING', 'PROFILE_VERIFIED_CSI_REQUEST_NOT_FOUND', 'CREATE_PROFILE_ORGANIZATION_NAME_INVALID', 'CREATE_PROFILE_EMAIL_INVALID' |
|
(required) A human-readable error string. |
DBMS_CLOUD_OCI_CIMS_TENANCY_INFORMATION_T Type
Details about the tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_tenancy_information_t FORCE AUTHID CURRENT_USER IS OBJECT (
customer_support_key varchar2(32767),
tenancy_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_tenancy_information_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_tenancy_information_t (
customer_support_key varchar2,
tenancy_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The Customer Support Identifier (CSI) number associated with the tenancy. |
|
(required) The OCID of the tenancy. |
DBMS_CLOUD_OCI_CIMS_RESOURCE_T Type
Details about the ticket item object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
item dbms_cloud_oci_cims_item_t,
l_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_resource_t (
item dbms_cloud_oci_cims_item_t,
l_region varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) The list of available Oracle Cloud Infrastructure regions. |
DBMS_CLOUD_OCI_CIMS_RESOURCE_TBL Type
Nested table type of dbms_cloud_oci_cims_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_TICKET_T Type
Details about the ticket created.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_ticket_t FORCE AUTHID CURRENT_USER IS OBJECT (
ticket_number varchar2(32767),
severity varchar2(32767),
resource_list dbms_cloud_oci_cims_resource_tbl,
title varchar2(32767),
description varchar2(32767),
time_created number,
time_updated number,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_ticket_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_ticket_t (
ticket_number varchar2,
severity varchar2,
resource_list dbms_cloud_oci_cims_resource_tbl,
title varchar2,
description varchar2,
time_created number,
time_updated number,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the ticket. |
|
(required) The severity assigned to the ticket. Allowed values are: 'HIGHEST', 'HIGH', 'MEDIUM', 'LOW' |
|
(optional) The list of resources associated with the ticket. |
|
(required) The title of the ticket. |
|
(required) The description of the issue addressed in the ticket. |
|
(optional) The time when the ticket was created, in milliseconds since epoch time. |
|
(optional) The time when the ticket was updated, in milliseconds since epoch time. |
|
(optional) The current state of the ticket. Allowed values are: 'ACTIVE', 'CLOSED' |
|
(optional) Additional information about the current `lifecycleState`. Allowed values are: 'PENDING_WITH_ORACLE', 'PENDING_WITH_CUSTOMER', 'CLOSE_REQUESTED', 'CLOSED' |
DBMS_CLOUD_OCI_CIMS_CLASSIFIER_TBL Type
Nested table type of dbms_cloud_oci_cims_classifier_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_classifier_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_classifier_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_INCIDENT_TYPE_T Type
Details about the incident type associated with the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
label varchar2(32767),
description varchar2(32767),
classifier_list dbms_cloud_oci_cims_classifier_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_type_t (
id varchar2,
name varchar2,
label varchar2,
description varchar2,
classifier_list dbms_cloud_oci_cims_classifier_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Unique identifier for the incident type. |
|
(optional) The name of the incident type. |
|
(optional) The label associated with the incident type. |
|
(optional) The description of the incident type. |
|
(optional) The list of classifiers. |
DBMS_CLOUD_OCI_CIMS_INCIDENT_T Type
Details about the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
compartment_id varchar2(32767),
contact_list dbms_cloud_oci_cims_contact_list_t,
tenancy_information dbms_cloud_oci_cims_tenancy_information_t,
ticket dbms_cloud_oci_cims_ticket_t,
incident_type dbms_cloud_oci_cims_incident_type_t,
problem_type varchar2(32767),
referrer varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_t (
key varchar2,
compartment_id varchar2,
contact_list dbms_cloud_oci_cims_contact_list_t,
tenancy_information dbms_cloud_oci_cims_tenancy_information_t,
ticket dbms_cloud_oci_cims_ticket_t,
incident_type dbms_cloud_oci_cims_incident_type_t,
problem_type varchar2,
referrer varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for the support ticket. |
|
(optional) The OCID of the tenancy. |
|
(optional) |
|
(optional) |
|
(optional) |
|
(optional) |
|
(optional) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
|
(optional) The incident referrer. This value is often the URL that the customer used when creating the support ticket. |
DBMS_CLOUD_OCI_CIMS_SERVICE_CATEGORY_T Type
Information about the support ticket classifier.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_service_category_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
name varchar2(32767),
label varchar2(32767),
description varchar2(32767),
issue_type_list dbms_cloud_oci_cims_issue_type_tbl,
scope varchar2(32767),
unit varchar2(32767),
limit_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_service_category_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_service_category_t (
key varchar2,
name varchar2,
label varchar2,
description varchar2,
issue_type_list dbms_cloud_oci_cims_issue_type_tbl,
scope varchar2,
unit varchar2,
limit_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The unique ID that identifies a classifier. |
|
(optional) The name of the classifier. |
|
(optional) The label for the classifier. |
|
(optional) The text describing the classifier. |
|
(optional) The list of issues. |
|
(optional) The scope of the incident. Allowed values are: 'AD', 'REGION', 'TENANCY', 'NONE' |
|
(optional) The unit to use to measure the service category or resource. Allowed values are: 'COUNT', 'GB', 'NONE' |
|
(optional) The unique ID for the limit. |
DBMS_CLOUD_OCI_CIMS_SERVICE_CATEGORIES_T Type
List of Service Categories of a Service for MOS Taxonomy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_service_categories_t FORCE AUTHID CURRENT_USER IS OBJECT (
service_category json_element_t,
schema varchar2(32767),
issue_type json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_service_categories_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_service_categories_t (
service_category json_element_t,
schema varchar2,
issue_type json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Service Category list. |
|
(optional) Schema of a Service Category. |
|
(optional) Issue type list. |
DBMS_CLOUD_OCI_CIMS_SERVICE_CATEGORY_TBL Type
Nested table type of dbms_cloud_oci_cims_service_category_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_service_category_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_service_category_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_SERVICE_CATEGORIES_TBL Type
Nested table type of dbms_cloud_oci_cims_service_categories_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_service_categories_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_service_categories_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CIMS_INCIDENT_RESOURCE_TYPE_T Type
Details about the resource associated with the support request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_resource_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_type_key varchar2(32767),
name varchar2(32767),
label varchar2(32767),
description varchar2(32767),
service_category_list dbms_cloud_oci_cims_service_category_tbl,
service json_element_t,
service_categories dbms_cloud_oci_cims_service_categories_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_resource_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_resource_type_t (
resource_type_key varchar2,
name varchar2,
label varchar2,
description varchar2,
service_category_list dbms_cloud_oci_cims_service_category_tbl,
service json_element_t,
service_categories dbms_cloud_oci_cims_service_categories_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) A unique identifier for the resource. |
|
(optional) The display name of the resource. |
|
(required) The label associated with the resource. |
|
(optional) The description of the resource. |
|
(optional) The service category list. |
|
(optional) The map of services for MOS Taxonomy. |
|
(optional) The service categories list for MOS Taxonomy. |
DBMS_CLOUD_OCI_CIMS_INCIDENT_SUMMARY_T Type
Details about the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
compartment_id varchar2(32767),
contact_list dbms_cloud_oci_cims_contact_list_t,
tenancy_information dbms_cloud_oci_cims_tenancy_information_t,
ticket dbms_cloud_oci_cims_ticket_t,
incident_type dbms_cloud_oci_cims_incident_resource_type_t,
problem_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_incident_summary_t (
key varchar2,
compartment_id varchar2,
contact_list dbms_cloud_oci_cims_contact_list_t,
tenancy_information dbms_cloud_oci_cims_tenancy_information_t,
ticket dbms_cloud_oci_cims_ticket_t,
incident_type dbms_cloud_oci_cims_incident_resource_type_t,
problem_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier of the incident. |
|
(optional) The OCID of the tenancy. |
|
(optional) |
|
(optional) |
|
(optional) |
|
(optional) |
|
(required) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
DBMS_CLOUD_OCI_CIMS_LIMIT_ITEM_T Type
Details about the LimitItem object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_limit_item_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_item_t (
current_limit number,
current_usage number,
requested_limit number,
limit_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_limit_item_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_limit_item_t (
item_key varchar2,
name varchar2,
l_type varchar2,
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t,
current_limit number,
current_usage number,
requested_limit number,
limit_status varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_limit_item_t
is a subtype of the dbms_cloud_oci_cims_item_t
type.
Fields
Field | Description |
---|---|
|
(optional) The current service limit for the resource. |
|
(optional) The current resource usage. |
|
(optional) The new service limit being requested for the resource. |
|
(optional) The status of the request. Allowed values are: 'APPROVED', 'PARTIALLY_APPROVED', 'NOT_APPROVED' |
DBMS_CLOUD_OCI_CIMS_STATUS_T Type
Details about the status of the support ticket.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_status_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The code unique to this ticket status. |
|
(required) The status message for this ticket. |
DBMS_CLOUD_OCI_CIMS_TECH_SUPPORT_ITEM_T Type
Details about the TechSupportItem object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_tech_support_item_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_item_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_tech_support_item_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_tech_support_item_t (
item_key varchar2,
name varchar2,
l_type varchar2,
category dbms_cloud_oci_cims_category_t,
sub_category dbms_cloud_oci_cims_sub_category_t,
issue_type dbms_cloud_oci_cims_issue_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_tech_support_item_t
is a subtype of the dbms_cloud_oci_cims_item_t
type.
DBMS_CLOUD_OCI_CIMS_UPDATE_ITEM_DETAILS_T Type
Details for updating an item.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_update_item_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_item_details_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(optional) The type of the ticket. |
DBMS_CLOUD_OCI_CIMS_UPDATE_ACTIVITY_ITEM_DETAILS_T Type
Details for updating the support ticket activity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_update_activity_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cims_update_item_details_t (
comments varchar2(32767),
activity_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_activity_item_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_activity_item_details_t (
l_type varchar2,
comments varchar2,
activity_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cims_update_activity_item_details_t
is a subtype of the dbms_cloud_oci_cims_update_item_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) Comments updated at the time that the activity occurs. |
|
(optional) The type of activity occurring. Allowed values are: 'NOTES', 'PROBLEM_DESCRIPTION', 'UPDATE', 'CLOSE', 'REOPEN' |
DBMS_CLOUD_OCI_CIMS_UPDATE_TICKET_DETAILS_T Type
Details about the ticket updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_update_ticket_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_resource json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_ticket_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_ticket_details_t (
l_resource json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The list of resources. |
DBMS_CLOUD_OCI_CIMS_UPDATE_INCIDENT_T Type
Details about the support ticket being updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_update_incident_t FORCE AUTHID CURRENT_USER IS OBJECT (
ticket dbms_cloud_oci_cims_update_ticket_details_t,
problem_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_incident_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_incident_t (
ticket dbms_cloud_oci_cims_update_ticket_details_t,
problem_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) |
|
(optional) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
DBMS_CLOUD_OCI_CIMS_UPDATE_RESOURCE_DETAILS_T Type
Details about updates to the resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_update_resource_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
item dbms_cloud_oci_cims_update_item_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_resource_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_update_resource_details_t (
item dbms_cloud_oci_cims_update_item_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
DBMS_CLOUD_OCI_CIMS_USER_T Type
Details about the user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_user_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
first_name varchar2(32767),
last_name varchar2(32767),
country varchar2(32767),
csi varchar2(32767),
phone varchar2(32767),
timezone varchar2(32767),
organization_name varchar2(32767),
compartment_id varchar2(32767),
contact_email varchar2(32767),
problem_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_user_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_user_t (
key varchar2,
first_name varchar2,
last_name varchar2,
country varchar2,
csi varchar2,
phone varchar2,
timezone varchar2,
organization_name varchar2,
compartment_id varchar2,
contact_email varchar2,
problem_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A unique identifier for the user. |
|
(optional) The user's first name. |
|
(optional) The user's last name. |
|
(optional) The country of the user. |
|
(optional) The CSI associated with the user. |
|
(optional) The user's contact phone number. |
|
(optional) The timezone of the user. |
|
(optional) The company that the user belongs to. |
|
(optional) The OCID of the tenancy. |
|
(optional) The email of the contact person. |
|
(optional) The kind of support ticket, such as a technical support request or a limit increase request. Allowed values are: 'LIMIT', 'LEGACY_LIMIT', 'TECH', 'ACCOUNT', 'TAXONOMY' |
DBMS_CLOUD_OCI_CIMS_VALIDATION_RESPONSE_T Type
The validation response returned when checking whether the requested user is valid.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_validation_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_valid_user number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_validation_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cims_validation_response_t (
is_valid_user number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Boolean value that indicates whether the requested user is valid. |