Skip to content

Commit

Permalink
Releasing version 2.70.0
Browse files Browse the repository at this point in the history
Releasing version 2.70.0
  • Loading branch information
oci-dex-release-bot authored May 31, 2022
2 parents 437ba18 + 35d70f4 commit 0c4a69d
Show file tree
Hide file tree
Showing 77 changed files with 1,752 additions and 366 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ Change Log
All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
====================
2.70.0 - 2022-05-31
====================

Added
-----
* Support for in-depth monitoring, diagnostics capabilities, and advanced management functionality for on-premise Oracle databases in the Database Management service
* Support for using Oracle Cloud Agent to perform iSCSI login and logout for non-multipath-enabled iSCSI attachments in the Container Engine for Kubernetes service
* Support for Fault Domain placement in the Container Engine for Kubernetes service
* Support for worker node images in the Container Engine for Kubernetes service
* Support for flexible shapes using the driverShapeConfig and executorShapeConfig properties in the Data Flow service

Breaking
--------
* Support for retries by default on operations in the Application Dependency Management service

====================
2.69.0 - 2022-05-24
====================
Expand Down
1 change: 1 addition & 0 deletions docs/api/data_flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Data Flow
oci.data_flow.models.Run
oci.data_flow.models.RunLogSummary
oci.data_flow.models.RunSummary
oci.data_flow.models.ShapeConfig
oci.data_flow.models.UpdateApplicationDetails
oci.data_flow.models.UpdatePrivateEndpointDetails
oci.data_flow.models.UpdateRunDetails
Expand Down
11 changes: 11 additions & 0 deletions docs/api/data_flow/models/oci.data_flow.models.ShapeConfig.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ShapeConfig
===========

.. currentmodule:: oci.data_flow.models

.. autoclass:: ShapeConfig
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
4 changes: 4 additions & 0 deletions docs/api/database_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,17 @@ Database Management
oci.database_management.models.JobSummary
oci.database_management.models.ManagedDatabase
oci.database_management.models.ManagedDatabaseCollection
oci.database_management.models.ManagedDatabaseCredential
oci.database_management.models.ManagedDatabaseGroup
oci.database_management.models.ManagedDatabaseGroupCollection
oci.database_management.models.ManagedDatabaseGroupSummary
oci.database_management.models.ManagedDatabasePasswordCredential
oci.database_management.models.ManagedDatabaseSecretCredential
oci.database_management.models.ManagedDatabaseSummary
oci.database_management.models.MemoryAggregateMetrics
oci.database_management.models.MetricDataPoint
oci.database_management.models.MetricDimensionDefinition
oci.database_management.models.MetricStatisticsDefinition
oci.database_management.models.ObjectPrivilegeCollection
oci.database_management.models.ObjectPrivilegeSummary
oci.database_management.models.ObjectStorageJobExecutionResultDetails
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ManagedDatabaseCredential
=========================

.. currentmodule:: oci.database_management.models

.. autoclass:: ManagedDatabaseCredential
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ManagedDatabasePasswordCredential
=================================

.. currentmodule:: oci.database_management.models

.. autoclass:: ManagedDatabasePasswordCredential
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ManagedDatabaseSecretCredential
===============================

.. currentmodule:: oci.database_management.models

.. autoclass:: ManagedDatabaseSecretCredential
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
MetricStatisticsDefinition
==========================

.. currentmodule:: oci.database_management.models

.. autoclass:: MetricStatisticsDefinition
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
74 changes: 55 additions & 19 deletions src/oci/adm/application_dependency_management_client.py

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/oci/adm/models/application_dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, **kwargs):
def gav(self):
"""
**[Required]** Gets the gav of this ApplicationDependency.
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:return: The gav of this ApplicationDependency.
Expand All @@ -63,7 +63,7 @@ def gav(self):
def gav(self, gav):
"""
Sets the gav of this ApplicationDependency.
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:param gav: The gav of this ApplicationDependency.
Expand All @@ -75,7 +75,7 @@ def gav(self, gav):
def node_id(self):
"""
**[Required]** Gets the node_id of this ApplicationDependency.
Unique identifier of an Application Dependency node.
Unique identifier of an Application Dependency node, e.g. nodeId1.
:return: The node_id of this ApplicationDependency.
Expand All @@ -87,7 +87,7 @@ def node_id(self):
def node_id(self, node_id):
"""
Sets the node_id of this ApplicationDependency.
Unique identifier of an Application Dependency node.
Unique identifier of an Application Dependency node, e.g. nodeId1.
:param node_id: The node_id of this ApplicationDependency.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, **kwargs):
def gav(self):
"""
**[Required]** Gets the gav of this ApplicationDependencyVulnerabilitySummary.
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:return: The gav of this ApplicationDependencyVulnerabilitySummary.
Expand All @@ -79,7 +79,7 @@ def gav(self):
def gav(self, gav):
"""
Sets the gav of this ApplicationDependencyVulnerabilitySummary.
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:param gav: The gav of this ApplicationDependencyVulnerabilitySummary.
Expand All @@ -91,7 +91,7 @@ def gav(self, gav):
def node_id(self):
"""
**[Required]** Gets the node_id of this ApplicationDependencyVulnerabilitySummary.
Unique identifier of an Application Dependency node.
Unique identifier of an Application Dependency node, e.g. nodeId1.
:return: The node_id of this ApplicationDependencyVulnerabilitySummary.
Expand All @@ -103,7 +103,7 @@ def node_id(self):
def node_id(self, node_id):
"""
Sets the node_id of this ApplicationDependencyVulnerabilitySummary.
Unique identifier of an Application Dependency node.
Unique identifier of an Application Dependency node, e.g. nodeId1.
:param node_id: The node_id of this ApplicationDependencyVulnerabilitySummary.
Expand Down
4 changes: 2 additions & 2 deletions src/oci/adm/models/vulnerability.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self, **kwargs):
def id(self):
"""
**[Required]** Gets the id of this Vulnerability.
Unique vulnerability identifier.
Unique vulnerability identifier, e.g. CVE-1999-0067.
:return: The id of this Vulnerability.
Expand All @@ -71,7 +71,7 @@ def id(self):
def id(self, id):
"""
Sets the id of this Vulnerability.
Unique vulnerability identifier.
Unique vulnerability identifier, e.g. CVE-1999-0067.
:param id: The id of this Vulnerability.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def name(self, name):
@property
def kubernetes_version(self):
"""
**[Required]** Gets the kubernetes_version of this CreateNodePoolDetails.
Gets the kubernetes_version of this CreateNodePoolDetails.
The version of Kubernetes to install on the nodes in the node pool.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,29 @@ def __init__(self, **kwargs):
The value to assign to the capacity_reservation_id property of this NodePoolPlacementConfigDetails.
:type capacity_reservation_id: str
:param fault_domains:
The value to assign to the fault_domains property of this NodePoolPlacementConfigDetails.
:type fault_domains: list[str]
"""
self.swagger_types = {
'availability_domain': 'str',
'subnet_id': 'str',
'capacity_reservation_id': 'str'
'capacity_reservation_id': 'str',
'fault_domains': 'list[str]'
}

self.attribute_map = {
'availability_domain': 'availabilityDomain',
'subnet_id': 'subnetId',
'capacity_reservation_id': 'capacityReservationId'
'capacity_reservation_id': 'capacityReservationId',
'fault_domains': 'faultDomains'
}

self._availability_domain = None
self._subnet_id = None
self._capacity_reservation_id = None
self._fault_domains = None

