Skip to content

Commit

Permalink
Releasing version 2.97.0
Browse files Browse the repository at this point in the history
Releasing version 2.97.0
  • Loading branch information
oci-dex-release-bot authored Apr 4, 2023
2 parents 288143a + ba8de3e commit 319e955
Show file tree
Hide file tree
Showing 27 changed files with 2,132 additions and 235 deletions.
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.97.0 - 2023-04-04
====================

Added
-----
* Support for pre-emptible worker nodes in the Container Engine for Kubernetes service
* Support for larger data storage (now up to 128TB) in the MySQL Database service
* Support for HTTP health checks for HTTPS backend sets in the Load Balancer service

Breaking
--------
* The property `backend_set_name` was made required in the `ForwardToBackendSet` model in the Load Balancer service
2.96.1 - 2023-03-28
====================

Expand Down
3 changes: 3 additions & 0 deletions docs/api/container_engine.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,14 @@ Container Engine
oci.container_engine.models.PodConfiguration
oci.container_engine.models.PodShape
oci.container_engine.models.PodShapeSummary
oci.container_engine.models.PreemptibleNodeConfigDetails
oci.container_engine.models.PreemptionAction
oci.container_engine.models.ServiceLbConfigDetails
oci.container_engine.models.ShapeMemoryOptions
oci.container_engine.models.ShapeNetworkBandwidthOptions
oci.container_engine.models.ShapeOcpuOptions
oci.container_engine.models.Taint
oci.container_engine.models.TerminatePreemptionAction
oci.container_engine.models.UpdateAddonDetails
oci.container_engine.models.UpdateClusterDetails
oci.container_engine.models.UpdateClusterEndpointConfigDetails
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PreemptibleNodeConfigDetails
============================

.. currentmodule:: oci.container_engine.models

.. autoclass:: PreemptibleNodeConfigDetails
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PreemptionAction
================

.. currentmodule:: oci.container_engine.models

.. autoclass:: PreemptionAction
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
TerminatePreemptionAction
=========================

.. currentmodule:: oci.container_engine.models

.. autoclass:: TerminatePreemptionAction
:show-inheritance:
:special-members: __init__
:members:
:undoc-members:
:inherited-members:
14 changes: 14 additions & 0 deletions examples/showoci/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

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

=====================
23.03.28 - 23.03.28
=====================
* Added OCI_RESOURCES table to showoci2adw to load all relevants OCIDs
* Added Identity to summary
* Added Goldengate deployment to CSV and ADW
* Added NoSQL to CSV and ADW
* Added Network Firewall + Policies
* Added more mysql info + added to CSV
* Added Cloud Guard Recipes
* Added option to filter by region - comma seperated
* Added option to filter "Not" by region with -rgn
* Added Open Search Clusters

