Skip to content

Commit

Permalink
Releasing version 2.44.1
Browse files Browse the repository at this point in the history
Releasing version 2.44.1
  • Loading branch information
bhagwatvyas authored Aug 24, 2021
2 parents 836e16c + cb6df02 commit ca49876
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ 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.44.1 - 2021-08-24
====================

Added
-----
* Support for generating recommended VM cluster networks in the Database service
* Support for creating VM cluster networks with a specified listener port in the Database service

====================
2.44.0 - 2021-08-17
====================
Expand Down
62 changes: 62 additions & 0 deletions src/oci/database/models/generate_recommended_network_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ def __init__(self, **kwargs):
The value to assign to the display_name property of this GenerateRecommendedNetworkDetails.
:type display_name: str
:param scan_listener_port_tcp:
The value to assign to the scan_listener_port_tcp property of this GenerateRecommendedNetworkDetails.
:type scan_listener_port_tcp: int
:param scan_listener_port_tcp_ssl:
The value to assign to the scan_listener_port_tcp_ssl property of this GenerateRecommendedNetworkDetails.
:type scan_listener_port_tcp_ssl: int
:param networks:
The value to assign to the networks property of this GenerateRecommendedNetworkDetails.
:type networks: list[oci.database.models.InfoForNetworkGenDetails]
Expand All @@ -50,6 +58,8 @@ def __init__(self, **kwargs):
self.swagger_types = {
'compartment_id': 'str',
'display_name': 'str',
'scan_listener_port_tcp': 'int',
'scan_listener_port_tcp_ssl': 'int',
'networks': 'list[InfoForNetworkGenDetails]',
'dns': 'list[str]',
'ntp': 'list[str]',
Expand All @@ -60,6 +70,8 @@ def __init__(self, **kwargs):
self.attribute_map = {
'compartment_id': 'compartmentId',
'display_name': 'displayName',
'scan_listener_port_tcp': 'scanListenerPortTcp',
'scan_listener_port_tcp_ssl': 'scanListenerPortTcpSsl',
'networks': 'networks',
'dns': 'dns',
'ntp': 'ntp',
Expand All @@ -69,6 +81,8 @@ def __init__(self, **kwargs):

self._compartment_id = None
self._display_name = None
self._scan_listener_port_tcp = None
self._scan_listener_port_tcp_ssl = None
self._networks = None
self._dns = None
self._ntp = None
Expand Down Expand Up @@ -127,6 +141,54 @@ def display_name(self, display_name):
"""
self._display_name = display_name

@property
def scan_listener_port_tcp(self):
"""
Gets the scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
The SCAN TCPIP port. Default is 1521.
:return: The scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
:rtype: int
"""
return self._scan_listener_port_tcp

@scan_listener_port_tcp.setter
def scan_listener_port_tcp(self, scan_listener_port_tcp):
"""
Sets the scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
The SCAN TCPIP port. Default is 1521.
:param scan_listener_port_tcp: The scan_listener_port_tcp of this GenerateRecommendedNetworkDetails.
:type: int
"""
self._scan_listener_port_tcp = scan_listener_port_tcp

@property
def scan_listener_port_tcp_ssl(self):
"""
Gets the scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
The SCAN TCPIP SSL port. Default is 2484.
:return: The scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
:rtype: int
"""
return self._scan_listener_port_tcp_ssl

@scan_listener_port_tcp_ssl.setter
def scan_listener_port_tcp_ssl(self, scan_listener_port_tcp_ssl):
"""
Sets the scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
The SCAN TCPIP SSL port. Default is 2484.
:param scan_listener_port_tcp_ssl: The scan_listener_port_tcp_ssl of this GenerateRecommendedNetworkDetails.
:type: int
"""
self._scan_listener_port_tcp_ssl = scan_listener_port_tcp_ssl

@property
def networks(self):
"""
Expand Down
62 changes: 62 additions & 0 deletions src/oci/database/models/scan_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ def __init__(self, **kwargs):
The value to assign to the port property of this ScanDetails.
:type port: int
:param scan_listener_port_tcp:
The value to assign to the scan_listener_port_tcp property of this ScanDetails.
:type scan_listener_port_tcp: int
:param scan_listener_port_tcp_ssl:
The value to assign to the scan_listener_port_tcp_ssl property of this ScanDetails.
:type scan_listener_port_tcp_ssl: int
:param ips:
The value to assign to the ips property of this ScanDetails.
:type ips: list[str]
Expand All @@ -34,17 +42,23 @@ def __init__(self, **kwargs):
self.swagger_types = {
'hostname': 'str',
'port': 'int',
'scan_listener_port_tcp': 'int',
'scan_listener_port_tcp_ssl': 'int',
'ips': 'list[str]'
}

self.attribute_map = {
'hostname': 'hostname',
'port': 'port',
'scan_listener_port_tcp': 'scanListenerPortTcp',
'scan_listener_port_tcp_ssl': 'scanListenerPortTcpSsl',
'ips': 'ips'
}

self._hostname = None
self._port = None
self._scan_listener_port_tcp = None
self._scan_listener_port_tcp_ssl = None
self._ips = None

@property
Expand Down Expand Up @@ -95,6 +109,54 @@ def port(self, port):
"""
self._port = port

@property
def scan_listener_port_tcp(self):
"""
Gets the scan_listener_port_tcp of this ScanDetails.
The SCAN TCPIP port. Default is 1521.
:return: The scan_listener_port_tcp of this ScanDetails.
:rtype: int
"""
return self._scan_listener_port_tcp

@scan_listener_port_tcp.setter
def scan_listener_port_tcp(self, scan_listener_port_tcp):
"""
Sets the scan_listener_port_tcp of this ScanDetails.
The SCAN TCPIP port. Default is 1521.
:param scan_listener_port_tcp: The scan_listener_port_tcp of this ScanDetails.
:type: int
"""
self._scan_listener_port_tcp = scan_listener_port_tcp

@property
def scan_listener_port_tcp_ssl(self):
"""
Gets the scan_listener_port_tcp_ssl of this ScanDetails.
The SCAN TCPIP SSL port. Default is 2484.
:return: The scan_listener_port_tcp_ssl of this ScanDetails.
:rtype: int
"""
return self._scan_listener_port_tcp_ssl

@scan_listener_port_tcp_ssl.setter
def scan_listener_port_tcp_ssl(self, scan_listener_port_tcp_ssl):
"""
Sets the scan_listener_port_tcp_ssl of this ScanDetails.
The SCAN TCPIP SSL port. Default is 2484.
:param scan_listener_port_tcp_ssl: The scan_listener_port_tcp_ssl of this ScanDetails.
:type: int
"""
self._scan_listener_port_tcp_ssl = scan_listener_port_tcp_ssl

@property
def ips(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion src/oci/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
# 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.

__version__ = "2.44.0"
__version__ = "2.44.1"

0 comments on commit ca49876

Please sign in to comment.