(optional) Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called \"fields\" of type array, and usecollectionFormat
opc_request_id
(optional) Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
region
(optional) OCI region id. e.g us-phoenix-1 for US West (Phoenix).
endpoint
(optional) The endpoint of the service to call using this function. e.g https://identity.{region}.oci.{secondLevelDomain}.If both endpoint and region are given, then endpoint takes precedence.
credential_name
(optional) The name of the credential for authenticating with the corresponding cloud native API.
LIST_SUBSCRIBED_SERVICES Function 🔗
This list API returns all subscribed services for given Subscription ID
Syntax
FUNCTION list_subscribed_services (
compartment_id varchar2,
subscription_id varchar2,
order_line_id number DEFAULT NULL,
status varchar2 DEFAULT NULL,
limit number DEFAULT NULL,
page varchar2 DEFAULT NULL,
sort_order varchar2 DEFAULT NULL,
sort_by varchar2 DEFAULT NULL,
opc_request_id varchar2 DEFAULT NULL,
region varchar2 DEFAULT NULL,
endpoint varchar2 DEFAULT NULL,
credential_name varchar2 DEFAULT NULL
) RETURN dbms_cloud_oci_os_subscribed_service_list_subscribed_services_response_t;
Parameters
Parameter
Description
compartment_id
(required) The OCID of the root compartment.
subscription_id
(required) Line level Subscription Id
order_line_id
(optional) Order Line identifier at subscribed service level . This identifier is originated in Order Management module. Default is null.
status
(optional) This param is used to filter subscribed services based on its status
limit
(optional) The maximum number of items to return in a paginated \"List\" call. Default: (`50`) Example: '500'
page
(optional) The value of the 'opc-next-page' response header from the previous \"List\" call.
sort_order
(optional) The sort order to use, either ascending ('ASC') or descending ('DESC').
Allowed values are: 'ASC', 'DESC'
sort_by
(optional) The field to sort by. You can provide one sort order ('sortOrder').
(optional) Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
region
(optional) OCI region id. e.g us-phoenix-1 for US West (Phoenix).
endpoint
(optional) The endpoint of the service to call using this function. e.g https://identity.{region}.oci.{secondLevelDomain}.If both endpoint and region are given, then endpoint takes precedence.
credential_name
(optional) The name of the credential for authenticating with the corresponding cloud native API.