Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.

====================
2.1.1 - 2018-11-15
====================

Added
-----
* Support for VCN transit routing in the Networking service

Fixed
-----
* Fixed UploadManager to work with unbuffered streams in Python 3

====================
2.1.0 - 2018-11-01
====================
Expand Down
22 changes: 22 additions & 0 deletions Thirdpartyreadme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Six
===
Copyright (c) 2010-2017 Benjamin Peterson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Urllib3
=======
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
Expand Down
39 changes: 39 additions & 0 deletions src/oci/core/models/create_drg_attachment_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ def __init__(self, **kwargs):
The value to assign to the drg_id property of this CreateDrgAttachmentDetails.
:type drg_id: str

:param route_table_id:
The value to assign to the route_table_id property of this CreateDrgAttachmentDetails.
:type route_table_id: str

:param vcn_id:
The value to assign to the vcn_id property of this CreateDrgAttachmentDetails.
:type vcn_id: str
Expand All @@ -33,17 +37,20 @@ def __init__(self, **kwargs):
self.swagger_types = {
'display_name': 'str',
'drg_id': 'str',
'route_table_id': 'str',
'vcn_id': 'str'
}

self.attribute_map = {
'display_name': 'displayName',
'drg_id': 'drgId',
'route_table_id': 'routeTableId',
'vcn_id': 'vcnId'
}

self._display_name = None
self._drg_id = None
self._route_table_id = None
self._vcn_id = None

@property
Expand Down Expand Up @@ -94,6 +101,38 @@ def drg_id(self, drg_id):
"""
self._drg_id = drg_id

@property
def route_table_id(self):
"""
Gets the route_table_id of this CreateDrgAttachmentDetails.
The OCID of the route table the DRG attachment will use.

If you don't specify a route table here, the DRG attachment is created without an associated route
table. The Networking service does NOT automatically associate the attached VCN's default route table
with the DRG attachment.


:return: The route_table_id of this CreateDrgAttachmentDetails.
:rtype: str
"""
return self._route_table_id

@route_table_id.setter
def route_table_id(self, route_table_id):
"""
Sets the route_table_id of this CreateDrgAttachmentDetails.
The OCID of the route table the DRG attachment will use.

If you don't specify a route table here, the DRG attachment is created without an associated route
table. The Networking service does NOT automatically associate the attached VCN's default route table
with the DRG attachment.


:param route_table_id: The route_table_id of this CreateDrgAttachmentDetails.
:type: str
"""
self._route_table_id = route_table_id

@property
def vcn_id(self):
"""
Expand Down
39 changes: 39 additions & 0 deletions src/oci/core/models/create_local_peering_gateway_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ def __init__(self, **kwargs):
The value to assign to the freeform_tags property of this CreateLocalPeeringGatewayDetails.
:type freeform_tags: dict(str, str)

:param route_table_id:
The value to assign to the route_table_id property of this CreateLocalPeeringGatewayDetails.
:type route_table_id: str

:param vcn_id:
The value to assign to the vcn_id property of this CreateLocalPeeringGatewayDetails.
:type vcn_id: str
Expand All @@ -43,6 +47,7 @@ def __init__(self, **kwargs):
'defined_tags': 'dict(str, dict(str, object))',
'display_name': 'str',
'freeform_tags': 'dict(str, str)',
'route_table_id': 'str',
'vcn_id': 'str'
}

Expand All @@ -51,13 +56,15 @@ def __init__(self, **kwargs):
'defined_tags': 'definedTags',
'display_name': 'displayName',
'freeform_tags': 'freeformTags',
'route_table_id': 'routeTableId',
'vcn_id': 'vcnId'
}

self._compartment_id = None
self._defined_tags = None
self._display_name = None
self._freeform_tags = None
self._route_table_id = None
self._vcn_id = None

@property
Expand Down Expand Up @@ -180,6 +187,38 @@ def freeform_tags(self, freeform_tags):
"""
self._freeform_tags = freeform_tags

@property
def route_table_id(self):
"""
Gets the route_table_id of this CreateLocalPeeringGatewayDetails.
The OCID of the route table the LPG will use.

If you don't specify a route table here, the LPG is created without an associated route
table. The Networking service does NOT automatically associate the attached VCN's default route table
with the LPG.


:return: The route_table_id of this CreateLocalPeeringGatewayDetails.
:rtype: str
"""
return self._route_table_id

@route_table_id.setter
def route_table_id(self, route_table_id):
"""
Sets the route_table_id of this CreateLocalPeeringGatewayDetails.
The OCID of the route table the LPG will use.

If you don't specify a route table here, the LPG is created without an associated route
table. The Networking service does NOT automatically associate the attached VCN's default route table
with the LPG.


:param route_table_id: The route_table_id of this CreateLocalPeeringGatewayDetails.
:type: str
"""
self._route_table_id = route_table_id

@property
def vcn_id(self):
"""
Expand Down
31 changes: 31 additions & 0 deletions src/oci/core/models/drg_attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ def __init__(self, **kwargs):
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type lifecycle_state: str

:param route_table_id:
The value to assign to the route_table_id property of this DrgAttachment.
:type route_table_id: str

:param time_created:
The value to assign to the time_created property of this DrgAttachment.
:type time_created: datetime
Expand All @@ -76,6 +80,7 @@ def __init__(self, **kwargs):
'drg_id': 'str',
'id': 'str',
'lifecycle_state': 'str',
'route_table_id': 'str',
'time_created': 'datetime',
'vcn_id': 'str'
}
Expand All @@ -86,6 +91,7 @@ def __init__(self, **kwargs):
'drg_id': 'drgId',
'id': 'id',
'lifecycle_state': 'lifecycleState',
'route_table_id': 'routeTableId',
'time_created': 'timeCreated',
'vcn_id': 'vcnId'
}
Expand All @@ -95,6 +101,7 @@ def __init__(self, **kwargs):
self._drg_id = None
self._id = None
self._lifecycle_state = None
self._route_table_id = None
self._time_created = None
self._vcn_id = None

Expand Down Expand Up @@ -226,6 +233,30 @@ def lifecycle_state(self, lifecycle_state):
lifecycle_state = 'UNKNOWN_ENUM_VALUE'
self._lifecycle_state = lifecycle_state

@property
def route_table_id(self):
"""
Gets the route_table_id of this DrgAttachment.
The OCID of the route table the DRG attachment is using.


:return: The route_table_id of this DrgAttachment.
:rtype: str
"""
return self._route_table_id

@route_table_id.setter
def route_table_id(self, route_table_id):
"""
Sets the route_table_id of this DrgAttachment.
The OCID of the route table the DRG attachment is using.


:param route_table_id: The route_table_id of this DrgAttachment.
:type: str
"""
self._route_table_id = route_table_id

@property
def time_created(self):
"""
Expand Down
Loading