@property
def availability_domain(self):
Expand Down Expand Up @@ -121,6 +128,30 @@ def capacity_reservation_id(self, capacity_reservation_id):
"""
self._capacity_reservation_id = capacity_reservation_id

@property
def fault_domains(self):
"""
Gets the fault_domains of this NodePoolPlacementConfigDetails.
A list of fault domains in which to place nodes.
:return: The fault_domains of this NodePoolPlacementConfigDetails.
:rtype: list[str]
"""
return self._fault_domains

@fault_domains.setter
def fault_domains(self, fault_domains):
"""
Sets the fault_domains of this NodePoolPlacementConfigDetails.
A list of fault domains in which to place nodes.
:param fault_domains: The fault_domains of this NodePoolPlacementConfigDetails.
:type: list[str]
"""
self._fault_domains = fault_domains

def __repr__(self):
return formatted_flat_dict(self)

Expand Down
4 changes: 2 additions & 2 deletions src/oci/core/blockstorage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -935,9 +935,9 @@ def copy_volume_backup(self, volume_backup_id, copy_volume_backup_details, **kwa
def copy_volume_group_backup(self, volume_group_backup_id, copy_volume_group_backup_details, **kwargs):
"""
Creates a volume group backup copy in specified region. For general information about volume group backups,
see `Overview of Block Volume Service Backups`__
see `Overview of Block Volume Backups`__.
__ https://docs.cloud.oracle.com/Content/Block/Concepts/blockvolumebackups.htm
__ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumebackups.htm
:param str volume_group_backup_id: (required)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
@init_model_state_from_kwargs
class AmdMilanBmLaunchInstancePlatformConfig(LaunchInstancePlatformConfig):
"""
The platform configuration used when launching a bare metal instance with the BM.Standard.E4.128 shape
(the AMD Milan platform).
The platform configuration used when launching a bare metal instance with one of the following shapes: BM.Standard.E4.128
or BM.DenseIO.E4.128 (the AMD Milan platform).
"""

#: A constant which can be used with the numa_nodes_per_socket property of a AmdMilanBmLaunchInstancePlatformConfig.
Expand Down
4 changes: 2 additions & 2 deletions src/oci/core/models/amd_milan_bm_platform_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
@init_model_state_from_kwargs
class AmdMilanBmPlatformConfig(PlatformConfig):
"""
The platform configuration of a bare metal instance that uses the BM.Standard.E4.128 shape
(the AMD Milan platform).
The platform configuration used when launching a bare metal instance with one of the following shapes: BM.Standard.E4.128
or BM.DenseIO.E4.128 (the AMD Milan platform).
"""

#: A constant which can be used with the numa_nodes_per_socket property of a AmdMilanBmPlatformConfig.
Expand Down
16 changes: 8 additions & 8 deletions src/oci/core/models/app_catalog_listing_resource_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@ def available_regions(self):
Gets the available_regions of this AppCatalogListingResourceVersion.
List of regions that this listing resource version is available.
For information about Regions, see
`Regions`__.
For information about regions, see
`Regions and Availability Domains`__.
Example: `[\"us-ashburn-1\", \"us-phoenix-1\"]`
__ https://docs.cloud.oracle.com/#General/Concepts/regions.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm
:return: The available_regions of this AppCatalogListingResourceVersion.
Expand All @@ -239,12 +239,12 @@ def available_regions(self, available_regions):
Sets the available_regions of this AppCatalogListingResourceVersion.
List of regions that this listing resource version is available.
For information about Regions, see
`Regions`__.
For information about regions, see
`Regions and Availability Domains`__.
Example: `[\"us-ashburn-1\", \"us-phoenix-1\"]`
__ https://docs.cloud.oracle.com/#General/Concepts/regions.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm
:param available_regions: The available_regions of this AppCatalogListingResourceVersion.
Expand All @@ -258,7 +258,7 @@ def compatible_shapes(self):
Gets the compatible_shapes of this AppCatalogListingResourceVersion.
Array of shapes compatible with this resource.
You may enumerate all available shapes by calling :func:`list_shapes`.
You can enumerate all available shapes by calling :func:`list_shapes`.
Example: `[\"VM.Standard1.1\", \"VM.Standard1.2\"]`
Expand All @@ -274,7 +274,7 @@ def compatible_shapes(self, compatible_shapes):
Sets the compatible_shapes of this AppCatalogListingResourceVersion.
Array of shapes compatible with this resource.
You may enumerate all available shapes by calling :func:`list_shapes`.
You can enumerate all available shapes by calling :func:`list_shapes`.
Example: `[\"VM.Standard1.1\", \"VM.Standard1.2\"]`
Expand Down
Loading

0 comments on commit 0c4a69d

Please sign in to comment.