DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_PROPERTY_T Type 🔗
A generic property that might be associated with the affected resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_property_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_property_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_property_t (
name varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the property.
value
(required) The value of the property.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_PROPERTY_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_property_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_property_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_property_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_AFFECTED_RESOURCE_T Type 🔗
The resource affected by the event described in the announcement.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_affected_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_id varchar2(32767),
resource_name varchar2(32767),
l_region varchar2(32767),
additional_properties dbms_cloud_oci_announcements_service_property_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_affected_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_affected_resource_t (
resource_id varchar2,
resource_name varchar2,
l_region varchar2,
additional_properties dbms_cloud_oci_announcements_service_property_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
resource_id
(required) The OCID of the affected resource.
resource_name
(required) The friendly name of the resource.
l_region
(required) The region where the affected resource exists.
additional_properties
(optional) Additional properties associated with the resource.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_BASE_ANNOUNCEMENT_T Type 🔗
Incident information that forms the basis of an announcement. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_base_announcement_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
l_type varchar2(32767),
reference_ticket_number varchar2(32767),
summary varchar2(32767),
time_one_title varchar2(32767),
time_one_type varchar2(32767),
time_one_value timestamp with time zone,
time_two_title varchar2(32767),
time_two_type varchar2(32767),
time_two_value timestamp with time zone,
services dbms_cloud_oci_announcements_service_varchar2_tbl,
affected_regions dbms_cloud_oci_announcements_service_varchar2_tbl,
announcement_type varchar2(32767),
lifecycle_state varchar2(32767),
is_banner number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
environment_name varchar2(32767),
platform_type varchar2(32767),
chain_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_announcement_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_announcement_t (
id varchar2,
l_type varchar2,
reference_ticket_number varchar2,
summary varchar2,
time_one_title varchar2,
time_one_type varchar2,
time_one_value timestamp with time zone,
time_two_title varchar2,
time_two_type varchar2,
time_two_value timestamp with time zone,
services dbms_cloud_oci_announcements_service_varchar2_tbl,
affected_regions dbms_cloud_oci_announcements_service_varchar2_tbl,
announcement_type varchar2,
lifecycle_state varchar2,
is_banner number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
environment_name varchar2,
platform_type varchar2,
chain_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
id
(required) The OCID of the announcement.
l_type
(required) The entity type, which is either an announcement or the summary representation of an announcement.
reference_ticket_number
(required) The reference Jira ticket number.
summary
(required) A summary of the issue. A summary might appear in the console banner view of the announcement or in an email subject line. Avoid entering confidential information.
time_one_title
(optional) The label associated with an initial time value. Example: `Time Started`
time_one_type
(optional) The type of a time associated with an initial time value. If the `timeOneTitle` attribute is present, then the `timeOneTitle` attribute contains a label of `timeOneType` in English. Example: `START_TIME`
(optional) The actual value of the first time value for the event. Typically, this denotes the time an event started, but the meaning can vary, depending on the announcement type. The `timeOneType` attribute describes the meaning.
time_two_title
(optional) The label associated with a second time value. Example: `Time Ended`
time_two_type
(optional) The type of a time associated with second time value. If the `timeTwoTitle` attribute is present, then the `timeTwoTitle` attribute contains a label of `timeTwoType` in English. Example: `END_TIME`
(optional) The actual value of the second time value. Typically, this denotes the time an event ended, but the meaning can vary, depending on the announcement type. The `timeTwoType` attribute describes the meaning.
(required) The current lifecycle state of the announcement.
Allowed values are: 'ACTIVE', 'INACTIVE'
is_banner
(required) Whether the announcement is displayed as a banner in the console.
time_created
(optional) The date and time the announcement was created, expressed in RFC 3339 timestamp format. Example: `2019-01-01T17:43:01.389+0000`
time_updated
(optional) The date and time the announcement was last updated, expressed in RFC 3339 timestamp format. Example: `2019-01-01T17:43:01.389+0000`
environment_name
(optional) The name of the environment that this announcement pertains to.
platform_type
(optional) The platform type that this announcement pertains to.
Allowed values are: 'IAAS', 'SAAS'
chain_id
(optional) The sequence of connected announcements, or announcement chain, that this announcement belongs to. Related announcements share the same chain ID.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_AFFECTED_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_affected_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_affected_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_affected_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_T Type 🔗
A message about an impactful operational event.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_announcement_t (
description varchar2(32767),
additional_information varchar2(32767),
affected_resources dbms_cloud_oci_announcements_service_affected_resource_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_t (
id varchar2,
l_type varchar2,
reference_ticket_number varchar2,
summary varchar2,
time_one_title varchar2,
time_one_type varchar2,
time_one_value timestamp with time zone,
time_two_title varchar2,
time_two_type varchar2,
time_two_value timestamp with time zone,
services dbms_cloud_oci_announcements_service_varchar2_tbl,
affected_regions dbms_cloud_oci_announcements_service_varchar2_tbl,
announcement_type varchar2,
lifecycle_state varchar2,
is_banner number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
environment_name varchar2,
platform_type varchar2,
chain_id varchar2,
description varchar2,
additional_information varchar2,
affected_resources dbms_cloud_oci_announcements_service_affected_resource_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_announcement_t is a subtype of the dbms_cloud_oci_announcements_service_base_announcement_t type.
Fields
Field
Description
description
(optional) A detailed explanation of the event, expressed by using Markdown language. Avoid entering confidential information.
additional_information
(optional) Additional information about the event, expressed by using Markdown language and included in the details view of an announcement. Additional information might include remediation steps or answers to frequently asked questions. Avoid entering confidential information.
affected_resources
(optional) The list of resources, if any, affected by the event described in the announcement.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_FILTER_T Type 🔗
Criteria that the Announcements service uses to match announcements so it can provide only desired announcements to subscribers.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_filter_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_t (
l_type varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(required) The type of filter. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_FILTER_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_filter_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_filter_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_filter_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_FILTER_GROUP_T Type 🔗
A group of filters to match announcements against.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_filter_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
filters dbms_cloud_oci_announcements_service_filter_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_group_t (
name varchar2,
filters dbms_cloud_oci_announcements_service_filter_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
filters
(required) A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUBSCRIPTION_T Type 🔗
A subscription with the Announcements service to receive selected announcements in the format and delivery mechanisms supported by a corresponding topic endpoint configured in the Oracle Cloud Infrastructure Notifications service.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_subscription_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
ons_topic_id varchar2(32767),
filter_groups json_element_t,
preferred_language varchar2(32767),
preferred_time_zone varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
ons_topic_id varchar2,
filter_groups json_element_t,
preferred_language varchar2,
preferred_time_zone varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the announcement subscription.
display_name
(required) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
description
(optional) A description of the announcement subscription. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment that contains the announcement subscription.
time_created
(required) The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
time_updated
(optional) The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
lifecycle_state
(required) The current lifecycle state of the announcement subscription.
Allowed values are: 'ACTIVE', 'DELETED', 'FAILED'
lifecycle_details
(optional) A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
ons_topic_id
(required) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription.
filter_groups
(optional) A list of filter groups for the announcement subscription. A filter group is a combination of multiple filters applied to announcements for matching purposes.
preferred_language
(optional) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
preferred_time_zone
(optional) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUBSCRIPTION_SUMMARY_T Type 🔗
A summary representation of an announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_subscription_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
ons_topic_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
ons_topic_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the announcement subscription.
display_name
(required) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment that contains the announcement subscription.
time_created
(required) The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
time_updated
(optional) The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
lifecycle_state
(required) The current lifecycle state of the announcement subscription.
lifecycle_details
(optional) A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
ons_topic_id
(required) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription.
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUBSCRIPTION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_announcement_subscription_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_subscription_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_announcement_subscription_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUBSCRIPTION_COLLECTION_T Type 🔗
The results of a search for announcement subscriptions. This object contains both announcement subscription summary objects and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_subscription_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_announcements_service_announcement_subscription_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_subscription_collection_t (
items dbms_cloud_oci_announcements_service_announcement_subscription_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of announcement subscriptions.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUMMARY_T Type 🔗
A summary representation of an announcement.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_announcement_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_summary_t (
id varchar2,
l_type varchar2,
reference_ticket_number varchar2,
summary varchar2,
time_one_title varchar2,
time_one_type varchar2,
time_one_value timestamp with time zone,
time_two_title varchar2,
time_two_type varchar2,
time_two_value timestamp with time zone,
services dbms_cloud_oci_announcements_service_varchar2_tbl,
affected_regions dbms_cloud_oci_announcements_service_varchar2_tbl,
announcement_type varchar2,
lifecycle_state varchar2,
is_banner number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
environment_name varchar2,
platform_type varchar2,
chain_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_announcement_summary_t is a subtype of the dbms_cloud_oci_announcements_service_base_announcement_t type.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_USER_STATUS_DETAILS_T Type 🔗
An announcement's status regarding whether it has been acknowledged by a user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_user_status_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
user_status_announcement_id varchar2(32767),
user_id varchar2(32767),
time_acknowledged timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_user_status_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcement_user_status_details_t (
user_status_announcement_id varchar2,
user_id varchar2,
time_acknowledged timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
user_status_announcement_id
(required) The OCID of the announcement that this status is associated with.
user_id
(required) The OCID of the user that this status is associated with.
time_acknowledged
(optional) The date and time the announcement was acknowledged, expressed in RFC 3339 timestamp format. Example: `2019-01-01T17:43:01.389+0000`
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_announcement_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_announcement_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENT_USER_STATUS_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_announcements_service_announcement_user_status_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcement_user_status_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_announcements_service_announcement_user_status_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENTS_COLLECTION_T Type 🔗
A list of announcements that match filter criteria, if any. Results contain both the announcements and the user-specific status of the announcements.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcements_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_announcements_service_announcement_summary_tbl,
user_statuses dbms_cloud_oci_announcements_service_announcement_user_status_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_collection_t (
items dbms_cloud_oci_announcements_service_announcement_summary_tbl,
user_statuses dbms_cloud_oci_announcements_service_announcement_user_status_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional) A collection of announcements.
user_statuses
(optional) The user-specific status for found announcements.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_BASE_ANNOUNCEMENTS_PREFERENCES_T Type 🔗
The object that contains the announcement email preferences configured for the tenancy (root compartment).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_base_announcements_preferences_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
compartment_id varchar2(32767),
id varchar2(32767),
is_unsubscribed number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
preference_type varchar2(32767),
preferred_time_zone varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_announcements_preferences_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_announcements_preferences_t (
l_type varchar2,
compartment_id varchar2,
id varchar2,
is_unsubscribed number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The entity type, which specifies either an object or a summary object for announcement email preferences.
compartment_id
(optional) The OCID of the compartment for which the email preferences apply. Because announcements are specific to a tenancy, specify the tenancy by providing the root compartment OCID.
id
(optional) The ID of the preferences.
is_unsubscribed
(optional) A Boolean value to indicate whether the specified compartment chooses to not to receive informational announcements by email. (Manage preferences for receiving announcements by email by specifying the `preferenceType` attribute instead.)
time_created
(optional) When the preferences were set initially.
time_updated
(optional) When the preferences were last updated.
preference_type
(optional) The string representing the user's preference regarding receiving announcements by email.
preferred_time_zone
(optional) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENTS_PREFERENCES_T Type 🔗
The object for announcement email preferences.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcements_preferences_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_announcements_preferences_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_preferences_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_preferences_t (
l_type varchar2,
compartment_id varchar2,
id varchar2,
is_unsubscribed number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_announcements_preferences_t is a subtype of the dbms_cloud_oci_announcements_service_base_announcements_preferences_t type.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ANNOUNCEMENTS_PREFERENCES_SUMMARY_T Type 🔗
The summary object for announcement email preferences.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_announcements_preferences_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_announcements_preferences_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_preferences_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_announcements_preferences_summary_t (
l_type varchar2,
compartment_id varchar2,
id varchar2,
is_unsubscribed number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_announcements_preferences_summary_t is a subtype of the dbms_cloud_oci_announcements_service_base_announcements_preferences_t type.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_BASE_CREATE_ANNOUNCEMENTS_PREFERENCES_DETAILS_T Type 🔗
The model for the parameters of announcement email preferences configured for the tenancy (root compartment).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
is_unsubscribed number,
compartment_id varchar2(32767),
preference_type varchar2(32767),
preferred_time_zone varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t (
l_type varchar2,
is_unsubscribed number,
compartment_id varchar2,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The entity type, which specifies a model that either creates new announcement email preferences or updates existing preferences.
is_unsubscribed
(optional) A Boolean value to indicate whether the specified compartment chooses to not to receive informational announcements by email. (Manage preferences for receiving announcements by email by specifying the `preferenceType` attribute instead.)
compartment_id
(optional) The OCID of the compartment for which you want to manage announcement email preferences. (Specify the tenancy by providing the root compartment OCID.)
preference_type
(required) The string representing the user's preference, whether to opt in to only required announcements, to opt in to all announcements, including informational announcements, or to opt out of all announcements.
(optional) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_CHANGE_ANNOUNCEMENT_SUBSCRIPTION_COMPARTMENT_DETAILS_T Type 🔗
The details of the request to change the compartment of the announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_change_announcement_subscription_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_change_announcement_subscription_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_change_announcement_subscription_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which you want to move the announcement subscription.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_FILTER_GROUP_DETAILS_T Type 🔗
The details of a group of filters to match announcements against. A filter group combines one or more individual filters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_filter_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
filters dbms_cloud_oci_announcements_service_filter_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_filter_group_details_t (
filters dbms_cloud_oci_announcements_service_filter_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
filters
(required) A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_CREATE_ANNOUNCEMENT_SUBSCRIPTION_DETAILS_T Type 🔗
The details for creating a new announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_create_announcement_subscription_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
ons_topic_id varchar2(32767),
filter_groups json_element_t,
preferred_language varchar2(32767),
preferred_time_zone varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_announcement_subscription_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_announcement_subscription_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
ons_topic_id varchar2,
filter_groups json_element_t,
preferred_language varchar2,
preferred_time_zone varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
description
(optional) A description of the announcement subscription. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment where you want to create the announcement subscription.
ons_topic_id
(required) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
filter_groups
(optional) A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
preferred_language
(optional) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
preferred_time_zone
(optional) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_CREATE_ANNOUNCEMENTS_PREFERENCES_DETAILS_T Type 🔗
The object used to create announcement email preferences.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_create_announcements_preferences_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_announcements_preferences_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_announcements_preferences_details_t (
l_type varchar2,
is_unsubscribed number,
compartment_id varchar2,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_create_announcements_preferences_details_t is a subtype of the dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t type.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_CREATE_FILTER_GROUP_DETAILS_T Type 🔗
The details for creating a new filter group for an announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_create_filter_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
filters dbms_cloud_oci_announcements_service_filter_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_filter_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_create_filter_group_details_t (
name varchar2,
filters dbms_cloud_oci_announcements_service_filter_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the filter group. The name must be unique and it cannot be changed. Avoid entering confidential information.
filters
(required) A list of filters against which the Announcements service will match announcements. You cannot have more than one of any given filter type within a filter group.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_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.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_UPDATE_ANNOUNCEMENT_SUBSCRIPTION_DETAILS_T Type 🔗
The details for updating an announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_update_announcement_subscription_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
ons_topic_id varchar2(32767),
preferred_language varchar2(32767),
preferred_time_zone varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_announcement_subscription_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_announcement_subscription_details_t (
display_name varchar2,
description varchar2,
ons_topic_id varchar2,
preferred_language varchar2,
preferred_time_zone varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
description
(optional) A description of the announcement subscription. Avoid entering confidential information.
ons_topic_id
(optional) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
preferred_language
(optional) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
preferred_time_zone
(optional) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_UPDATE_ANNOUNCEMENTS_PREFERENCES_DETAILS_T Type 🔗
The object used to update announcement email preferences.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_update_announcements_preferences_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_announcements_preferences_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_announcements_preferences_details_t (
l_type varchar2,
is_unsubscribed number,
compartment_id varchar2,
preference_type varchar2,
preferred_time_zone varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_announcements_service_update_announcements_preferences_details_t is a subtype of the dbms_cloud_oci_announcements_service_base_create_announcements_preferences_details_t type.
DBMS_CLOUD_OCI_ANNOUNCEMENTS_SERVICE_UPDATE_FILTER_GROUP_DETAILS_T Type 🔗
The details for updating a filter group in an announcement subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_announcements_service_update_filter_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
filters dbms_cloud_oci_announcements_service_filter_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_filter_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_announcements_service_update_filter_group_details_t (
filters dbms_cloud_oci_announcements_service_filter_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
filters
(required) A list of filters against which the Announcements service will match announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.