Skip to content

Commit 9887377

Browse files
Releasing version 2.62.1
Releasing version 2.62.1
2 parents 531c899 + b1634a1 commit 9887377

File tree

115 files changed

+2382
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+2382
-601
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ Change Log
33
All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
6+
====================
7+
2.62.1 - 2022-04-05
8+
====================
9+
10+
Added
11+
-----
12+
* Fixed the lifecycle state values for target databases in the Data Safe service
13+
* Support for content length and content type response headers when downloading PDFs in the Account Management service
14+
* Support for creating Enterprise Manager-based zLinux host targets, creating alarms, and viewing top process analytics in the Operations Insights service
15+
* Support for diagnostic reboots on VM instances in the Compute service
16+
617
====================
718
2.62.0 - 2022-03-29
819
====================

docs/api/opsi.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ Opsi
135135
oci.opsi.models.HostResourceAllocation
136136
oci.opsi.models.HostResourceCapacityTrendAggregation
137137
oci.opsi.models.HostResourceStatistics
138+
oci.opsi.models.HostTopProcesses
138139
oci.opsi.models.HostedEntityCollection
139140
oci.opsi.models.HostedEntitySummary
140141
oci.opsi.models.ImportableAgentEntitySummary
@@ -237,10 +238,13 @@ Opsi
237238
oci.opsi.models.SummarizeHostInsightResourceUsageAggregation
238239
oci.opsi.models.SummarizeHostInsightResourceUsageTrendAggregationCollection
239240
oci.opsi.models.SummarizeHostInsightResourceUtilizationInsightAggregation
241+
oci.opsi.models.SummarizeHostInsightsTopProcessesUsageTrendCollection
240242
oci.opsi.models.SummarizeOperationsInsightsWarehouseResourceUsageAggregation
241243
oci.opsi.models.SummaryStatistics
242244
oci.opsi.models.TablespaceUsageTrend
243245
oci.opsi.models.TablespaceUsageTrendAggregation
246+
oci.opsi.models.TopProcessesUsageTrend
247+
oci.opsi.models.TopProcessesUsageTrendAggregation
244248
oci.opsi.models.UpdateAutonomousDatabaseInsightDetails
245249
oci.opsi.models.UpdateAwrHubDetails
246250
oci.opsi.models.UpdateDatabaseInsightDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
HostTopProcesses
2+
================
3+
4+
.. currentmodule:: oci.opsi.models
5+
6+
.. autoclass:: HostTopProcesses
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
SummarizeHostInsightsTopProcessesUsageTrendCollection
2+
=====================================================
3+
4+
.. currentmodule:: oci.opsi.models
5+
6+
.. autoclass:: SummarizeHostInsightsTopProcessesUsageTrendCollection
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
TopProcessesUsageTrend
2+
======================
3+
4+
.. currentmodule:: oci.opsi.models
5+
6+
.. autoclass:: TopProcessesUsageTrend
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
TopProcessesUsageTrendAggregation
2+
=================================
3+
4+
.. currentmodule:: oci.opsi.models
5+
6+
.. autoclass:: TopProcessesUsageTrendAggregation
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

src/oci/core/compute_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4242,6 +4242,8 @@ def instance_action(self, instance_id, action, **kwargs):
42424242
42434243
42444244
4245+
- **DIAGNOSTICREBOOT** - **This feature currently only supports virtual machines** Powers off the VM instance then rebuilds and powers it back on.
4246+
42454247
42464248
For more information about managing instance lifecycle states, see
42474249
`Stopping and Starting an Instance`__.
@@ -4258,7 +4260,7 @@ def instance_action(self, instance_id, action, **kwargs):
42584260
:param str action: (required)
42594261
The action to perform on the instance.
42604262
4261-
Allowed values are: "STOP", "START", "SOFTRESET", "RESET", "SOFTSTOP", "SENDDIAGNOSTICINTERRUPT"
4263+
Allowed values are: "STOP", "START", "SOFTRESET", "RESET", "SOFTSTOP", "SENDDIAGNOSTICINTERRUPT", "DIAGNOSTICREBOOT"
42624264
42634265
:param str opc_retry_token: (optional)
42644266
A token that uniquely identifies a request so it can be retried in case of a timeout or

