Skip to content

Commit 70928bd

Browse files
authored
Merge pull request #87 from oracle/release_2018-11-15
Releasing version 2.1.1
2 parents 01dfe78 + c309aff commit 70928bd

10 files changed

+291
-16
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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/>`_.
66

7+
====================
8+
2.1.1 - 2018-11-15
9+
====================
10+
11+
Added
12+
-----
13+
* Support for VCN transit routing in the Networking service
14+
15+
Fixed
16+
-----
17+
* Fixed UploadManager to work with unbuffered streams in Python 3
18+
719
====================
820
2.1.0 - 2018-11-01
921
====================

Thirdpartyreadme.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
624624
See the License for the specific language governing permissions and
625625
limitations under the License.
626626

627+
Six
628+
===
629+
Copyright (c) 2010-2017 Benjamin Peterson
630+
631+
Permission is hereby granted, free of charge, to any person obtaining a copy
632+
of this software and associated documentation files (the "Software"), to deal
633+
in the Software without restriction, including without limitation the rights
634+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
635+
copies of the Software, and to permit persons to whom the Software is
636+
furnished to do so, subject to the following conditions:
637+
638+
The above copyright notice and this permission notice shall be included in all
639+
copies or substantial portions of the Software.
640+
641+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
642+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
643+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
644+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
645+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
646+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
647+
SOFTWARE.
648+
627649
Urllib3
628650
=======
629651
This is the MIT license: http://www.opensource.org/licenses/mit-license.php

src/oci/core/models/create_drg_attachment_details.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ def __init__(self, **kwargs):
2525
The value to assign to the drg_id property of this CreateDrgAttachmentDetails.
2626
:type drg_id: str
2727
28+
:param route_table_id:
29+
The value to assign to the route_table_id property of this CreateDrgAttachmentDetails.
30+
:type route_table_id: str
31+
2832
:param vcn_id:
2933
The value to assign to the vcn_id property of this CreateDrgAttachmentDetails.
3034
:type vcn_id: str
@@ -33,17 +37,20 @@ def __init__(self, **kwargs):
3337
self.swagger_types = {
3438
'display_name': 'str',
3539
'drg_id': 'str',
40+
'route_table_id': 'str',
3641
'vcn_id': 'str'
3742
}
3843

3944
self.attribute_map = {
4045
'display_name': 'displayName',
4146
'drg_id': 'drgId',
47+
'route_table_id': 'routeTableId',
4248
'vcn_id': 'vcnId'
4349
}
4450

4551
self._display_name = None
4652
self._drg_id = None
53+
self._route_table_id = None
4754
self._vcn_id = None
4855

4956
@property
@@ -94,6 +101,38 @@ def drg_id(self, drg_id):
94101
"""
95102
self._drg_id = drg_id
96103

104+
@property
105+
def route_table_id(self):
106+
"""
107+
Gets the route_table_id of this CreateDrgAttachmentDetails.
108+
The OCID of the route table the DRG attachment will use.
109+
110+
If you don't specify a route table here, the DRG attachment is created without an associated route
111+
table. The Networking service does NOT automatically associate the attached VCN's default route table
112+
with the DRG attachment.
113+
114+
115+
:return: The route_table_id of this CreateDrgAttachmentDetails.
116+
:rtype: str
117+
"""
118+
return self._route_table_id
119+
120+
@route_table_id.setter
121+
def route_table_id(self, route_table_id):
122+
"""
123+
Sets the route_table_id of this CreateDrgAttachmentDetails.
124+
The OCID of the route table the DRG attachment will use.
125+
126+
If you don't specify a route table here, the DRG attachment is created without an associated route
127+
table. The Networking service does NOT automatically associate the attached VCN's default route table
128+
with the DRG attachment.
129+
130+
131+
:param route_table_id: The route_table_id of this CreateDrgAttachmentDetails.
132+
:type: str
133+
"""
134+
self._route_table_id = route_table_id
135+
97136
@property
98137
def vcn_id(self):
99138
"""

src/oci/core/models/create_local_peering_gateway_details.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ def __init__(self, **kwargs):
3333
The value to assign to the freeform_tags property of this CreateLocalPeeringGatewayDetails.
3434
:type freeform_tags: dict(str, str)
3535
36+
:param route_table_id:
37+
The value to assign to the route_table_id property of this CreateLocalPeeringGatewayDetails.
38+
:type route_table_id: str
39+
3640
:param vcn_id:
3741
The value to assign to the vcn_id property of this CreateLocalPeeringGatewayDetails.
3842
:type vcn_id: str
@@ -43,6 +47,7 @@ def __init__(self, **kwargs):
4347
'defined_tags': 'dict(str, dict(str, object))',
4448
'display_name': 'str',
4549
'freeform_tags': 'dict(str, str)',
50+
'route_table_id': 'str',
4651
'vcn_id': 'str'
4752
}
4853

@@ -51,13 +56,15 @@ def __init__(self, **kwargs):
5156
'defined_tags': 'definedTags',
5257
'display_name': 'displayName',
5358
'freeform_tags': 'freeformTags',
59+
'route_table_id': 'routeTableId',
5460
'vcn_id': 'vcnId'
5561
}
5662

5763
self._compartment_id = None
5864
self._defined_tags = None
5965
self._display_name = None
6066
self._freeform_tags = None
67+
self._route_table_id = None
6168
self._vcn_id = None
6269

6370
@property
@@ -180,6 +187,38 @@ def freeform_tags(self, freeform_tags):
180187
"""
181188
self._freeform_tags = freeform_tags
182189

190+
@property
191+
def route_table_id(self):
192+
"""
193+
Gets the route_table_id of this CreateLocalPeeringGatewayDetails.
194+
The OCID of the route table the LPG will use.
195+
196+
If you don't specify a route table here, the LPG is created without an associated route
197+
table. The Networking service does NOT automatically associate the attached VCN's default route table
198+
with the LPG.
199+
200+
201+
:return: The route_table_id of this CreateLocalPeeringGatewayDetails.
202+
:rtype: str
203+
"""
204+
return self._route_table_id
205+
206+
@route_table_id.setter
207+
def route_table_id(self, route_table_id):
208+
"""
209+
Sets the route_table_id of this CreateLocalPeeringGatewayDetails.
210+
The OCID of the route table the LPG will use.
211+
212+
If you don't specify a route table here, the LPG is created without an associated route
213+
table. The Networking service does NOT automatically associate the attached VCN's default route table
214+
with the LPG.
215+
216+
217+
:param route_table_id: The route_table_id of this CreateLocalPeeringGatewayDetails.
218+
:type: str
219+
"""
220+
self._route_table_id = route_table_id
221+
183222
@property
184223
def vcn_id(self):
185224
"""

src/oci/core/models/drg_attachment.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ def __init__(self, **kwargs):
6161
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
6262
:type lifecycle_state: str
6363
64+
:param route_table_id:
65+
The value to assign to the route_table_id property of this DrgAttachment.
66+
:type route_table_id: str
67+
6468
:param time_created:
6569
The value to assign to the time_created property of this DrgAttachment.
6670
:type time_created: datetime
@@ -76,6 +80,7 @@ def __init__(self, **kwargs):
7680
'drg_id': 'str',
7781
'id': 'str',
7882
'lifecycle_state': 'str',
83+
'route_table_id': 'str',
7984
'time_created': 'datetime',
8085
'vcn_id': 'str'
8186
}
@@ -86,6 +91,7 @@ def __init__(self, **kwargs):
8691
'drg_id': 'drgId',
8792
'id': 'id',
8893
'lifecycle_state': 'lifecycleState',
94+
'route_table_id': 'routeTableId',
8995
'time_created': 'timeCreated',
9096
'vcn_id': 'vcnId'
9197
}
@@ -95,6 +101,7 @@ def __init__(self, **kwargs):
95101
self._drg_id = None
96102
self._id = None
97103
self._lifecycle_state = None
104+
self._route_table_id = None
98105
self._time_created = None
99106
self._vcn_id = None
100107

@@ -226,6 +233,30 @@ def lifecycle_state(self, lifecycle_state):
226233
lifecycle_state = 'UNKNOWN_ENUM_VALUE'
227234
self._lifecycle_state = lifecycle_state
228235

236+
@property
237+
def route_table_id(self):
238+
"""
239+
Gets the route_table_id of this DrgAttachment.
240+
The OCID of the route table the DRG attachment is using.
241+
242+
243+
:return: The route_table_id of this DrgAttachment.
244+
:rtype: str
245+
"""
246+
return self._route_table_id
247+
248+
@route_table_id.setter
249+
def route_table_id(self, route_table_id):
250+
"""
251+
Sets the route_table_id of this DrgAttachment.
252+
The OCID of the route table the DRG attachment is using.
253+
254+
255+
:param route_table_id: The route_table_id of this DrgAttachment.
256+
:type: str
257+
"""
258+
self._route_table_id = route_table_id
259+
229260
@property
230261
def time_created(self):
231262
"""

0 commit comments

Comments
 (0)