=====================
23.03.21 - 23.03.21
=====================
Expand Down
16 changes: 10 additions & 6 deletions examples/showoci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ and [usage reports](https://docs.oracle.com/en-us/iaas/Content/Billing/Concepts/
- oci.data_integration.DataIntegrationClient
- oci.queue.QueueAdminClient
- oci.identity_domains.IdentityDomainsClient
- oci.network_firewall.NetworkFirewallClient
- oci.opensearch.OpensearchClusterClient

## 2. Executing using Cloud Shell

Expand Down Expand Up @@ -271,12 +273,12 @@ $ python3 showoci.py
usage: showoci.py [-h] [-a] [-ani] [-an] [-api] [-b] [-c] [-cn] [-d] [-e] [-edge] [-f] [-fun] [-i] [-ic] [-isc] [-l] [-lq] [-m]
[-n] [-o] [-paas] [-dataai] [-rm] [-s] [-sec] [-nobackups] [-skipdbhomes] [-readtimeout READTIMEOUT]
[-conntimeout CONNTIMEOUT] [-so] [-mc] [-nr] [-ip] [-is] [-dt] [-t PROFILE] [-p PROXY] [-rg REGION]
[-cp COMPART] [-cpr COMPART_RECUR] [-cpath COMPARTPATH] [-tenantid TENANTID] [-cf CONFIG] [-csv CSV]
[-csvcol CSVCOL] [-csv_nodate] [-csv_notagstocols] [-jf JOUTFILE] [-js] [-sjf SJOUTFILE] [-cachef SERVICEFILE]
[-caches] [--version]
[-conntimeout CONNTIMEOUT] [-so] [-mc] [-nr] [-ip] [-is] [-dt] [-t PROFILE] [-p PROXY] [-pause] [-rg REGION]
[-rgn NOT_REGION] [-cp COMPART] [-cpr COMPART_RECUR] [-cpath COMPARTPATH] [-tenantid TENANTID] [-cf CONFIG]
[-csv CSV] [-csvcol CSVCOL] [-csv_nodate] [-csv_notagstocols] [-jf JOUTFILE] [-js] [-sjf SJOUTFILE]
[-cachef SERVICEFILE] [-caches] [--version]
options:
optional arguments:
-h, --help show this help message and exit
-a Print All Resources
-ani Print All Resources but identity
Expand Down Expand Up @@ -315,7 +317,9 @@ options:
-dt Use Delegation Token (Cloud shell)
-t PROFILE Config file section to use (tenancy profile)
-p PROXY Set Proxy (i.e. www-proxy-server.com:80)
-rg REGION Filter by Region
-pause Pause before Processing
-rg REGION Filter by Region, partial name or comma seperated
-rgn NOT_REGION Filter by Region, do not include region partial name or comma seperated
-cp COMPART Filter by Compartment Name or OCID
-cpr COMPART_RECUR Filter by Comp Name Recursive
-cpath COMPARTPATH Filter by Compartment path ,(i.e. -cpath "Adi / Sub"
Expand Down
45 changes: 32 additions & 13 deletions examples/showoci/showoci.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,24 +70,39 @@
# - oci.data_connectivity.models.RegistrySummary
# - oci.queue.QueueAdminClient
# - oci.identity_domains.IdentityDomainsClient
# - oci.network_firewall.NetworkFirewallClient
# - oci.opensearch.OpensearchClusterClient
#
# Modules without CSV yet:
# - datasciencemodeldeployment
# - datasciencenotebooksession
#
# Modules Not Yet Covered:
# - oci.blockchain.BlockchainPlatformClient
# - oci.data_safe.DataSafeClient
# - oci.usage_api.UsageapiClient
# - oci.sch.ServiceConnectorClient
# - oci.os_management.OsManagementClient
# - oci.log_analytics.LogAnalyticsClient
# - oci.tenant_manager_control_plane.LinkClient
# - oci.ai_anomaly_detection.AnomalyDetectionClient
# - oci.ai_document.AIServiceDocumentClient
# - oci.ai_language.AIServiceLanguageClient
# - oci.ai_speech.AIServiceSpeechClient
# - oci.ai_vision.AIServiceVisionClient
# - oci.apm_control_plane.ApmDomainClient
# - oci.certificates.CertificatesClient
# - oci.apm_config.ConfigClient
# - oci.apm_synthetics.ApmSyntheticClient
# - oci.application_migration.ApplicationMigrationClient
# - oci.artifacts.ArtifactsClient
# - oci.certificates_management.CertificatesManagementClient
# - oci.cloud_migrations.MigrationClient
# - oci.container_instances.ContainerInstanceClient
# - oci.data_labeling_service.DataLabelingManagementClient
# - oci.data_safe.DataSafeClient
# - oci.devops.DevopsClient
# - oci.disaster_recovery.DisasterRecoveryClient
# - oci.fusion_apps.FusionApplicationsClient
# - oci.jms.JavaManagementServiceClient
# - oci.license_manager.LicenseManagerClient
# - oci.lockbox.LockboxClient
# - oci.media_services.MediaServicesClient
# - oci.opa.OpaInstanceClient
# - oci.opsi.OperationsInsightsClient
# - oci.optimizer.OptimizerClient
# - oci.recovery.DatabaseRecoveryClient
# - oci.service_mesh.ServiceMeshClient
# - oci.threat_intelligence.ThreatintelClient
##########################################################################
from __future__ import print_function
from showoci_data import ShowOCIData
Expand All @@ -101,7 +116,7 @@
import contextlib
import os

version = "23.03.21"
version = "23.03.28"

##########################################################################
# check OCI version
Expand Down Expand Up @@ -339,7 +354,8 @@ def set_parser_arguments(argsList=[]):
parser.add_argument('-t', default="", dest='profile', help='Config file section to use (tenancy profile)')
parser.add_argument('-p', default="", dest='proxy', help='Set Proxy (i.e. www-proxy-server.com:80) ')
parser.add_argument('-pause', action='store_true', default=False, dest='pause', help='Pause before Processing')
parser.add_argument('-rg', default="", dest='region', help='Filter by Region')
parser.add_argument('-rg', default="", dest='region', help='Filter by Region, partial name or comma seperated')
parser.add_argument('-rgn', default="", dest='not_region', help='Filter by Region, do not include region partial name or comma seperated')
parser.add_argument('-cp', default="", dest='compart', help='Filter by Compartment Name or OCID')
parser.add_argument('-cpr', default="", dest='compart_recur', help='Filter by Comp Name Recursive')
parser.add_argument('-cpath', default="", dest='compartpath', help='Filter by Compartment path ,(i.e. -cpath "Adi / Sub"')
Expand Down Expand Up @@ -494,6 +510,9 @@ def set_service_extract_flags(cmd):
if cmd.region:
prm.filter_by_region = str(cmd.region)

if cmd.not_region:
prm.filter_by_region_not = str(cmd.not_region)

if cmd.compart:
prm.filter_by_compartment = str(cmd.compart)

Expand Down
Loading

0 comments on commit 319e955

Please sign in to comment.