src/oci/core/compute_client_composite_operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ def instance_action_and_wait_for_state(self, instance_id, action, wait_for_state
10061006
:param str action: (required)
10071007
The action to perform on the instance.
10081008
1009-
Allowed values are: "STOP", "START", "SOFTRESET", "RESET", "SOFTSTOP", "SENDDIAGNOSTICINTERRUPT"
1009+
Allowed values are: "STOP", "START", "SOFTRESET", "RESET", "SOFTSTOP", "SENDDIAGNOSTICINTERRUPT", "DIAGNOSTICREBOOT"
10101010
10111011
:param list[str] wait_for_states:
10121012
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.Instance.lifecycle_state`

src/oci/core/models/boot_volume.py

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def is_hydrated(self, is_hydrated):
453453
def vpus_per_gb(self):
454454
"""
455455
Gets the vpus_per_gb of this BootVolume.
456-
The number of volume performance units (VPUs) that will be applied to this boot volume per GB,
456+
The number of volume performance units (VPUs) that will be applied to this volume per GB,
457457
representing the Block Volume service's elastic performance options.
458458
See `Block Volume Performance Levels`__ for more information.
459459
@@ -465,8 +465,6 @@ def vpus_per_gb(self):
465465
466466
* `30`-`120`: Represents the Ultra High Performance option.
467467
468-
For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB.
469-
470468
__ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels
471469
472470
@@ -479,7 +477,7 @@ def vpus_per_gb(self):
479477
def vpus_per_gb(self, vpus_per_gb):
480478
"""
481479
Sets the vpus_per_gb of this BootVolume.
482-
The number of volume performance units (VPUs) that will be applied to this boot volume per GB,
480+
The number of volume performance units (VPUs) that will be applied to this volume per GB,
483481
representing the Block Volume service's elastic performance options.
484482
See `Block Volume Performance Levels`__ for more information.
485483
@@ -491,8 +489,6 @@ def vpus_per_gb(self, vpus_per_gb):
491489
492490
* `30`-`120`: Represents the Ultra High Performance option.
493491
494-
For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB.
495-
496492
__ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels
497493
498494
@@ -683,8 +679,7 @@ def kms_key_id(self, kms_key_id):
683679
def is_auto_tune_enabled(self):
684680
"""
685681
Gets the is_auto_tune_enabled of this BootVolume.
686-
Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated.
687-
Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
682+
Specifies whether the auto-tune performance is enabled for this boot volume.
688683
689684
690685
:return: The is_auto_tune_enabled of this BootVolume.
@@ -696,8 +691,7 @@ def is_auto_tune_enabled(self):
696691
def is_auto_tune_enabled(self, is_auto_tune_enabled):
697692
"""
698693
Sets the is_auto_tune_enabled of this BootVolume.
699-
Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated.
700-
Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
694+
Specifies whether the auto-tune performance is enabled for this boot volume.
701695
702696
703697
:param is_auto_tune_enabled: The is_auto_tune_enabled of this BootVolume.
@@ -709,7 +703,7 @@ def is_auto_tune_enabled(self, is_auto_tune_enabled):
709703
def auto_tuned_vpus_per_gb(self):
710704
"""
711705
Gets the auto_tuned_vpus_per_gb of this BootVolume.
712-
The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
706+
The number of Volume Performance Units per GB that this volume is effectively tuned to when it's idle.
713707
714708
715709
:return: The auto_tuned_vpus_per_gb of this BootVolume.
@@ -721,7 +715,7 @@ def auto_tuned_vpus_per_gb(self):
721715
def auto_tuned_vpus_per_gb(self, auto_tuned_vpus_per_gb):
722716
"""
723717
Sets the auto_tuned_vpus_per_gb of this BootVolume.
724-
The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
718+
The number of Volume Performance Units per GB that this volume is effectively tuned to when it's idle.
725719
726720
727721
:param auto_tuned_vpus_per_gb: The auto_tuned_vpus_per_gb of this BootVolume.

src/oci/core/models/create_boot_volume_details.py

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -342,14 +342,12 @@ def vpus_per_gb(self):
342342
343343
Allowed values:
344344
345-
* `10`: Represents the Balanced option.
345+
* `10`: Represents Balanced option.
346346
347-
* `20`: Represents the Higher Performance option.
347+
* `20`: Represents Higher Performance option.
348348
349349
* `30`-`120`: Represents the Ultra High Performance option.
350350
351-
For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB.
352-
353351
__ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels
354352
355353
@@ -368,14 +366,12 @@ def vpus_per_gb(self, vpus_per_gb):
368366
369367
Allowed values:
370368
371-
* `10`: Represents the Balanced option.
369+
* `10`: Represents Balanced option.
372370
373-
* `20`: Represents the Higher Performance option.
371+
* `20`: Represents Higher Performance option.
374372
375373
* `30`-`120`: Represents the Ultra High Performance option.
376374
377-
For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB.
378-
379375
__ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels
380376
381377
@@ -408,8 +404,7 @@ def source_details(self, source_details):
408404
def is_auto_tune_enabled(self):
409405
"""
410406
Gets the is_auto_tune_enabled of this CreateBootVolumeDetails.
411-
Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated.
412-
Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
407+
Specifies whether the auto-tune performance is enabled for this boot volume.
413408
414409
415410
:return: The is_auto_tune_enabled of this CreateBootVolumeDetails.
@@ -421,8 +416,7 @@ def is_auto_tune_enabled(self):
421416
def is_auto_tune_enabled(self, is_auto_tune_enabled):
422417
"""
423418
Sets the is_auto_tune_enabled of this CreateBootVolumeDetails.
424-
Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated.
425-
Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
419+
Specifies whether the auto-tune performance is enabled for this boot volume.
426420
427421
428422
:param is_auto_tune_enabled: The is_auto_tune_enabled of this CreateBootVolumeDetails.

0 commit comments

Comments
 (0)