Skip to content

Commit a227e82

Browse files
authored
Merge pull request #311 from oracle/release_2020-12-08
Releasing version 2.25.1
2 parents bbda5bd + ada7b71 commit a227e82

File tree

68 files changed

+2302
-242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2302
-242
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.25.1 - 2020-12-08
8+
====================
9+
10+
Added
11+
-----
12+
* Support for Integration Service custom endpoint feature
13+
* Support for metadata field in IdentityProvider Get and List response
14+
* Support for fine-grained data analysis and improved SQL insights
15+
* Support for ADB Dedicated - ORDS and SSL cert rotation at AEI
16+
* Support for Maintenance Schedule feature for Exadata Infrastructure resources for ExaCC
17+
618
====================
719
2.25.0 - 2020-12-01
820
====================

docs/api/integration.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ Integration
1919
:template: autosummary/model_class.rst
2020

2121
oci.integration.models.ChangeIntegrationInstanceCompartmentDetails
22+
oci.integration.models.CreateCustomEndpointDetails
2223
oci.integration.models.CreateIntegrationInstanceDetails
24+
oci.integration.models.CustomEndpointDetails
2325
oci.integration.models.IntegrationInstance
2426
oci.integration.models.IntegrationInstanceSummary
27+
oci.integration.models.UpdateCustomEndpointDetails
2528
oci.integration.models.UpdateIntegrationInstanceDetails
2629
oci.integration.models.WorkRequest
2730
oci.integration.models.WorkRequestError
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CreateCustomEndpointDetails
2+
===========================
3+
4+
.. currentmodule:: oci.integration.models
5+
6+
.. autoclass:: CreateCustomEndpointDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CustomEndpointDetails
2+
=====================
3+
4+
.. currentmodule:: oci.integration.models
5+
6+
.. autoclass:: CustomEndpointDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
UpdateCustomEndpointDetails
2+
===========================
3+
4+
.. currentmodule:: oci.integration.models
5+
6+
.. autoclass:: UpdateCustomEndpointDetails
7+
:show-inheritance:
8+
:special-members: __init__
9+
:members:
10+
:undoc-members:
11+
:inherited-members:

examples/object_storage/object_storage_bulk_copy.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22
# Copyright (c) 2016, 2020, 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+
##########################################################################
6+
# object_storage_bulk_copy.py
7+
#
8+
# @author: Tim S and Adi Z
9+
#
10+
# Supports Python 3
11+
##########################################################################
12+
# Info:
13+
# Bulk copy object storage bucket to other bucket with parallel threads
14+
#
15+
##########################################################################
16+
# Application Command line parameters
17+
#
18+
# -c config - Config file section to use (tenancy profile)
19+
# -t profile - Profile in config file, DEFAULT as default
20+
# -p proxy - Set Proxy (i.e. www-proxy-server.com:80)
21+
# -ip - Use Instance Principals for Authentication
22+
# -dt - Use Instance Principals with delegation token for cloud shell
23+
# -sb source_bucket
24+
# -sr source_region
25+
# -sn source_namespace
26+
# -sp source_prefix_include
27+
# -se source_prefix_exclude
28+
# -db destination_bucket
29+
# -dr destination_region
30+
# -ig ignore_check_exist
31+
##########################################################################
32+
533
import pickle
634
import threading
735
import time

examples/object_storage/object_storage_bulk_delete.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22
# Copyright (c) 2016, 2020, 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+
##########################################################################
6+
# object_storage_bulk_delete.py
7+
#
8+
# @author: Adi Zohar
9+
#
10+
# Supports Python 3
11+
##########################################################################
12+
# Info:
13+
# Bulk delete with parallel threads
14+
#
15+
##########################################################################
16+
# Application Command line parameters
17+
#
18+
# -c config - Config file section to use (tenancy profile)
19+
# -t profile - Profile in config file, DEFAULT as default
20+
# -p proxy - Set Proxy (i.e. www-proxy-server.com:80)
21+
# -ip - Use Instance Principals for Authentication
22+
# -dt - Use Instance Principals with delegation token for cloud shell
23+
# -sb source_bucket
24+
# -sp source_prefix
25+
# -sr source_region
26+
##########################################################################
27+
528
import threading
629
import time
730
import queue

examples/object_storage/object_storage_bulk_restore.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22
# Copyright (c) 2016, 2020, 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+
##########################################################################
6+
# object_storage_bulk_restore.py
7+
#
8+
# @author: Tim S and Adi Z
9+
#
10+
# Supports Python 3
11+
##########################################################################
12+
# Info:
13+
# Bulk restore with parallel threads
14+
#
15+
##########################################################################
16+
# Application Command line parameters
17+
#
18+
# -c config - Config file section to use (tenancy profile)
19+
# -t profile - Profile in config file, DEFAULT as default
20+
# -p proxy - Set Proxy (i.e. www-proxy-server.com:80)
21+
# -ip - Use Instance Principals for Authentication
22+
# -dt - Use Instance Principals with delegation token for cloud shell
23+
# -sb source_bucket
24+
# -sp source_prefix_include
25+
# -sr source_region
26+
##########################################################################
27+
528
import threading
629
import time
730
import queue

examples/object_storage/object_storage_list_objects.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22
# Copyright (c) 2016, 2020, 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+
##########################################################################
6+
# object_storage_list_objects.py
7+
#
8+
# @author: Adi Zohar, Oct 18th 2020
9+
#
10+
# Supports Python 3
11+
##########################################################################
12+
# Info:
13+
# count objects or list objects with option to filter by prefix and write to file
14+
#
15+
##########################################################################
16+
# Application Command line parameters
17+
#
18+
# -c config - Config file section to use (tenancy profile)
19+
# -t profile - Profile in config file, DEFAULT as default
20+
# -p proxy - Set Proxy (i.e. www-proxy-server.com:80)
21+
# -ip - Use Instance Principals for Authentication
22+
# -dt - Use Instance Principals with delegation token for cloud shell
23+
# -co - count only
24+
# -f - write to file
25+
# -sb source_bucket
26+
# -sp source_prefix_include
27+
# -se source_prefix_exclude
28+
# -sr source_region
29+
##########################################################################
530
import oci
631
import argparse
732
import datetime

examples/showoci/CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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+
20.12.08 - 20.12.08
9+
=====================
10+
* Added retry policy to all pagination calls
11+
* Added job id for resource manager
12+
* Added Exadata Infrastructure and VM Clusters
13+
714
=====================
815
20.11.24 - 20.11.24
916
=====================

0 commit comments

Comments
 (0)