Skip to content

Commit cb6df02

Browse files
committed
Releasing version 2.44.1
1 parent 836e16c commit cb6df02

File tree

4 files changed

+134
-1
lines changed

4 files changed

+134
-1
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ 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.44.1 - 2021-08-24
8+
====================
9+
10+
Added
11+
-----
12+
* Support for generating recommended VM cluster networks in the Database service
13+
* Support for creating VM cluster networks with a specified listener port in the Database service
14+
615
====================
716
2.44.0 - 2021-08-17
817
====================

src/oci/database/models/generate_recommended_network_details.py

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ def __init__(self, **kwargs):
2626
The value to assign to the display_name property of this GenerateRecommendedNetworkDetails.
2727
:type display_name: str
2828
29+
:param scan_listener_port_tcp:
30+
The value to assign to the scan_listener_port_tcp property of this GenerateRecommendedNetworkDetails.
31+
:type scan_listener_port_tcp: int
32+
33+
:param scan_listener_port_tcp_ssl:
34+
The value to assign to the scan_listener_port_tcp_ssl property of this GenerateRecommendedNetworkDetails.
35+
:type scan_listener_port_tcp_ssl: int
36+
2937
:param networks:
3038
The value to assign to the networks property of this GenerateRecommendedNetworkDetails.
3139
:type networks: list[oci.database.models.InfoForNetworkGenDetails]
@@ -50,6 +58,8 @@ def __init__(self, **kwargs):
5058
self.swagger_types = {
5159
'compartment_id': 'str',
5260
'display_name': 'str',
61+
'scan_listener_port_tcp': 'int',
62+
'scan_listener_port_tcp_ssl': 'int',
5363
'networks': 'list[InfoForNetworkGenDetails]',
5464
'dns': 'list[str]',
5565
'ntp': 'list[str]',
@@ -60,6 +70,8 @@ def __init__(self, **kwargs):
6070
self.attribute_map = {
6171
'compartment_id': 'compartmentId',
6272
'display_name': 'displayName',
73+
'scan_listener_port_tcp': 'scanListenerPortTcp',
74+
'scan_listener_port_tcp_ssl': 'scanListenerPortTcpSsl',
6375
'networks': 'networks',
6476
'dns': 'dns',
6577
'ntp': 'ntp',
@@ -69,6 +81,8 @@ def __init__(self, **kwargs):
6981

7082
self._compartment_id = None
7183
self._display_name = None
84+
self._scan_listener_port_tcp = None
85+
self._scan_listener_port_tcp_ssl = None
7286
self._networks = None
7387
self._dns = None
7488
self._ntp = None
@@ -127,6 +141,54 @@ def display_name(self, display_name):
127141
"""
128142
self._display_name = display_name
129143

144+
@property
145+
def scan_listener_port_tcp(self):
146+
"""
147+
Gets the scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
148+
The SCAN TCPIP port. Default is 1521.
149+
150+
151+
:return: The scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
152+
:rtype: int
153+
"""
154+
return self._scan_listener_port_tcp
155+
156+
@scan_listener_port_tcp.setter
157+
def scan_listener_port_tcp(self, scan_listener_port_tcp):
158+
"""
159+
Sets the scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
160+
The SCAN TCPIP port. Default is 1521.
161+
162+
163+
:param scan_listener_port_tcp: The scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
164+
:type: int
165+
"""
166+
self._scan_listener_port_tcp = scan_listener_port_tcp
167+
168+
@property
169+
def scan_listener_port_tcp_ssl(self):
170+
"""
171+
Gets the scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
172+
The SCAN TCPIP SSL port. Default is 2484.
173+
174+
175+
:return: The scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
176+
:rtype: int
177+
"""
178+
return self._scan_listener_port_tcp_ssl
179+
180+
@scan_listener_port_tcp_ssl.setter
181+
def scan_listener_port_tcp_ssl(self, scan_listener_port_tcp_ssl):
182+
"""
183+
Sets the scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
184+
The SCAN TCPIP SSL port. Default is 2484.
185+
186+
187+
:param scan_listener_port_tcp_ssl: The scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
188+
:type: int
189+
"""
190+
self._scan_listener_port_tcp_ssl = scan_listener_port_tcp_ssl
191+
130192
@property
131193
def networks(self):
132194
"""

src/oci/database/models/scan_details.py

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ def __init__(self, **kwargs):
2626
The value to assign to the port property of this ScanDetails.
2727
:type port: int
2828
29+
:param scan_listener_port_tcp:
30+
The value to assign to the scan_listener_port_tcp property of this ScanDetails.
31+
:type scan_listener_port_tcp: int
32+
33+
:param scan_listener_port_tcp_ssl:
34+
The value to assign to the scan_listener_port_tcp_ssl property of this ScanDetails.
35+
:type scan_listener_port_tcp_ssl: int
36+
2937
:param ips:
3038
The value to assign to the ips property of this ScanDetails.
3139
:type ips: list[str]
@@ -34,17 +42,23 @@ def __init__(self, **kwargs):
3442
self.swagger_types = {
3543
'hostname': 'str',
3644
'port': 'int',
45+
'scan_listener_port_tcp': 'int',
46+
'scan_listener_port_tcp_ssl': 'int',
3747
'ips': 'list[str]'
3848
}
3949

4050
self.attribute_map = {
4151
'hostname': 'hostname',
4252
'port': 'port',
53+
'scan_listener_port_tcp': 'scanListenerPortTcp',
54+
'scan_listener_port_tcp_ssl': 'scanListenerPortTcpSsl',
4355
'ips': 'ips'
4456
}
4557

4658
self._hostname = None
4759
self._port = None
60+
self._scan_listener_port_tcp = None
61+
self._scan_listener_port_tcp_ssl = None
4862
self._ips = None
4963

5064
@property
@@ -95,6 +109,54 @@ def port(self, port):
95109
"""
96110
self._port = port
97111

112+
@property
113+
def scan_listener_port_tcp(self):
114+
"""
115+
Gets the scan_listener_port_tcp of this ScanDetails.
116+
The SCAN TCPIP port. Default is 1521.
117+
118+
119+
:return: The scan_listener_port_tcp of this ScanDetails.
120+
:rtype: int
121+
"""
122+
return self._scan_listener_port_tcp
123+
124+
@scan_listener_port_tcp.setter
125+
def scan_listener_port_tcp(self, scan_listener_port_tcp):
126+
"""
127+
Sets the scan_listener_port_tcp of this ScanDetails.
128+
The SCAN TCPIP port. Default is 1521.
129+
130+
131+
:param scan_listener_port_tcp: The scan_listener_port_tcp of this ScanDetails.
132+
:type: int
133+
"""
134+
self._scan_listener_port_tcp = scan_listener_port_tcp
135+
136+
@property
137+
def scan_listener_port_tcp_ssl(self):
138+
"""
139+
Gets the scan_listener_port_tcp_ssl of this ScanDetails.
140+
The SCAN TCPIP SSL port. Default is 2484.
141+
142+
143+
:return: The scan_listener_port_tcp_ssl of this ScanDetails.
144+
:rtype: int
145+
"""
146+
return self._scan_listener_port_tcp_ssl
147+
148+
@scan_listener_port_tcp_ssl.setter
149+
def scan_listener_port_tcp_ssl(self, scan_listener_port_tcp_ssl):
150+
"""
151+
Sets the scan_listener_port_tcp_ssl of this ScanDetails.
152+
The SCAN TCPIP SSL port. Default is 2484.
153+
154+
155+
:param scan_listener_port_tcp_ssl: The scan_listener_port_tcp_ssl of this ScanDetails.
156+
:type: int
157+
"""
158+
self._scan_listener_port_tcp_ssl = scan_listener_port_tcp_ssl
159+
98160
@property
99161
def ips(self):
100162
"""

src/oci/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44

5-
__version__ = "2.44.0"
5+
__version__ = "2.44.1"

0 commit comments

Comments
 (0)