License Manager Common Types
DBMS_CLOUD_OCI_LICENSE_MANAGER_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_CELL_INFO_T Type
Error information corresponding to each column that was required but was invalid.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_cell_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
column_index varchar2(32767),
error_info varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_cell_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_cell_info_t (
column_index varchar2,
error_info varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Column index as in the given bulk upload file. |
|
(required) Error information corresponding to a particular column. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_FAILED_RECORD_INFO_T Type
Error information for a valid license record that could not be uploaded.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
row_number number,
product_name varchar2(32767),
error varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_t (
row_number number,
product_name varchar2,
error varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Refers to the license record number as provided in the bulk upload file. |
|
(required) Product name of the failed row. |
|
(required) Failed license record error information. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_LICENSE_RECORDS_DETAILS_T Type
Details required for bulk uploading of license records.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_license_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
file_name varchar2(32767),
file_content varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_license_records_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_license_records_details_t (
compartment_id varchar2,
file_name varchar2,
file_content varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The compartment OCID where license records are created. |
|
(required) Name of the file that is being uploaded. |
|
(required) The file to be uploaded. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_CELL_INFO_TBL Type
Nested table type of dbms_cloud_oci_license_manager_bulk_upload_cell_info_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_cell_info_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_bulk_upload_cell_info_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_VALIDATION_ERROR_INFO_T Type
Detailed error information corresponding to each column for a particular supported license record that could not be uploaded.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
row_number number,
product_name varchar2(32767),
row_error dbms_cloud_oci_license_manager_bulk_upload_cell_info_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_t (
row_number number,
product_name varchar2,
row_error dbms_cloud_oci_license_manager_bulk_upload_cell_info_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Refers to the license record number as provided in the bulk upload file. |
|
(required) Product name of invalid row. |
|
(required) Error information corresponding to each column. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_VALIDATION_ERROR_INFO_TBL Type
Nested table type of dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_FAILED_RECORD_INFO_TBL Type
Nested table type of dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_RESPONSE_T Type
The bulk upload response.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_supported_records number,
total_supported_records_saved number,
total_supported_duplicate_records number,
total_supported_failed_license_records number,
total_supported_invalid_records number,
validation_error_info dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_tbl,
failed_license_record_info dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_tbl,
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_response_t (
total_supported_records number,
total_supported_records_saved number,
total_supported_duplicate_records number,
total_supported_failed_license_records number,
total_supported_invalid_records number,
validation_error_info dbms_cloud_oci_license_manager_bulk_upload_validation_error_info_tbl,
failed_license_record_info dbms_cloud_oci_license_manager_bulk_upload_failed_record_info_tbl,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The number of license records which were supported. |
|
(required) The number of supported license records that were uploaded successfully. |
|
(required) The number of supported license records that were valid but not uploaded since they were duplicates. |
|
(required) The number of supported license records that were valid but failed with errors during upload. |
|
(required) The number of supported license records that could not be uploaded since they were invalid. |
|
(required) Detailed error information corresponding to each supported but invalid row for the uploaded file. |
|
(required) Error information corresponding to the supported records which are valid but could not be created. |
|
(required) Response message for bulk upload. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_BULK_UPLOAD_TEMPLATE_T Type
The bulk upload template file.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_bulk_upload_template_t FORCE AUTHID CURRENT_USER IS OBJECT (
template varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_bulk_upload_template_t (
template varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The bulk upload template. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_CONFIGURATION_T Type
Details of the compartment-specific configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
email_ids dbms_cloud_oci_license_manager_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_configuration_t (
compartment_id varchar2,
email_ids dbms_cloud_oci_license_manager_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The compartment OCID to which the configuration is specified. |
|
(required) The list of associated configuration email IDs. |
|
(optional) The time the configuration was created. An RFC 3339-formatted datetime string. |
|
(optional) The time the configuration was updated. An RFC 3339-formatted datetime string. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_CREATE_LICENSE_RECORD_DETAILS_T Type
The details about the new license record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_create_license_record_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
is_perpetual number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
license_count number,
product_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_create_license_record_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_create_license_record_details_t (
display_name varchar2,
is_perpetual number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
license_count number,
product_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) License record name. |
|
(required) Specifies if the license record term is perpertual. |
|
(optional) The license record end date in RFC 3339 date format. Example: `2018-09-12` |
|
(optional) The license record support end date in RFC 3339 date format. Example: `2018-09-12` |
|
(required) Specifies if the license count is unlimited. |
|
(optional) The number of license units added by a user in a license record. Default 1 |
|
(optional) The license record product ID. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_IMAGE_DETAILS_T Type
Image details associated with the product license.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
listing_id varchar2(32767),
package_version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_image_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_image_details_t (
listing_id varchar2,
package_version varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Marketplace image listing ID. |
|
(required) Image package version. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_IMAGE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_license_manager_image_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_image_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_image_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_CREATE_PRODUCT_LICENSE_DETAILS_T Type
Details for creating a new product license.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_create_product_license_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
is_vendor_oracle number,
display_name varchar2(32767),
license_unit varchar2(32767),
vendor_name varchar2(32767),
images dbms_cloud_oci_license_manager_image_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_create_product_license_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_create_product_license_details_t (
compartment_id varchar2,
is_vendor_oracle number,
display_name varchar2,
license_unit varchar2,
vendor_name varchar2,
images dbms_cloud_oci_license_manager_image_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The compartment OCID where product licenses are created. |
|
(required) Specifies if the product license vendor is Oracle or a third party. |
|
(required) Name of the product license. |
|
(required) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(optional) The product license vendor name, for example: Microsoft, RHEL, and so on. |
|
(optional) The image details associated with the product license. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_ERROR_T Type
An error has occurred.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_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. |
|
(required) A human-readable error string. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_IMAGE_RESPONSE_T Type
The collection of image details for the product license.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_image_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
listing_name varchar2(32767),
publisher varchar2(32767),
listing_id varchar2(32767),
package_version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_image_response_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_image_response_t (
id varchar2,
listing_name varchar2,
publisher varchar2,
listing_id varchar2,
package_version varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The image ID associated with the product license. |
|
(optional) The listing name associated with the product license. |
|
(optional) The image publisher. |
|
(optional) The image listing ID. |
|
(optional) The image package version. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_LICENSE_METRIC_T Type
Overview of product license and resources usage.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_license_metric_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_product_license_count number,
total_byol_instance_count number,
total_license_included_instance_count number,
license_record_expiring_soon_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_metric_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_metric_t (
total_product_license_count number,
total_byol_instance_count number,
total_license_included_instance_count number,
license_record_expiring_soon_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Total number of product licenses in a particular compartment. |
|
(required) Total number of BYOL instances in a particular compartment. |
|
(required) Total number of License Included (LI) instances in a particular compartment. |
|
(required) Total number of license records that will expire within 90 days in a particular compartment. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_LICENSE_RECORD_T Type
License record summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_license_record_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
product_license_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
product_id varchar2(32767),
license_count number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
is_perpetual number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
license_unit varchar2(32767),
product_license varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_t (
id varchar2,
product_license_id varchar2,
compartment_id varchar2,
display_name varchar2,
product_id varchar2,
license_count number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
is_perpetual number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
license_unit varchar2,
product_license 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 |
---|---|
|
(required) The license record OCID. |
|
(optional) The product license OCID with which the license record is associated. |
|
(optional) The compartment OCID where the license record is created. |
|
(required) The license record display name. Avoid entering confidential information. |
|
(optional) The license record product ID. |
|
(optional) The number of license units added by the user for the given license record. Default 1 |
|
(optional) The license record end date in RFC 3339 date format. Example: `2018-09-12` |
|
(optional) The license record support end date in RFC 3339 date format. Example: `2018-09-12` |
|
(required) Specifies if the license count is unlimited. |
|
(required) Specifies if the license record term is perpertual. |
|
(optional) The time the license record was created. An RFC 3339-formatted datetime string. |
|
(optional) The time the license record was updated. An RFC 3339-formatted datetime string. |
|
(required) The current license record state. Allowed values are: 'ACTIVE', 'INACTIVE', 'DELETED' |
|
(optional) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(optional) The product license name with which the license record is associated. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_LICENSE_RECORD_SUMMARY_T Type
The license record summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_license_record_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
product_license_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
product_id varchar2(32767),
license_count number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
is_perpetual number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
license_unit varchar2(32767),
product_license varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_summary_t (
id varchar2,
product_license_id varchar2,
compartment_id varchar2,
display_name varchar2,
product_id varchar2,
license_count number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
is_perpetual number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
license_unit varchar2,
product_license 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 |
---|---|
|
(required) The license record OCID. |
|
(optional) The product license OCID with which the license record is associated. |
|
(optional) The compartment OCID where the license record is created. |
|
(required) License record display name. Avoid entering confidential information. |
|
(optional) The license record product ID. |
|
(optional) The number of license record units added by the user for the given license record. Default 1 |
|
(optional) The license record end date in RFC 3339 format. date format. Example: `2018-09-12` |
|
(optional) The license record support end date in RFC 3339 format. date format. Example: `2018-09-12` |
|
(required) Specifies if the license count is unlimited. |
|
(required) Specifies if the license record term is perpertual. |
|
(optional) The time the license record was created. An RFC 3339-formatted datetime string. |
|
(optional) The time the license record was updated. An RFC 3339-formatted datetime string. |
|
(optional) The current license record state. Allowed values are: 'ACTIVE', 'INACTIVE', 'DELETED' |
|
(optional) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(optional) The product license name with which the license record is associated. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_LICENSE_RECORD_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_license_manager_license_record_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_license_record_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_license_record_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_LICENSE_RECORD_COLLECTION_T Type
The license record summary collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_license_record_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_license_manager_license_record_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_license_record_collection_t (
items dbms_cloud_oci_license_manager_license_record_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The license record summary collection. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_T Type
Details of product.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
l_count number,
category varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_t (
name varchar2,
l_count number,
category varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Name of the product. |
|
(required) Units required for the missing product. |
|
(required) Product category base or option. Allowed values are: 'BASE', 'OPTION' |
DBMS_CLOUD_OCI_LICENSE_MANAGER_IMAGE_RESPONSE_TBL Type
Nested table type of dbms_cloud_oci_license_manager_image_response_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_image_response_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_image_response_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_T Type
The product license details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
status varchar2(32767),
status_description varchar2(32767),
total_active_license_unit_count number,
lifecycle_state varchar2(32767),
total_license_units_consumed number,
total_license_record_count number,
active_license_record_count number,
license_unit varchar2(32767),
is_vendor_oracle number,
is_over_subscribed number,
is_unlimited number,
display_name varchar2(32767),
vendor_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
images dbms_cloud_oci_license_manager_image_response_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_t (
id varchar2,
compartment_id varchar2,
status varchar2,
status_description varchar2,
total_active_license_unit_count number,
lifecycle_state varchar2,
total_license_units_consumed number,
total_license_record_count number,
active_license_record_count number,
license_unit varchar2,
is_vendor_oracle number,
is_over_subscribed number,
is_unlimited number,
display_name varchar2,
vendor_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
images dbms_cloud_oci_license_manager_image_response_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The product license OCID. |
|
(required) The compartment OCID where the product license is created. |
|
(required) The current product license status. Allowed values are: 'INCOMPLETE', 'ISSUES_FOUND', 'WARNING', 'OK' |
|
(optional) Status description for the current product license status. |
|
(optional) The total number of licenses available for the product license, calculated by adding up all the license counts for active license records associated with the product license. |
|
(optional) The current product license state. Allowed values are: 'ACTIVE', 'INACTIVE', 'DELETED' |
|
(optional) The number of license units consumed. Updated after each allocation run. |
|
(optional) The number of license records associated with the product license. |
|
(optional) The number of active license records associated with the product license. |
|
(required) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(required) Specifies whether the vendor is Oracle or a third party. |
|
(optional) Specifies whether or not the product license is oversubscribed. |
|
(optional) Specifies if the license unit count is unlimited. |
|
(required) License record name |
|
(optional) The vendor of the ProductLicense |
|
(optional) The time the product license was created. An RFC 3339-formatted datetime string. |
|
(optional) The time the product license was updated. An RFC 3339-formatted datetime string. |
|
(optional) The images associated with the product license. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_SUMMARY_T Type
The product license summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
status varchar2(32767),
status_description varchar2(32767),
lifecycle_state varchar2(32767),
total_active_license_unit_count number,
total_license_units_consumed number,
total_license_record_count number,
active_license_record_count number,
license_unit varchar2(32767),
is_vendor_oracle number,
is_over_subscribed number,
is_unlimited number,
display_name varchar2(32767),
vendor_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
images dbms_cloud_oci_license_manager_image_response_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_summary_t (
id varchar2,
compartment_id varchar2,
status varchar2,
status_description varchar2,
lifecycle_state varchar2,
total_active_license_unit_count number,
total_license_units_consumed number,
total_license_record_count number,
active_license_record_count number,
license_unit varchar2,
is_vendor_oracle number,
is_over_subscribed number,
is_unlimited number,
display_name varchar2,
vendor_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
images dbms_cloud_oci_license_manager_image_response_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The product license OCID. |
|
(required) The compartment OCID where the product license is created. |
|
(required) The current product license status. Allowed values are: 'INCOMPLETE', 'ISSUES_FOUND', 'WARNING', 'OK' |
|
(optional) Status description for the current product license status. |
|
(optional) The current product license state. Allowed values are: 'ACTIVE', 'INACTIVE', 'DELETED' |
|
(optional) The total number of licenses available for the product license, calculated by adding up all the license counts for active license records associated with the product license. |
|
(optional) The number of license units consumed. Updated after each allocation run. |
|
(optional) The number of license records associated with the product license. |
|
(optional) The number of active license records associated with the product license. |
|
(required) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(required) Specifies whether the vendor is Oracle or a third party. |
|
(optional) Specifies whether or not the product license is oversubscribed. |
|
(optional) Specifies if the license unit count is unlimited. |
|
(required) License record name |
|
(optional) The vendor of the ProductLicense |
|
(optional) The time the product license was created. An RFC 3339-formatted datetime string. |
|
(optional) The time the product license was updated. An RFC 3339-formatted datetime string. |
|
(optional) The images associated with the product license. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_license_manager_product_license_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_product_license_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_COLLECTION_T Type
The product license summary collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_license_manager_product_license_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_collection_t (
items dbms_cloud_oci_license_manager_product_license_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The product license summary collection. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_TBL Type
Nested table type of dbms_cloud_oci_license_manager_product_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_product_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_CONSUMER_SUMMARY_T Type
Details of a resource that is consuming a particular product license.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_consumer_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_id varchar2(32767),
resource_name varchar2(32767),
product_name varchar2(32767),
resource_compartment_id varchar2(32767),
resource_compartment_name varchar2(32767),
resource_unit_type varchar2(32767),
resource_unit_count number,
license_unit_type varchar2(32767),
license_units_consumed number,
is_base_license_available number,
are_all_options_available number,
missing_products dbms_cloud_oci_license_manager_product_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_consumer_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_consumer_summary_t (
resource_id varchar2,
resource_name varchar2,
product_name varchar2,
resource_compartment_id varchar2,
resource_compartment_name varchar2,
resource_unit_type varchar2,
resource_unit_count number,
license_unit_type varchar2,
license_units_consumed number,
is_base_license_available number,
are_all_options_available number,
missing_products dbms_cloud_oci_license_manager_product_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the resource. |
|
(required) The display name of the resource. |
|
(required) The resource product name. |
|
(required) The OCID of the compartment that contains the resource. |
|
(required) The display name of the compartment that contains the resource. |
|
(required) The unit type for the resource. Allowed values are: 'OCPU', 'ECPU' |
|
(required) Number of units of the resource |
|
(required) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(required) Number of license units consumed by the resource. |
|
(required) Specifies if the base license is available. |
|
(required) Specifies if all options are available. |
|
(required) Collection of missing product licenses. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_CONSUMER_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_license_manager_product_license_consumer_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_consumer_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_product_license_consumer_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_PRODUCT_LICENSE_CONSUMER_COLLECTION_T Type
Collection of resources which have consumed licenses.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_product_license_consumer_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_license_manager_product_license_consumer_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_consumer_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_product_license_consumer_collection_t (
items dbms_cloud_oci_license_manager_product_license_consumer_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Collection of product license consumers. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_PRODUCT_LICENSE_SUMMARY_T Type
A summary of the top utilized product licenses.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_product_license_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
product_license_id varchar2(32767),
product_type varchar2(32767),
unit_type varchar2(32767),
total_units_consumed number,
total_license_unit_count number,
is_unlimited number,
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_product_license_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_product_license_summary_t (
product_license_id varchar2,
product_type varchar2,
unit_type varchar2,
total_units_consumed number,
total_license_unit_count number,
is_unlimited number,
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The product license OCID. |
|
(required) The product type. |
|
(required) The product license unit. Allowed values are: 'OCPU', 'NAMED_USER_PLUS', 'PROCESSORS' |
|
(required) Number of license units consumed. |
|
(required) Total number of license units in the product license provided by the user. |
|
(required) Specifies if the license unit count is unlimited. |
|
(required) The current product license status. Allowed values are: 'INCOMPLETE', 'ISSUES_FOUND', 'WARNING', 'OK' |
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_PRODUCT_LICENSE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_license_manager_top_utilized_product_license_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_product_license_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_top_utilized_product_license_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_PRODUCT_LICENSE_COLLECTION_T Type
A collection of top utilized product licenses.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_product_license_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_license_manager_top_utilized_product_license_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_product_license_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_product_license_collection_t (
items dbms_cloud_oci_license_manager_top_utilized_product_license_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Collection of top utilized product licenses. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_RESOURCE_SUMMARY_T Type
A summary of a top utlized resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_resource_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_id varchar2(32767),
resource_name varchar2(32767),
resource_compartment_id varchar2(32767),
resource_compartment_name varchar2(32767),
total_units number,
unit_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_resource_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_resource_summary_t (
resource_id varchar2,
resource_name varchar2,
resource_compartment_id varchar2,
resource_compartment_name varchar2,
total_units number,
unit_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the resource. |
|
(required) Resource canonical name. |
|
(required) The compartment OCID that contains the resource. |
|
(required) The display name of the compartment that contains the resource. |
|
(required) Number of license units consumed by the resource. |
|
(required) The resource unit. Allowed values are: 'OCPU', 'ECPU' |
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_RESOURCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_license_manager_top_utilized_resource_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_resource_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_license_manager_top_utilized_resource_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LICENSE_MANAGER_TOP_UTILIZED_RESOURCE_COLLECTION_T Type
The collection of top utilized resources.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_top_utilized_resource_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_license_manager_top_utilized_resource_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_resource_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_top_utilized_resource_collection_t (
items dbms_cloud_oci_license_manager_top_utilized_resource_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The top utilized resource summary collection. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_UPDATE_CONFIGURATION_DETAILS_T Type
The compartment-specific configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_update_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
email_ids dbms_cloud_oci_license_manager_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_configuration_details_t (
email_ids dbms_cloud_oci_license_manager_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of email IDs associated with the configuration. |
DBMS_CLOUD_OCI_LICENSE_MANAGER_UPDATE_LICENSE_RECORD_DETAILS_T Type
The details about updates in the license record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_update_license_record_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
is_perpetual number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
license_count number,
product_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_license_record_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_license_record_details_t (
display_name varchar2,
is_perpetual number,
expiration_date timestamp with time zone,
support_end_date timestamp with time zone,
is_unlimited number,
license_count number,
product_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) License record name. |
|
(required) Specifies if the license record term is perpertual. |
|
(optional) The license record end date in RFC 3339 date format. Example: `2018-09-12` |
|
(optional) The license record support end date in RFC 3339 date format. Example: `2018-09-12` |
|
(required) Specifies if the license count is unlimited. |
|
(optional) The number of license units added by a user in a license record. Default 1 |
|
(optional) The license record product ID. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_LICENSE_MANAGER_UPDATE_PRODUCT_LICENSE_DETAILS_T Type
Updates the product license object (only allows image updates).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_license_manager_update_product_license_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
images dbms_cloud_oci_license_manager_image_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_product_license_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_license_manager_update_product_license_details_t (
images dbms_cloud_oci_license_manager_image_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The image details associated with the product license. |
|
(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |