You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.rst
+52
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,58 @@ All notable changes to this project will be documented in this file.
6
6
7
7
The format is based on `Keep a Changelog <http://keepachangelog.com/>`__.
8
8
9
+
3.50.2 - 2024-11-19
10
+
--------------------
11
+
Added
12
+
~~~~~
13
+
* Database Service
14
+
15
+
* Command to list Oracle Grid Infrastructure minor versions for the given major version. If --is-gi-version-for-provisioning argument is provided, then the command lists the versions that can be used for provisioning a cluster.
16
+
17
+
* ``oci db database gi-minor-version-summary list``
18
+
19
+
* Support to create and list exascale db vault
20
+
21
+
* ``oci db exascale-db-storage-vault create --exadata-infrastructure-id``
22
+
* ``oci db exascale-db-storage-vault list --exadata-infrastructure-id``
23
+
24
+
* Support to create vm cluster with db vault
25
+
26
+
* ``oci db vm-cluster create --exascale-db-storage-vault-id``
27
+
28
+
* Support to configure exascale
29
+
30
+
* ``oci db exadata-infrastructure configure-exascale --exadata-infrastructure-id, --total-storage-in-gbs``
31
+
32
+
* Support for new optional parameter for Unified Auditing in the Database service
33
+
34
+
* ``oci db system launch --is-unified-auditing-enabled``
35
+
* ``oci db system launch-from-backup --is-unified-auditing-enabled``
36
+
37
+
* Oracle Database PostgreSQL service
38
+
39
+
* Support Single Read Only (RO) endpoint for the Read Replica
40
+
41
+
* ``oci psql db-system create``
42
+
43
+
* Customer Incident Management Service
44
+
45
+
* Introduced UserGroupId for creating Tech SR
46
+
47
+
* ``oci support incident create --user-group-id``
48
+
49
+
* Object Storage Service
50
+
51
+
* Support for additional checksum parameters in the Object Storage service.
52
+
* opc-checksum-algorithm`` - Specifies the checksum algorithm to be used (options: SHA256, SHA384, CRC32C).
53
+
* opc-content-sha256`` - Specifies the SHA256 checksum value.
54
+
* opc-content-sha384`` - Specifies the SHA384 checksum value.
55
+
* opc-content-crc32c`` - Specifies the CRC32C checksum value.
Copy file name to clipboardexpand all lines: services/cims/src/oci_cli_incident/generated/incident_cli.py
+13-10
Original file line number
Diff line number
Diff line change
@@ -18,10 +18,9 @@
18
18
19
19
@cli.command(cli_util.override('support.support_root_group.command_name', 'support'), cls=CommandGroupWithAlias, help=cli_util.override('support.support_root_group.help', """Use the Support Management API to manage support requests.
20
20
For more information, see [Getting Help and Contacting Support].
21
-
22
21
**Note**: Before you can create service requests with this API,
23
-
you need to have an Oracle Single Sign On (SSO) account,
24
-
and you need to register your Customer Support Identifier (CSI) with My Oracle Support."""), short_help=cli_util.override('support.support_root_group.short_help', """Support Management API"""))
22
+
complete user registration at My Oracle Cloud Support
23
+
and then ask your tenancy administrator to provide you authorization for the related user groups."""), short_help=cli_util.override('support.support_root_group.short_help', """Support Management API"""))
25
24
@cli_util.help_option_group
26
25
defsupport_root_group():
27
26
pass
@@ -61,7 +60,8 @@ def incident_group():
61
60
@cli_util.option('--compartment-id', required=True, help=u"""The OCID of the tenancy.""")
@cli_util.option('--problem-type', required=True, type=custom_types.CliCaseInsensitiveChoice(["LIMIT", "LEGACY_LIMIT", "TECH", "ACCOUNT", "TAXONOMY"]), help=u"""The kind of support ticket (type of support request). For information about `ACCOUNT` support tickets, see [Creating a Billing Support Request]. For information about `LIMIT` support tickets, see [Creating a Service Limit Increase Request]. For information about `TECH` support tickets, see [Creating a Technical Support Request].""")
64
-
@cli_util.option('--csi', help=u"""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.""")
63
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
64
+
@cli_util.option('--user-group-id', help=u"""Technical support type (`TECH`) only: The identifier of the support request's user group in My Oracle Cloud Support portal.""")
65
65
@cli_util.option('--contacts', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of contacts.
66
66
67
67
This option is a JSON list with items of type Contact. For documentation on Contact please see our API reference: https://docs.cloud.oracle.com/api/#/en/incident/20181231/datatypes/Contact."""+custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
@incident_group.command(name=cli_util.override('support.get_incident.command_name', 'get'), help=u"""Gets the specified support ticket. For more information, see [Getting Details for a Support Request]. \n[Command Reference](getIncident)""")
120
123
@cli_util.option('--incident-key', required=True, help=u"""Unique identifier for the support ticket.""")
121
124
@cli_util.option('--compartment-id', required=True, help=u"""The OCID of the tenancy.""")
122
-
@cli_util.option('--csi', help=u"""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.""")
125
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
123
126
@cli_util.option('--ocid', help=u"""User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account. User OCID is mandatory for OCI Users and optional for Multicloud users.""")
124
127
@cli_util.option('--homeregion', help=u"""The region of the tenancy.""")
125
128
@cli_util.option('--problemtype', help=u"""The kind of support request.""")
@cli_util.option('--sort-by', type=custom_types.CliCaseInsensitiveChoice(["dateUpdated", "severity"]), help=u"""The key to use to sort the returned items.""")
173
176
@cli_util.option('--sort-order', type=custom_types.CliCaseInsensitiveChoice(["ASC", "DESC"]), help=u"""The order to sort the results in.""")
174
177
@cli_util.option('--name', help=u"""The user-friendly name of the support ticket type.""")
175
-
@cli_util.option('--csi', help=u"""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.""")
178
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
176
179
@cli_util.option('--ocid', help=u"""User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account. User OCID is mandatory for OCI Users and optional for Multicloud users.""")
177
180
@cli_util.option('--homeregion', help=u"""The region of the tenancy.""")
178
181
@cli_util.option('--domainid', help=u"""The OCID of identity domain. DomainID is mandatory if the user is part of Non Default Identity domain.""")
@incident_group.command(name=cli_util.override('support.list_incidents.command_name', 'list'), help=u"""Lists support tickets for the specified tenancy. For more information, see [Listing Support Requests]. \n[Command Reference](listIncidents)""")
241
244
@cli_util.option('--compartment-id', required=True, help=u"""The OCID of the tenancy.""")
242
-
@cli_util.option('--csi', help=u"""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.""")
245
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
243
246
@cli_util.option('--limit', type=click.INT, help=u"""For list pagination. The maximum number of results per page, or items to return in a paginated \"List\" call. For important details about how pagination works, see [List Pagination].""")
244
247
@cli_util.option('--sort-by', type=custom_types.CliCaseInsensitiveChoice(["dateUpdated", "severity"]), help=u"""The key to use to sort the returned items.""")
245
248
@cli_util.option('--sort-order', type=custom_types.CliCaseInsensitiveChoice(["ASC", "DESC"]), help=u"""The order to sort the results in.""")
@cli_util.option('--compartment-id', required=True, help=u"""The OCID of the tenancy.""")
325
328
@cli_util.option('--problem-type', type=custom_types.CliCaseInsensitiveChoice(["LIMIT", "LEGACY_LIMIT", "TECH", "ACCOUNT", "TAXONOMY"]), help=u"""The kind of support ticket (type of support request). For information about `ACCOUNT` support tickets, see [Creating a Billing Support Request]. For information about `LIMIT` support tickets, see [Creating a Service Limit Increase Request]. For information about `TECH` support tickets, see [Creating a Technical Support Request].""")
326
-
@cli_util.option('--csi', help=u"""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.""")
329
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
327
330
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
328
331
@cli_util.option('--ocid', help=u"""User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account. User OCID is mandatory for OCI Users and optional for Multicloud users.""")
329
332
@cli_util.option('--homeregion', help=u"""The region of the tenancy.""")
@validation_response_group.command(name=cli_util.override('support.validate_user.command_name', 'validate-user'), help=u"""Checks whether the requested user is valid. For more information, see [Validating a User]. \n[Command Reference](validateUser)""")
385
-
@cli_util.option('--csi', help=u"""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.""")
388
+
@cli_util.option('--csi', help=u"""The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.""")
386
389
@cli_util.option('--problem-type', type=custom_types.CliCaseInsensitiveChoice(["LIMIT", "LEGACY_LIMIT", "TECH", "ACCOUNT", "TAXONOMY"]), help=u"""The kind of support request.""")
387
390
@cli_util.option('--ocid', help=u"""User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account. User OCID is mandatory for OCI Users and optional for Multicloud users.""")
388
391
@cli_util.option('--homeregion', help=u"""The region of the tenancy.""")
0 commit comments