Skip to content

Commit f5e3ce7

Browse files
committed
Releasing version 2.21.5
1 parent b94dafd commit f5e3ce7

Some content is hidden

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

43 files changed

+1839
-48
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.21.5 - 2020-09-22
8+
====================
9+
10+
Added
11+
-----
12+
* Support for software keys in the Key Management service
13+
* Support for customer contacts on Exadata Cloud at Customer in the Database service
14+
* Support for updating open modes and permission levels of autonomous databases in the Database service
15+
* Support for flexible memory on VM instances in the Compute and Compute Management services
16+
617
====================
718
2.21.4 - 2020-09-15
819
====================

docs/api/core.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ Core Services
195195
oci.core.models.IcmpOptions
196196
oci.core.models.Image
197197
oci.core.models.ImageCapabilitySchemaDescriptor
198+
oci.core.models.ImageMemoryConstraints
198199
oci.core.models.ImageOcpuConstraints
199200
oci.core.models.ImageShapeCompatibilityEntry
200201
oci.core.models.ImageShapeCompatibilitySummary
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ImageMemoryConstraints
2+
======================
3+
4+
.. currentmodule:: oci.core.models
5+
6+
.. autoclass:: ImageMemoryConstraints
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/database.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ Database
123123
oci.database.models.DbVersionSummary
124124
oci.database.models.DeregisterAutonomousDatabaseDataSafeDetails
125125
oci.database.models.ExadataInfrastructure
126+
oci.database.models.ExadataInfrastructureContact
126127
oci.database.models.ExadataInfrastructureSummary
127128
oci.database.models.ExadataIormConfig
128129
oci.database.models.ExadataIormConfigUpdateDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ExadataInfrastructureContact
2+
============================
3+
4+
.. currentmodule:: oci.database.models
5+
6+
.. autoclass:: ExadataInfrastructureContact
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

docs/api/key_management.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Key Management
3535
oci.key_management.models.DecryptedData
3636
oci.key_management.models.EncryptDataDetails
3737
oci.key_management.models.EncryptedData
38+
oci.key_management.models.ExportKeyDetails
39+
oci.key_management.models.ExportedKeyData
3840
oci.key_management.models.GenerateKeyDetails
3941
oci.key_management.models.GeneratedKey
4042
oci.key_management.models.ImportKeyDetails
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ExportKeyDetails
2+
================
3+
4+
.. currentmodule:: oci.key_management.models
5+
6+
.. autoclass:: ExportKeyDetails
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+
ExportedKeyData
2+
===============
3+
4+
.. currentmodule:: oci.key_management.models
5+
6+
.. autoclass:: ExportedKeyData
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

src/oci/core/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
from .icmp_options import IcmpOptions
176176
from .image import Image
177177
from .image_capability_schema_descriptor import ImageCapabilitySchemaDescriptor
178+
from .image_memory_constraints import ImageMemoryConstraints
178179
from .image_ocpu_constraints import ImageOcpuConstraints
179180
from .image_shape_compatibility_entry import ImageShapeCompatibilityEntry
180181
from .image_shape_compatibility_summary import ImageShapeCompatibilitySummary
@@ -507,6 +508,7 @@
507508
"IcmpOptions": IcmpOptions,
508509
"Image": Image,
509510
"ImageCapabilitySchemaDescriptor": ImageCapabilitySchemaDescriptor,
511+
"ImageMemoryConstraints": ImageMemoryConstraints,
510512
"ImageOcpuConstraints": ImageOcpuConstraints,
511513
"ImageShapeCompatibilityEntry": ImageShapeCompatibilityEntry,
512514
"ImageShapeCompatibilitySummary": ImageShapeCompatibilitySummary,

src/oci/core/models/add_image_shape_compatibility_entry_details.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,48 @@ def __init__(self, **kwargs):
1818
Initializes a new AddImageShapeCompatibilityEntryDetails object with values from keyword arguments.
1919
The following keyword arguments are supported (corresponding to the getters/setters of this class):
2020
21+
:param memory_constraints:
22+
The value to assign to the memory_constraints property of this AddImageShapeCompatibilityEntryDetails.
23+
:type memory_constraints: ImageMemoryConstraints
24+
2125
:param ocpu_constraints:
2226
The value to assign to the ocpu_constraints property of this AddImageShapeCompatibilityEntryDetails.
2327
:type ocpu_constraints: ImageOcpuConstraints
2428
2529
"""
2630
self.swagger_types = {
31+
'memory_constraints': 'ImageMemoryConstraints',
2732
'ocpu_constraints': 'ImageOcpuConstraints'
2833
}
2934

3035
self.attribute_map = {
36+
'memory_constraints': 'memoryConstraints',
3137
'ocpu_constraints': 'ocpuConstraints'
3238
}
3339

40+
self._memory_constraints = None
3441
self._ocpu_constraints = None
3542

43+
@property
44+
def memory_constraints(self):
45+
"""
46+
Gets the memory_constraints of this AddImageShapeCompatibilityEntryDetails.
47+
48+
:return: The memory_constraints of this AddImageShapeCompatibilityEntryDetails.
49+
:rtype: ImageMemoryConstraints
50+
"""
51+
return self._memory_constraints
52+
53+
@memory_constraints.setter
54+
def memory_constraints(self, memory_constraints):
55+
"""
56+
Sets the memory_constraints of this AddImageShapeCompatibilityEntryDetails.
57+
58+
:param memory_constraints: The memory_constraints of this AddImageShapeCompatibilityEntryDetails.
59+
:type: ImageMemoryConstraints
60+
"""
61+
self._memory_constraints = memory_constraints
62+
3663
@property
3764
def ocpu_constraints(self):
3865
"""

0 commit comments

Comments
 (0)