diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f7bf880163..b8820ea2f3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,20 @@ Change Log All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +==================== +2.9.0 - 2020-01-07 +==================== + +Added +----- +* Support for optionally specifying the corporate proxy field when creating Exadata infrastructure in the Database service +* Support for maintenance windows, and rescheduling maintenance runs, on autonomous container databases in the Database service +* Provide example on how to use key_content for python SDK configuration + +Breaking +-------- +* Field `host_name` in `NodeDetails` from database service is changed from optional to required + ==================== 2.8.0 - 2019-12-17 ==================== diff --git a/docs/configuration.rst b/docs/configuration.rst index 3ceb071fd1..fde6641f52 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -51,6 +51,25 @@ Since ``config`` is a dict, you can also build it manually and check it with from oci.config import validate_config validate_config(config) +If you want to use the private key which is not in the key file, key_content can be the backup of key_file: + +.. code-block:: python + + import os + from myproject import testrunner + user_ocid = os.environ["USER_OCID"] + + config = { + "user": user_ocid, + "key_content": testrunner.key_content, + "fingerprint": calc_fingerprint(key_content), + "tenancy": testrunner.tenancy, + "region": testrunner.region + } + + from oci.config import validate_config + validate_config(config) + .. seealso:: The `SDK and Tool Configuration`__ page has a full description of the required and supported options. diff --git a/docs/known-issues.rst b/docs/known-issues.rst index e6ea3128c9..ba8ec8389e 100644 --- a/docs/known-issues.rst +++ b/docs/known-issues.rst @@ -25,4 +25,14 @@ If you need to retain the connection timeout while clearing the read timeout, yo .. code-block:: python - client.base_client.timeout = (90.0, None) \ No newline at end of file + client.base_client.timeout = (90.0, None) + + +Potential data corruption with Python SDK on binary upload +========================================================== + +**Details:** When using the Python SDK to perform binary upload operations you may encounter an issue with data corruption if retries are enabled or if you are using UploadManager.upload_file. + +**Workaround:** We are aware of the issue and working on a resolution. For more information about this issue and workarounds, see `Potential data corruption issue for PythonSDK retry on binary data upload `_. + +**Direct link to this issue:** `Potential data corruption with Python SDK on binary upload `_. \ No newline at end of file diff --git a/docs/upload-manager.rst b/docs/upload-manager.rst index 9d9686911c..8f76a697e8 100644 --- a/docs/upload-manager.rst +++ b/docs/upload-manager.rst @@ -14,4 +14,14 @@ Uploading Large Objects The Object Storage service supports multipart uploads to make large object uploads easier by splitting the large object into parts. The Python SDK supports raw multipart upload operations for advanced use cases, as well as a higher-level upload class that uses the multipart upload APIs. `Using Multipart Uploads `_ provides links to the APIs used for raw multipart upload operations. Higher-level uploads can be performed using the :py:class:`~oci.object_storage.UploadManager`. The :py:class:`~oci.object_storage.UploadManager` will: split a large object into parts for you, upload the parts in parallel, and then recombine and commit the parts as a single object in Object Storage. -The `UploadObject `_ example shows how :py:class:`~oci.object_storage.UploadManager` can be used to upload files to object storage. \ No newline at end of file +The `UploadObject `_ example shows how :py:class:`~oci.object_storage.UploadManager` can be used to upload files to object storage. + + +Potential data corruption with Python SDK on binary upload +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +**Details:** When using the Python SDK to perform binary upload operations you may encounter an issue with data corruption if retries are enabled or if you are using UploadManager.upload_file. + +**Workaround:** We are aware of the issue and working on a resolution. For more information about this issue and workarounds, see `Potential data corruption issue for PythonSDK retry on binary data upload `_. + +**Direct link to this issue:** `Potential data corruption with Python SDK on binary upload `_. \ No newline at end of file diff --git a/examples/add_API_key.py b/examples/add_API_key.py index 6ad6a79a07..599c01e449 100644 --- a/examples/add_API_key.py +++ b/examples/add_API_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import sys diff --git a/examples/adw_example.py b/examples/adw_example.py index 4cb11e215f..86a9e658b7 100644 --- a/examples/adw_example.py +++ b/examples/adw_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci diff --git a/examples/budget_example.py b/examples/budget_example.py index 1d756fab01..86e16b40ca 100644 --- a/examples/budget_example.py +++ b/examples/budget_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to you can create a budget and an alert rule on the budget. # It then shows how to perform updates, reads, and deletes. It will: diff --git a/examples/change_instance_compartment_example.py b/examples/change_instance_compartment_example.py index e5c6c3b6b2..70fed17fca 100644 --- a/examples/change_instance_compartment_example.py +++ b/examples/change_instance_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to move an instance from one compartment to another using Python SDK. # This script will: diff --git a/examples/change_nat_gateway_compartment_example.py b/examples/change_nat_gateway_compartment_example.py index 1d4bc954eb..bb687d06a4 100644 --- a/examples/change_nat_gateway_compartment_example.py +++ b/examples/change_nat_gateway_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This sample will create the VCN where the NAT Gateway will be created, and create the NAT Gateway that # will be moved to a new compartment. Cleanup of NAT gateway and VCN is performed after completion of diff --git a/examples/change_service_gateway_compartment_example.py b/examples/change_service_gateway_compartment_example.py index 732217061f..c6199503be 100644 --- a/examples/change_service_gateway_compartment_example.py +++ b/examples/change_service_gateway_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to move a service gateway from one compartment to another using Python SDK. # This script will perform the following operations to perform the above operation: diff --git a/examples/cluster_networks_example.py b/examples/cluster_networks_example.py index 69969fdd58..24508d7caf 100644 --- a/examples/cluster_networks_example.py +++ b/examples/cluster_networks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use the cluster networks SDK in terms of: # - Creating an Instance Configuration diff --git a/examples/composite_operations_example.py b/examples/composite_operations_example.py index de6e9257e8..2d4410e34b 100644 --- a/examples/composite_operations_example.py +++ b/examples/composite_operations_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use composite operations in the Python SDK. Composite operations provide # convenience methods for operations which would otherwise need to be chained together. For example, instead of performing an action diff --git a/examples/composite_operations_work_request_example.py b/examples/composite_operations_work_request_example.py index 27fd958818..91667e29fb 100644 --- a/examples/composite_operations_work_request_example.py +++ b/examples/composite_operations_work_request_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use composite operations via work request service in the Python SDK. # There's another similar example ./composite_operations_example.py shows how to use composite operations based on diff --git a/examples/configuration_example.py b/examples/configuration_example.py new file mode 100644 index 0000000000..ed22a5513d --- /dev/null +++ b/examples/configuration_example.py @@ -0,0 +1,38 @@ +# coding: utf-8 +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. + +# This script provides a basic example of how you can build Python SDK client's configuration. +# Using the default configuration location ~/.oci/config, you can use config.from_file() to load any profile. +# Since config is a dict, you can manually initiate the dict, the key should include : user, key_file, fingerprint, +# tenancy and region; if You prefer to use key_content directly rather than getting from the file it is also possible, +# then you can check it with config.validate_config(). + +import oci + +# Default config file and profile +default_config = oci.config.from_file() + +# validate the default config file +oci.config.validate_config(default_config) + +# Since config is a dict, you can also build it manually and check it with config.validate_config(). +config_with_key_file = { + "user": 'ocid1.user.oc1..aaaaaaaa65abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmn', + "key_file": '~/.oci/oci_api_key.pem', + "fingerprint": '11:22:33:44:55:66:77:88:99:0a:1b:2c:3d:4e:5f:6g', + "tenancy": 'ocid1.tenancy.oc1..aaaaaaaa5nfwo53cezleyy6t73v6rn6knhu3molvptnl3kcq34l5ztenancy', + "region": 'us-phoenix-1' +} +oci.config.validate_config(config_with_key_file) + +# If you want to use the private key which is not in the key file, key_content can be the backup of key_file. +key_content = '-----BEGIN RSA PRIVATE KEY----- ### the content of your private key###-----END RSA PRIVATE KEY-----' + +config_with_key_content = { + "user": 'ocid1.user.oc1..aaaaaaaa65abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmn', + "key_content": key_content, + "fingerprint": '11:22:33:44:55:66:77:88:99:0a:1b:2c:3d:4e:5f:6g', + "tenancy": 'ocid1.tenancy.oc1..aaaaaaaa5nfwo53cezleyy6t73v6rn6knhu3molvptnl3kcq34l5ztenancy', + "region": 'us-phoenix-1' +} +oci.config.validate_config(config_with_key_content) diff --git a/examples/container_engine.py b/examples/container_engine.py index 8bd0eeed41..3679f45e56 100644 --- a/examples/container_engine.py +++ b/examples/container_engine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import print_function import oci diff --git a/examples/copy_volume_backup_example.py b/examples/copy_volume_backup_example.py index 2d9c7e2f48..51fb9ebe64 100644 --- a/examples/copy_volume_backup_example.py +++ b/examples/copy_volume_backup_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to copy volume backups to a different region and wait on the copy status. # diff --git a/examples/create_ipv6_example.py b/examples/create_ipv6_example.py index 760f227ae3..213d969df6 100644 --- a/examples/create_ipv6_example.py +++ b/examples/create_ipv6_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to create an IPv6 VNIC attachment to a provided # instance using the Python SDK. NOTE: The provided instance must be within an IPv6-enabled VCN. diff --git a/examples/create_ipv6_load_balancer_example.py b/examples/create_ipv6_load_balancer_example.py index dbf211e185..c3e6e8a4b7 100644 --- a/examples/create_ipv6_load_balancer_example.py +++ b/examples/create_ipv6_load_balancer_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to create an IPv6 load balancer using the Python SDK. # NOTE: The provided subnet must be within an IPv6-enabled VCN. diff --git a/examples/create_service_gateway_example.py b/examples/create_service_gateway_example.py index be9e3b7556..7172b7a54b 100644 --- a/examples/create_service_gateway_example.py +++ b/examples/create_service_gateway_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to create a Service Gateway. # diff --git a/examples/dns_service_example.py b/examples/dns_service_example.py index 03ec5b64da..7dc2f2afb2 100644 --- a/examples/dns_service_example.py +++ b/examples/dns_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use the DNS service in the Python SDK. This script accepts two # arguments: diff --git a/examples/email_service_example.py b/examples/email_service_example.py index 871323217b..5793f40116 100644 --- a/examples/email_service_example.py +++ b/examples/email_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use the Email Service in the Python SDK. This script accepts two # will demonstrate: diff --git a/examples/exacc_backup_destination.py b/examples/exacc_backup_destination.py index 2978808f23..e441fcf087 100644 --- a/examples/exacc_backup_destination.py +++ b/examples/exacc_backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of CRUD(Create, Read, Update, Delete) operations # on BackupDestination resource. diff --git a/examples/exacc_create_dbhome_backup_destination.py b/examples/exacc_create_dbhome_backup_destination.py index 1e3fa5eca2..9c24be30a7 100644 --- a/examples/exacc_create_dbhome_backup_destination.py +++ b/examples/exacc_create_dbhome_backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Creating a DbHome within a given VmCluster with BackupDestination diff --git a/examples/exacc_dbhome_create_example.py b/examples/exacc_dbhome_create_example.py index 2df71b6cd0..7d7f00f029 100644 --- a/examples/exacc_dbhome_create_example.py +++ b/examples/exacc_dbhome_create_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Creating a DbHome within a given VmCluster diff --git a/examples/exacc_dbhome_get_example.py b/examples/exacc_dbhome_get_example.py index 8a80302bbc..97525e7056 100644 --- a/examples/exacc_dbhome_get_example.py +++ b/examples/exacc_dbhome_get_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Retrieving a DbHome within a given VmCluster diff --git a/examples/exacc_dbhome_list_example.py b/examples/exacc_dbhome_list_example.py index bb6cb9ae89..ad24ea9b9a 100644 --- a/examples/exacc_dbhome_list_example.py +++ b/examples/exacc_dbhome_list_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Retrieving a list of DbHomes within a given VmCluster diff --git a/examples/exacc_infrastructure_example.py b/examples/exacc_infrastructure_example.py index 7caaefc5d9..fad7291b2b 100644 --- a/examples/exacc_infrastructure_example.py +++ b/examples/exacc_infrastructure_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Creating an Exadata Infrastructure at Customer Cloud diff --git a/examples/exacc_update_db_backup_destination.py b/examples/exacc_update_db_backup_destination.py index 536899574a..b0ab641538 100644 --- a/examples/exacc_update_db_backup_destination.py +++ b/examples/exacc_update_db_backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Updating a DB with BackupDestination diff --git a/examples/exacc_vmcluster_example.py b/examples/exacc_vmcluster_example.py index 208ff7c004..1debd1590d 100644 --- a/examples/exacc_vmcluster_example.py +++ b/examples/exacc_vmcluster_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Creating a Vm Cluster Network at Customer Cloud diff --git a/examples/exacc_vmclusternetwork_example.py b/examples/exacc_vmclusternetwork_example.py index 0a856180e6..877a18609e 100644 --- a/examples/exacc_vmclusternetwork_example.py +++ b/examples/exacc_vmclusternetwork_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use database CLI in terms of: # - Creating a Vm Cluster Network at Customer Cloud diff --git a/examples/file_storage_example.py b/examples/file_storage_example.py index f7813f1710..faa255017a 100644 --- a/examples/file_storage_example.py +++ b/examples/file_storage_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use the File Storage service in the Python SDK. This script accepts two # arguments: diff --git a/examples/get_all_instance_ip_addresses_and_dns_info.py b/examples/get_all_instance_ip_addresses_and_dns_info.py index 13940fb15e..f0461a48b1 100644 --- a/examples/get_all_instance_ip_addresses_and_dns_info.py +++ b/examples/get_all_instance_ip_addresses_and_dns_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of retrieving the IP addresses (private and public) and the fully qualified # domain names for an instance. diff --git a/examples/healthchecks_example.py b/examples/healthchecks_example.py index 8489869f09..dd778d2a94 100644 --- a/examples/healthchecks_example.py +++ b/examples/healthchecks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use the Health Checks service. # Please review the documentation for more information about diff --git a/examples/instance_configs_example.py b/examples/instance_configs_example.py index ffe715cf2b..9b12c91458 100644 --- a/examples/instance_configs_example.py +++ b/examples/instance_configs_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use the instance configuration CLI in terms of: # - Creating an instance configuration from input details diff --git a/examples/instance_pools_example.py b/examples/instance_pools_example.py index 8404e973bf..f65e09a7a9 100644 --- a/examples/instance_pools_example.py +++ b/examples/instance_pools_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example of how use the instance pools CLI in terms of: # - Creating an instance configuration to be used for pool diff --git a/examples/instance_principals_examples.py b/examples/instance_principals_examples.py index b2e1f211c5..68e687ec39 100644 --- a/examples/instance_principals_examples.py +++ b/examples/instance_principals_examples.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci diff --git a/examples/invoke_function.py b/examples/invoke_function.py index 1eab7d9ddc..9091506de2 100644 --- a/examples/invoke_function.py +++ b/examples/invoke_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import os import sys diff --git a/examples/kms_example.py b/examples/kms_example.py index e1b34c18ec..403138b638 100644 --- a/examples/kms_example.py +++ b/examples/kms_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import sys diff --git a/examples/launch_db_system_example.py b/examples/launch_db_system_example.py index 3934ad5589..a365b964fd 100644 --- a/examples/launch_db_system_example.py +++ b/examples/launch_db_system_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to launch a DB system using the Python SDK. This script will: # diff --git a/examples/launch_instance_example.py b/examples/launch_instance_example.py index 91d1cd48da..71c482625b 100644 --- a/examples/launch_instance_example.py +++ b/examples/launch_instance_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to launch an instance using the Python SDK. This script will: # diff --git a/examples/launch_instance_pv_encryption_intransit_example.py b/examples/launch_instance_pv_encryption_intransit_example.py index d71aae6aec..a2bcea49da 100755 --- a/examples/launch_instance_pv_encryption_intransit_example.py +++ b/examples/launch_instance_pv_encryption_intransit_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to launch an instance with pvEncryptionInTransit on using the Python SDK. # This script will: diff --git a/examples/load_balancer_lb_compartment_change_example.py b/examples/load_balancer_lb_compartment_change_example.py index c64ff595a9..9d500af268 100644 --- a/examples/load_balancer_lb_compartment_change_example.py +++ b/examples/load_balancer_lb_compartment_change_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of changing a load balancer's compartment, and # requires an existing load balancer, as well as a compartment to move that load balancer diff --git a/examples/load_balancer_lb_cookie_session_persistence_example.py b/examples/load_balancer_lb_cookie_session_persistence_example.py index dc8b59e415..9188c98c6c 100644 --- a/examples/load_balancer_lb_cookie_session_persistence_example.py +++ b/examples/load_balancer_lb_cookie_session_persistence_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example on how to work with session persistance cookies: # diff --git a/examples/load_balancer_path_route_sets_example.py b/examples/load_balancer_path_route_sets_example.py index ed9bf5a7c7..d9525ad327 100644 --- a/examples/load_balancer_path_route_sets_example.py +++ b/examples/load_balancer_path_route_sets_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example on how to work with path route sets on a load balancer by: # diff --git a/examples/load_balancer_rule_sets_example.py b/examples/load_balancer_rule_sets_example.py index 0958b4c16f..65958f29d1 100644 --- a/examples/load_balancer_rule_sets_example.py +++ b/examples/load_balancer_rule_sets_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example on how to work with rule sets on a load balancer by: # diff --git a/examples/move_compartment_example.py b/examples/move_compartment_example.py index 7709eb4d83..e008664eca 100644 --- a/examples/move_compartment_example.py +++ b/examples/move_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example on how to move a compartment to a different compartment # This script will diff --git a/examples/multipart_object_upload.py b/examples/multipart_object_upload.py index 5aa786300a..417234c8fc 100644 --- a/examples/multipart_object_upload.py +++ b/examples/multipart_object_upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import print_function import os diff --git a/examples/network_security_groups_example.py b/examples/network_security_groups_example.py index 4db740702d..aacc7c36ab 100644 --- a/examples/network_security_groups_example.py +++ b/examples/network_security_groups_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to create and modify Network Security Group objects # for a given VCN and VNIC using the Python SDK. diff --git a/examples/object_crud.py b/examples/object_crud.py index 515b839e00..326370e138 100644 --- a/examples/object_crud.py +++ b/examples/object_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import filecmp import oci diff --git a/examples/object_storage_archive_example.py b/examples/object_storage_archive_example.py index d7ddff4083..8f2adb4047 100644 --- a/examples/object_storage_archive_example.py +++ b/examples/object_storage_archive_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use archive storage in the Object Storage service. This example # will create an archive storage bucket and demonstrate putting and restoring objects. diff --git a/examples/object_storage_bucket_tagging_example.py b/examples/object_storage_bucket_tagging_example.py index 747e51bbb7..fcd346a771 100644 --- a/examples/object_storage_bucket_tagging_example.py +++ b/examples/object_storage_bucket_tagging_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to tag buckets in Object Storage. # This script accepts four arguments: diff --git a/examples/object_storage_getnamespace_example.py b/examples/object_storage_getnamespace_example.py index aca60d6f77..3f4087ebdf 100644 --- a/examples/object_storage_getnamespace_example.py +++ b/examples/object_storage_getnamespace_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to get Object Storage namespace of a tenancy that is not their own. This # is useful in cross-tenant Object Storage operations. Object Storage namespace can be retrieved using the diff --git a/examples/pagination.py b/examples/pagination.py index 6d1f1e398b..443f0a3d86 100644 --- a/examples/pagination.py +++ b/examples/pagination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script demonstrates different methods of pagination in the SDK via the oci.pagination module. This module supports: # diff --git a/examples/parallel_upload_to_object_storage.py b/examples/parallel_upload_to_object_storage.py index a2afa82b88..4583672212 100644 --- a/examples/parallel_upload_to_object_storage.py +++ b/examples/parallel_upload_to_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # Uploads all files from a local directory to an object storage bucket # using multiple processes so that the uploads are done in parallel. diff --git a/examples/quotas_example.py b/examples/quotas_example.py index 5b61ae3701..02e30f617a 100644 --- a/examples/quotas_example.py +++ b/examples/quotas_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This is an example demonstrating how Quotas can be manageed using the OCI Python SDK diff --git a/examples/raw_request.py b/examples/raw_request.py index 68438a9819..15f37f6b0a 100644 --- a/examples/raw_request.py +++ b/examples/raw_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import requests from oci.config import from_file diff --git a/examples/remote_peering_connection_example.py b/examples/remote_peering_connection_example.py index 6f31f7711e..89b8d9477f 100644 --- a/examples/remote_peering_connection_example.py +++ b/examples/remote_peering_connection_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use use the Python SDK to create a remote peering of two virtual cloud networks # between two different regions within a single compartment. diff --git a/examples/reserved_public_ip_example.py b/examples/reserved_public_ip_example.py index 9c50530c50..06259bf1a1 100644 --- a/examples/reserved_public_ip_example.py +++ b/examples/reserved_public_ip_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example on how to work with reserved and ephemeral public IPs in the Python SDK by: # diff --git a/examples/resource_principals_example.py b/examples/resource_principals_example.py index 612980d70b..63cd60e28e 100644 --- a/examples/resource_principals_example.py +++ b/examples/resource_principals_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import sys diff --git a/examples/retries.py b/examples/retries.py index 69891c3a60..4b08aeb22f 100644 --- a/examples/retries.py +++ b/examples/retries.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use the retry functionality in the Python SDK when # making calls to Oracle Cloud Infrastructure services. In order to demonstrate this functionality, this script shows diff --git a/examples/retrieve_audit_events.py b/examples/retrieve_audit_events.py index f5e022f476..ea42b05717 100644 --- a/examples/retrieve_audit_events.py +++ b/examples/retrieve_audit_events.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script retrieves all audit logs across an Oracle Cloud Infrastructure Tenancy. # for a timespan defined by start_time and end_time. @@ -10,14 +10,14 @@ import oci -def get_regions(identity): +def get_subscription_regions(identity, tenancy_id): ''' To retrieve the list of all available regions. ''' list_of_regions = [] - list_regions_response = identity.list_regions() + list_regions_response = identity.list_region_subscriptions(tenancy_id) for r in list_regions_response.data: - list_of_regions.append(r.name) + list_of_regions.append(r.region_name) return list_of_regions @@ -74,7 +74,7 @@ def get_audit_events(audit, compartment_ocids, start_time, end_time): start_time = end_time + datetime.timedelta(days=-5) # This array will be used to store the list of available regions. -regions = get_regions(identity) +regions = get_subscription_regions(identity, tenancy_id) # This array will be used to store the list of compartments in the tenancy. compartments = get_compartments(identity, tenancy_id) diff --git a/examples/search_example.py b/examples/search_example.py index 41daee6310..b1da4f8e96 100644 --- a/examples/search_example.py +++ b/examples/search_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to programatically retrieve resource types and # query for resources. diff --git a/examples/showoci/CHANGELOG.rst b/examples/showoci/CHANGELOG.rst index 82934a9b50..e75bfbe50a 100755 --- a/examples/showoci/CHANGELOG.rst +++ b/examples/showoci/CHANGELOG.rst @@ -4,17 +4,26 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. -==================== +===================== +20.01.14 - 2020-01-14 +===================== +* Added users extract to CVS (thank you Josh) +* Fixed route extract when previous route is empty +* Added Native PaaS - OIC/ODA/OCE with -paas flag (Prepared as well OAC) +* Added filter by compartment ocid if specified with -cp +* Added -tenantid to overide it over the profile + +===================== 19.11.19 - 2019-11-19 -==================== +===================== * Added total block volume in CSV export per instance * Added compartment_id to all JSON resources * Changed JSON 'compartment' to 'compartment_name' to be aligned across the application * Added VPUs to the block and boot volumes -==================== +===================== 19.10.31 - 2019-10-31 -==================== +===================== * Added Storage Management for dbsystem * Change output - gb to GB and tb to TB * Added compartment_id, compartment_name, region_name to several areas for json diff --git a/examples/showoci/README.md b/examples/showoci/README.md index 861933deab..1075bf6b32 100755 --- a/examples/showoci/README.md +++ b/examples/showoci/README.md @@ -32,6 +32,10 @@ Output can be printer friendly, CSV files or JSON file. - oci.healthchecks.HealthChecksClient - oci.announcements_service.AnnouncementClient - oci.limits.LimitsClient +- oci.integration.IntegrationInstanceClient +- oci.analytics.AnalyticsClient +- oci.oda.OdaClient +- oci.oce.OceInstanceClient ** DISCLAIMER – This is not an official Oracle application @@ -66,7 +70,6 @@ Allow group ReadOnlyUsers to read public-ips in tenancy Allow group ReadOnlyUsers to read file-family in tenancy Allow group ReadOnlyUsers to read instance-configurations in tenancy Allow Group ReadOnlyUsers to read network-security-groups in tenancy -Allow Group ReadOnlyUsers to use network-security-groups in tenancy /* use required for now to read security group rules */ # Explanation: read instances allows - ListInstances @@ -174,12 +177,12 @@ Execute $ ./showoci.py usage: showoci.py [-h] [-a] [-ani] [-an] [-b] [-n] [-i] [-c] [-cn] [-o] [-l] - [-d] [-f] [-e] [-m] [-s] [-rm] [-so] [-edge] [-lq] [-mc] - [-nr] [-ip] [-t PROFILE] [-p PROXY] [-rg REGION] - [-cp COMPART] [-cpath COMPARTPATH] [-cf CONFIG] [-csv CSV] - [-jf JOUTFILE] [-js] [-sjf SJOUTFILE] [-cachef SERVICEFILE] - [-caches] [--version] - + [-d] [-f] [-e] [-m] [-s] [-rm] [-so] [-paas] [-edge] [-lq] + [-mc] [-nr] [-ip] [-t PROFILE] [-p PROXY] [-rg REGION] + [-cp COMPART] [-tenantid TENANTID] [-cpath COMPARTPATH] + [-cf CONFIG] [-csv CSV] [-jf JOUTFILE] [-js] + [-sjf SJOUTFILE] [-cachef SERVICEFILE] [-caches] [--version] + optional arguments: -h, --help show this help message and exit -a Print All Resources @@ -195,20 +198,22 @@ optional arguments: -d Print Database -f Print File Storage -e Print EMail - -lq Print Limits and Quotas -m Print Monitoring and Notifications -s Print Streams -rm Print Resource management -so Print Summary Only + -paas Print Oracle Paas Native - OIC OAC ODA -edge Print Edge Services (Healthcheck) + -lq Print Limits and Quotas -mc exclude ManagedCompartmentForPaaS -nr Not include root compartment -ip Use Instance Principals for Authentication -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 - -cp COMPART Filter by Compartment - -cpath COMPARTPATH Filter by Compartment using path , example -cpath "Adi Main / Adi Sub" + -cp COMPART Filter by Compartment Name or OCID + -tenantid TENANTID Override confile file tenancy_id + -cpath COMPARTPATH Filter by Compartment path ,(i.e. -cpath "Adi / Sub" -cf CONFIG Config File -csv CSV Output to CSV files, Input as file header -jf JOUTFILE Output to file (JSON format) diff --git a/examples/showoci/showoci.py b/examples/showoci/showoci.py index 362f1f62a8..4d20e720ea 100755 --- a/examples/showoci/showoci.py +++ b/examples/showoci/showoci.py @@ -62,7 +62,7 @@ import argparse import datetime -version = "19.11.19" +version = "20.1.14" ########################################################################## # execute_extract @@ -233,6 +233,7 @@ def set_parser_arguments(): parser.add_argument('-s', action='store_true', default=False, dest='streams', help='Print Streams') parser.add_argument('-rm', action='store_true', default=False, dest='orm', help='Print Resource management') parser.add_argument('-so', action='store_true', default=False, dest='sumonly', help='Print Summary Only') + parser.add_argument('-paas', action='store_true', default=False, dest='paas_native', help='Print Oracle Paas Native - OIC OAC ODA') parser.add_argument('-edge', action='store_true', default=False, dest='edge', help='Print Edge Services (Healthcheck)') parser.add_argument('-lq', action='store_true', default=False, dest='limits', help='Print Limits and Quotas') parser.add_argument('-mc', action='store_true', default=False, dest='mgdcompart', help='exclude ManagedCompartmentForPaaS') @@ -241,7 +242,8 @@ def set_parser_arguments(): 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('-rg', default="", dest='region', help='Filter by Region') - parser.add_argument('-cp', default="", dest='compart', help='Filter by Compartment') + parser.add_argument('-cp', default="", dest='compart', help='Filter by Compartment Name or OCID') + parser.add_argument('-tenantid', default="", dest='tenantid', help='Override confile file tenancy_id') parser.add_argument('-cpath', default="", dest='compartpath', help='Filter by Compartment path ,(i.e. -cpath "Adi / Sub"') parser.add_argument('-cf', type=argparse.FileType('r'), dest='config', help="Config File") parser.add_argument('-csv', default="", dest='csv', help="Output to CSV files, Input as file header") @@ -261,7 +263,7 @@ def set_parser_arguments(): if not (result.all or result.allnoiam or result.network or result.identity or result.compute or result.object or result.load or result.database or result.file or result.email or result.orm or result.container or - result.streams or result.budgets or result.monitoring or result.edge or result.announcement or result.limits): + result.streams or result.budgets or result.monitoring or result.edge or result.announcement or result.limits or result.paas_native): parser.print_help() @@ -327,6 +329,9 @@ def set_service_extract_flags(cmd): if cmd.all or cmd.allnoiam or cmd.limits: prm.read_limits = True + if cmd.all or cmd.allnoiam or cmd.paas_native: + prm.read_paas_native = True + if cmd.all or cmd.allnoiam or cmd.monitoring: prm.read_monitoring_notifications = True @@ -358,6 +363,9 @@ def set_service_extract_flags(cmd): if cmd.instance_principals: prm.use_instance_principals = True + if cmd.tenantid: + prm.filter_by_tenancy_id = cmd.tenantid + return prm diff --git a/examples/showoci/showoci_data.py b/examples/showoci/showoci_data.py index 34b1151024..607ebf2e01 100755 --- a/examples/showoci/showoci_data.py +++ b/examples/showoci/showoci_data.py @@ -118,6 +118,7 @@ def get_showoci_config(self, cmdline, start_time): 'config_profile': self.service.flags.config_section, 'use_instance_principals': self.service.flags.use_instance_principals, 'version': self.service.flags.showoci_version, + 'override_tenant_id': self.service.flags.filter_by_tenancy_id, 'datetime': start_time, 'cmdline': cmdline, 'oci_sdk_version': self.service.get_oci_version() @@ -304,6 +305,14 @@ def __get_oci_region_data(self, region_name): data['quotas'] = value has_data = True + # paas native services + if self.service.flags.read_paas_native: + value = self.__get_paas_native_main(region_name, compartment) + if value is not None: + if len(value) > 0: + data['paas_services'] = value + has_data = True + # add the data to main Variable if has_data: ret_var.append(data) @@ -2471,3 +2480,36 @@ def __get_quotas_main(self, region_name, compartment): except Exception as e: self.__print_error("__get_quotas_main", e) pass + + ########################################################################## + # PaaS Native + ########################################################################## + def __get_paas_native_main(self, region_name, compartment): + try: + paas_services = {} + + # oic + oic = self.service.search_multi_items(self.service.C_PAAS_NATIVE, self.service.C_PAAS_NATIVE_OIC, 'region_name', region_name, 'compartment_id', compartment['id']) + if oic: + paas_services['oic'] = oic + + # oac + oac = self.service.search_multi_items(self.service.C_PAAS_NATIVE, self.service.C_PAAS_NATIVE_OAC, 'region_name', region_name, 'compartment_id', compartment['id']) + if oac: + paas_services['oac'] = oac + + # oce + oce = self.service.search_multi_items(self.service.C_PAAS_NATIVE, self.service.C_PAAS_NATIVE_OCE, 'region_name', region_name, 'compartment_id', compartment['id']) + if oce: + paas_services['oce'] = oce + + # oda + oda = self.service.search_multi_items(self.service.C_PAAS_NATIVE, self.service.C_PAAS_NATIVE_ODA, 'region_name', region_name, 'compartment_id', compartment['id']) + if oda: + paas_services['oda'] = oda + + return paas_services + + except Exception as e: + self.__print_error("__get_paas_native_main", e) + pass diff --git a/examples/showoci/showoci_output.py b/examples/showoci/showoci_output.py index 32687f836e..9e349cc39e 100755 --- a/examples/showoci/showoci_output.py +++ b/examples/showoci/showoci_output.py @@ -112,9 +112,12 @@ def print_showoci_config(self, data): print("Comand Line : " + data['cmdline']) print("OCI SDK Ver : " + data['oci_sdk_version']) if 'proxy' in data: - print("Proxy : " + data['proxy']) + print("Proxy : " + data['proxy']) + if 'override_tenant_id' in data: + if data['override_tenant_id']: + print("Override id : " + data['override_tenant_id']) if 'joutfile' in data: - print("JSON Out : " + data['joutfile']) + print("JSON Out : " + data['joutfile']) print("") @@ -384,18 +387,19 @@ def __print_core_network_vcn_route_tables(self, route_tables, vcn_compartment): try: if not route_tables: return + for rt in route_tables: print("") print(self.tabs + "Route Table : " + rt['name'] + self.__print_core_network_vcn_compartment(vcn_compartment, rt['compartment_name'])) + if 'route_rules' not in rt: print(self.tabs + self.tabs + "Route : Empty.") - return - if len(rt['route_rules']) == 0: - print(self.tabs + self.tabs + "Route : Empty.") - return - - for rl in rt['route_rules']: - print(self.tabs + self.tabs + "Route : " + str(rl['desc'])) + else: + if len(rt['route_rules']) == 0: + print(self.tabs + self.tabs + "Route : Empty.") + else: + for rl in rt['route_rules']: + print(self.tabs + self.tabs + "Route : " + str(rl['desc'])) except Exception as e: self.__print_error("__print_core_network_vcn_route_tables", e) @@ -1126,7 +1130,7 @@ def __print_limits_main(self, limits): self.__print_error("__print_limits_main", e) ########################################################################## - # Streams + # Quotas ########################################################################## def __print_quotas_main(self, quotas): @@ -1146,6 +1150,55 @@ def __print_quotas_main(self, quotas): except Exception as e: self.__print_error("__print_quotas_main", e) + ########################################################################## + # PaaS Servics + ########################################################################## + def __print_paas_services_main(self, paas_services): + + try: + if not paas_services: + return + + # OIC + if 'oic' in paas_services: + self.print_header("OIC Native", 2) + for val in paas_services['oic']: + print(self.taba + val['display_name'] + ", (" + val['integration_instance_type'] + "), Created: " + val['time_created'][0:16] + " (" + val['lifecycle_state'] + ")") + print(self.tabs + "Pack : " + val['message_packs'] + ", BYOL: " + str(val['is_byol'])) + print(self.tabs + "URL : " + val['instance_url']) + print("") + + # OAC + if 'oac' in paas_services: + self.print_header("OAC Native", 2) + for val in paas_services['oac']: + print(self.taba + val['name'] + ", (" + val['feature_set'] + "), Created: " + val['time_created'][0:16] + " (" + val['lifecycle_state'] + ")") + print(self.tabs + "Desc : " + val['description']) + print(self.tabs + "Email: " + val['email_notification'] + ", License: " + str(val['license_type']) + ", Capacity: " + val['capacity_type'] + ":" + val['capacity_value']) + print(self.tabs + "URL : " + val['service_url']) + print("") + + # OCE + if 'oce' in paas_services: + self.print_header("OCE Native", 2) + for val in paas_services['oce']: + print(self.taba + val['name'] + ", Created: " + val['time_created'][0:16] + " (" + val['lifecycle_state'] + ")") + print(self.tabs + "Email: " + val['admin_email']) + if 'pod' in val['service']: + pod = val['service']['pod'] + print(self.tabs + "Pod: " + str(pod['name']) + " (" + str(pod['version']) + ") ") + print("") + + # ODA + if 'oda' in paas_services: + self.print_header("ODA Native", 2) + for val in paas_services['oda']: + print(self.taba + val['display_name'] + ", (" + val['shape_name'] + "), Created: " + val['time_created'][0:16] + " (" + val['lifecycle_state'] + " - " + val['lifecycle_sub_state'] + ")") + print("") + + except Exception as e: + self.__print_error("__print_paas_services_main", e) + ########################################################################## # Container ########################################################################## @@ -1496,6 +1549,8 @@ def __print_region_data(self, region_name, data): self.__print_edge_services_main(cdata['edge_services']) if 'quotas' in cdata: self.__print_quotas_main(cdata['quotas']) + if 'paas_services' in cdata: + self.__print_paas_services_main(cdata['paas_services']) except Exception as e: self.__print_error("__print_region_data", e) @@ -1614,6 +1669,27 @@ def __summary_object_storage_main(self, objects): except Exception as e: self.__print_error("__summary_object_storage_main", e) + ########################################################################## + # paas services + ########################################################################## + def __summary_paas_services_main(self, paas_services): + + try: + if not paas_services: + return + + if 'oic' in paas_services: + self.__summary_core_size(paas_services['oic']) + if 'oac' in paas_services: + self.__summary_core_size(paas_services['oac']) + if 'oce' in paas_services: + self.__summary_core_size(paas_services['oce']) + if 'oda' in paas_services: + self.__summary_core_size(paas_services['oda']) + + except Exception as e: + self.__print_error("__summary_paas_services_main", e) + ########################################################################## # print database autonumous ########################################################################## @@ -1841,6 +1917,8 @@ def __summary_region_data(self, region_name, data): self.__summary_file_storage_main(cdata['file_storage']) if 'load_balancer' in cdata: self.__summary_load_balancer_main(cdata['load_balancer']) + if 'paas_services' in cdata: + self.__summary_paas_services_main(cdata['paas_services']) # print compartment header if data in the global list if 'path' in cdata and self.summary_global_list: @@ -1874,6 +1952,7 @@ class ShowOCICSV(object): ############################################ csv_file_header = "" csv_identity_groups = [] + csv_identity_users = [] csv_identity_policies = [] csv_compute = [] csv_database = [] @@ -2028,6 +2107,27 @@ def __csv_identity_groups(self, groups): except Exception as e: self.__print_error("__csv_identity_groups", e) + ########################################################################## + # CSV Identity Users + ########################################################################## + + def __csv_identity_users(self, users): + try: + for user in users: + data = { + 'user_name': user['name'], + 'description': user['description'], + 'is_mfa_activated': user['is_mfa_activated'], + 'lifecycle_state': user['lifecycle_state'], + 'identity_provider_name': user['identity_provider_name'], + 'user_time_created': user['time_created'], + 'groups': user['groups'] + } + self.csv_identity_users.append(data) + + except Exception as e: + self.__print_error("__csv_identity_users", e) + ########################################################################## # csv Identity Policies ########################################################################## @@ -2058,6 +2158,9 @@ def __csv_identity_policies(self, policies_data): ########################################################################## def __csv_identity_main(self, data): try: + if 'users' in data: + self.__csv_identity_users(data['users']) + if 'groups' in data: self.__csv_identity_groups(data['groups']) @@ -2350,7 +2453,6 @@ def __csv_database_db_autonomous(self, region_name, databases): 'node_count': "", 'database': dbs['db_name'], 'version_license_model': dbs['license_model'], - 'domain': "", 'data_subnet': "", 'backup_subnet': "", 'scan_ips': "", diff --git a/examples/showoci/showoci_service.py b/examples/showoci/showoci_service.py index a93ecd6d59..743908291a 100755 --- a/examples/showoci/showoci_service.py +++ b/examples/showoci/showoci_service.py @@ -15,6 +15,8 @@ # # ShowOCIFlags - class has the flags for calling the service Classes # +# PaaS Services - OCE and OIC Tested +# ODA and OAC need to be tested ########################################################################## from __future__ import print_function import oci @@ -44,6 +46,7 @@ class ShowOCIFlags(object): read_ManagedCompartmentForPaaS = True read_root_compartment = True read_limits = False + read_paas_native = False # is_vcn_exist_for_region is_vcn_exist_for_region = False @@ -52,6 +55,7 @@ class ShowOCIFlags(object): filter_by_region = "" filter_by_compartment = "" filter_by_compartment_path = "" + filter_by_tenancy_id = "" # version, config files and proxy proxy = "" @@ -86,6 +90,7 @@ def is_loop_on_compartments(self): self.read_budgets or self.read_monitoring_notifications or self.read_edge or + self.read_paas_native or self.read_limits) ############################################ @@ -104,7 +109,7 @@ def is_load_basic_network(self): # class ShowOCIService ########################################################################## class ShowOCIService(object): - oci_compatible_version = "2.6.4" + oci_compatible_version = "2.8.0" ########################################################################## # Global Constants @@ -232,6 +237,13 @@ class ShowOCIService(object): C_LIMITS_SERVICES = "services" C_LIMITS_QUOTAS = "quotas" + # Native Services + C_PAAS_NATIVE = "paas_native" + C_PAAS_NATIVE_OIC = "oic" + C_PAAS_NATIVE_OAC = "oac" + C_PAAS_NATIVE_ODA = "oda" + C_PAAS_NATIVE_OCE = "oce" + # Error flag and reboot migration error = 0 warning = 0 @@ -261,11 +273,14 @@ class ShowOCIService(object): {'shape': 'BM.Standard.B1.44', 'cpu': 44, 'memory': 512, 'storage': 0}, {'shape': 'BM.Standard.E2.64', 'cpu': 64, 'memory': 512, 'storage': 0}, {'shape': 'Exadata.Full1.336', 'cpu': 336, 'memory': 5760, 'storage': 336}, - {'shape': 'Exadata.Full2.368', 'cpu': 368, 'memory': 5760, 'storage': 424}, {'shape': 'Exadata.Half1.168', 'cpu': 168, 'memory': 2880, 'storage': 168}, - {'shape': 'Exadata.Half2.184', 'cpu': 184, 'memory': 2880, 'storage': 212}, {'shape': 'Exadata.Quarter1.84', 'cpu': 84, 'memory': 1440, 'storage': 84}, + {'shape': 'Exadata.Full2.368', 'cpu': 368, 'memory': 5760, 'storage': 424}, + {'shape': 'Exadata.Half2.184', 'cpu': 184, 'memory': 2880, 'storage': 212}, {'shape': 'Exadata.Quarter2.92', 'cpu': 92, 'memory': 1440, 'storage': 106}, + {'shape': 'Exadata.Full3.400', 'cpu': 400, 'memory': 5760, 'storage': 479}, + {'shape': 'Exadata.Half3.200', 'cpu': 200, 'memory': 2880, 'storage': 239}, + {'shape': 'Exadata.Quarter3.100', 'cpu': 100, 'memory': 1440, 'storage': 119}, {'shape': 'Exadata.Base.48', 'cpu': 48, 'memory': 720, 'storage': 74.8}, {'shape': 'VM.CPU3.1', 'cpu': 6, 'memory': 90, 'storage': 0}, {'shape': 'VM.CPU3.2', 'cpu': 12, 'memory': 180, 'storage': 0}, @@ -391,6 +406,15 @@ def print_header(self, name, category): def get_tenancy(self): return self.data[self.C_IDENTITY][self.C_IDENTITY_TENANCY] + ########################################################################## + # get tenancy id from file or override + ########################################################################## + def get_tenancy_id(self): + if self.flags.filter_by_tenancy_id: + return self.flags.filter_by_tenancy_id + else: + return self.config["tenancy"] + ########################################################################## # return compartment data ########################################################################## @@ -591,7 +615,7 @@ def __print_error(self, msg, e): # check service error to warn instead of error ########################################################################## def __check_service_error(self, code): - return 'auth' in str(code).lower() or 'notfound' in str(code).lower() or code == 'Forbidden' or code == 'TooManyRequests' or code == 'IncorrectState' or code == 'LimitExceeded' + return 'max retries exceeded' in str(code).lower() or 'auth' in str(code).lower() or 'notfound' in str(code).lower() or code == 'Forbidden' or code == 'TooManyRequests' or code == 'IncorrectState' or code == 'LimitExceeded' ########################################################################## # check request error if service not exists for region @@ -761,6 +785,10 @@ def __load_oci_region_data(self, region_name): if self.flags.read_limits: self.__load_limits_main() + # email distributions + if self.flags.read_paas_native: + self.__load_paas_native_main() + et = time.time() - region_start_time print("*** Elapsed Region '" + region_name + "' - " + '{:02d}:{:02d}:{:02d}'.format(round(et // 3600), (round(et % 3600 // 60)), round(et % 60)) + " ***") @@ -777,12 +805,17 @@ def __load_identity_main(self): identity.base_client.session.proxies = {'https': self.flags.proxy} # get tenancy id from the config file - tenancy_id = self.config["tenancy"] + tenancy_id = self.get_tenancy_id() self.data[self.C_IDENTITY] = {} # loading main components - tenancy and compartments self.__load_identity_tenancy(identity, tenancy_id) - self.__load_identity_compartments(identity) + + # Load single compartment or all + if 'ocid1.compartment' in self.flags.filter_by_compartment: + self.__load_identity_single_compartments(identity) + else: + self.__load_identity_compartments(identity) # if loading the full identity - load the rest if self.flags.read_identity: @@ -906,7 +939,7 @@ def build_compartments_nested(identity_client, cid, path): # if filter by compartment, then reduce list and return new list if self.flags.filter_by_compartment: for x in sorted_compartments: - if self.flags.filter_by_compartment in x['name']: + if self.flags.filter_by_compartment in x['name'] or self.flags.filter_by_compartment in x['id']: filtered_compart.append(x) # if filter by path compartment, then reduce list and return new list @@ -924,6 +957,39 @@ def build_compartments_nested(identity_client, cid, path): except Exception as e: raise Exception("Error in __load_identity_compartments: " + str(e.args)) + ########################################################################## + # Load single compartment to support BOAT authentication + ########################################################################## + def __load_identity_single_compartments(self, identity): + + self.__load_print_status("Compartments") + start_time = time.time() + + compartments = [] + try: + + # read compartments to variable + compartment = "" + try: + compartment = identity.get_compartment(self.flags.filter_by_compartment).data + except oci.exceptions.ServiceError as e: + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + else: + raise + + if compartment: + cvalue = {'id': str(compartment.id), 'name': str(compartment.name), 'path': str(compartment.name)} + compartments.append(cvalue) + + self.data[self.C_IDENTITY][self.C_IDENTITY_COMPARTMENTS] = compartments + self.__load_print_cnt(len(compartments), start_time) + + except oci.exceptions.RequestException: + raise + except Exception as e: + raise Exception("Error in __load_identity_single_compartments: " + str(e.args)) + ########################################################################## # Get Identity Users ########################################################################## @@ -1217,7 +1283,7 @@ def __load_identity_availability_domain(self, region_name): # get the domains availability_domains = [] try: - availability_domains = identity.list_availability_domains(self.config["tenancy"]).data + availability_domains = identity.list_availability_domains(self.get_tenancy_id()).data except oci.exceptions.ServiceError as e: if self.__check_service_error(e.code): self.__load_print_auth_warning() @@ -5911,7 +5977,7 @@ def __load_streams_streams(self, stream_client, compartments): streams = [] try: streams = oci.pagination.list_call_get_all_results( - stream_client.list_streams, compartment['id'], + stream_client.list_streams, compartment_id=compartment['id'], sort_by="NAME", lifecycle_state=oci.streaming.models.StreamSummary.LIFECYCLE_STATE_ACTIVE ).data @@ -6492,6 +6558,9 @@ def __load_edge_healthchecks_http(self, healthcheck_client, compartments): self.__load_print_auth_warning() continue raise + except oci.exceptions.ConnectTimeout: + self.__load_print_auth_warning() + continue val = {'id': str(health.id), 'results_url': str(health.results_url), @@ -6527,6 +6596,362 @@ def __load_edge_healthchecks_http(self, healthcheck_client, compartments): self.__print_error("__load_edge_healthchecks_http", e) return data + ########################################################################## + # __load_paas_native_main + ########################################################################## + # + # OCI Classes used: + # + # oci.integration.IntegrationInstanceClient + # oci.analytics.AnalyticsClient + # oci.oda.OdaClient + # oci.oce.OceInstanceClient + # Comment OAC until OAC go live, to avoid timeout + ########################################################################## + def __load_paas_native_main(self): + + try: + print("PaaS Native Services...") + + # clients + oic_client = oci.integration.IntegrationInstanceClient(self.config, signer=self.signer, timeout=1) + oac_client = oci.analytics.AnalyticsClient(self.config, signer=self.signer, timeout=0.1) + oda_client = oci.oda.OdaClient(self.config, signer=self.signer, timeout=1) + oce_client = oci.oce.OceInstanceClient(self.config, signer=self.signer, timeout=1) + + if self.flags.proxy: + oic_client.base_client.session.proxies = {'https': self.flags.proxy} + oac_client.base_client.session.proxies = {'https': self.flags.proxy} + oda_client.base_client.session.proxies = {'https': self.flags.proxy} + oce_client.base_client.session.proxies = {'https': self.flags.proxy} + + # reference to compartments + compartments = self.get_compartment() + + # add the key if not exists + self.__initialize_data_key(self.C_PAAS_NATIVE, self.C_PAAS_NATIVE_OAC) + self.__initialize_data_key(self.C_PAAS_NATIVE, self.C_PAAS_NATIVE_OIC) + self.__initialize_data_key(self.C_PAAS_NATIVE, self.C_PAAS_NATIVE_ODA) + self.__initialize_data_key(self.C_PAAS_NATIVE, self.C_PAAS_NATIVE_OCE) + + # reference to paas + paas = self.data[self.C_PAAS_NATIVE] + + # append the data + paas[self.C_PAAS_NATIVE_OIC] += self.__load_paas_oic(oic_client, compartments) + # paas[self.C_PAAS_NATIVE_OAC] += self.__load_paas_oac(oac_client, compartments) + paas[self.C_PAAS_NATIVE_ODA] += self.__load_paas_oda(oda_client, compartments) + paas[self.C_PAAS_NATIVE_OCE] += self.__load_paas_oce(oce_client, compartments) + print("") + + except oci.exceptions.RequestException: + raise + except oci.exceptions.ServiceError: + raise + except Exception as e: + self.__print_error("__load_paas_native_main", e) + + ########################################################################## + # __load_paas_oic + ########################################################################## + def __load_paas_oic(self, oic_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + self.__load_print_status("OIC Native") + + # loop on all compartments + for compartment in compartments: + + # skip managed paas compartment + if self.__if_managed_paas_compartment(compartment['name']): + print(".", end="") + continue + + oics = [] + try: + oics = oci.pagination.list_call_get_all_results( + oic_client.list_integration_instances, + compartment['id'], + sort_by="DISPLAYNAME" + ).data + + except oci.exceptions.ServiceError as e: + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + continue + raise + except oci.exceptions.ConnectTimeout: + self.__load_print_auth_warning() + continue + + print(".", end="") + + # oic = oci.integration.models.IntegrationInstanceSummary + for oic in oics: + if (oic.lifecycle_state == 'ACTIVE' or oic.lifecycle_state == 'UPDATING'): + + val = {'id': str(oic.id), + 'display_name': str(oic.display_name), + 'integration_instance_type': str(oic.integration_instance_type), + 'time_created': str(oic.time_created), + 'time_updated': str(oic.time_updated), + 'lifecycle_state': str(oic.lifecycle_state), + 'state_message': str(oic.state_message), + 'instance_url': str(oic.instance_url), + 'message_packs': str(oic.message_packs), + 'is_byol': oic.is_byol, + 'sum_info': "PaaS OIC Native - Msg Pack", + 'sum_size_gb': str(oic.message_packs), + 'compartment_name': str(compartment['name']), + 'compartment_id': str(compartment['id']), + 'region_name': str(self.config['region'])} + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_cnt(cnt, start_time) + return data + + except oci.exceptions.RequestException as e: + if self.__check_request_error(e): + return data + raise + except Exception as e: + self.__print_error("__load_paas_oic", e) + return data + + ########################################################################## + # __load_paas_oac + ########################################################################## + def __load_paas_oac(self, oac_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + self.__load_print_status("OAC Native") + + # loop on all compartments + for compartment in compartments: + + # skip managed paas compartment + if self.__if_managed_paas_compartment(compartment['name']): + print(".", end="") + continue + + oacs = [] + try: + oacs = oci.pagination.list_call_get_all_results( + oac_client.list_analytics_instances, + compartment['id'], + sort_by="name" + ).data + + except oci.exceptions.ServiceError as e: + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + continue + raise + except oci.exceptions.ConnectTimeout: + self.__load_print_auth_warning() + continue + + print(".", end="") + + # oac = oci.analytics.models.AnalyticsInstanceSummary + for oac in oacs: + if (oac.lifecycle_state == 'ACTIVE' or oac.lifecycle_state == 'UPDATING'): + + val = {'id': str(oac.id), + 'name': str(oac.name), + 'description': str(oac.description), + 'time_created': str(oac.time_created), + 'time_updated': str(oac.time_updated), + 'lifecycle_state': str(oac.lifecycle_state), + 'feature_set': str(oac.feature_set), + 'license_type': str(oac.license_type), + 'capacity_type': str(oac.capacity.capacity_type), + 'capacity_value': str(oac.capacity.capacity_value), + 'email_notification': str(oac.email_notification), + 'service_url': str(oac.service_url), + 'sum_info': "PaaS OAC Native", + 'sum_size_gb': str(oac.capacity.capacity_value), + 'compartment_name': str(compartment['name']), + 'compartment_id': str(compartment['id']), + 'region_name': str(self.config['region'])} + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_cnt(cnt, start_time) + return data + + except oci.exceptions.RequestException as e: + if self.__check_request_error(e): + return data + raise + except Exception as e: + self.__print_error("__load_paas_oac", e) + return data + + ########################################################################## + # __load_paas_oce + ########################################################################## + def __load_paas_oce(self, oce_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + self.__load_print_status("OCE Native") + + # loop on all compartments + for compartment in compartments: + + # skip managed paas compartment + if self.__if_managed_paas_compartment(compartment['name']): + print(".", end="") + continue + + oces = [] + try: + oces = oci.pagination.list_call_get_all_results( + oce_client.list_oce_instances, + compartment['id'], + sort_by="displayName" + ).data + + except oci.exceptions.ServiceError as e: + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + continue + raise + except oci.exceptions.ConnectTimeout: + self.__load_print_auth_warning() + continue + + print(".", end="") + + # oce = oci.oce.models.OceInstanceSummary + for oce in oces: + if oce.lifecycle_state == 'ACTIVE' or oce.lifecycle_state == 'UPDATING': + val = {'id': str(oce.id), + 'guid': str(oce.guid), + 'description': str(oce.description), + 'name': str(oce.name), + 'tenancy_name': str(oce.tenancy_name), + 'idcs_tenancy': str(oce.idcs_tenancy), + 'object_storage_namespace': str(oce.object_storage_namespace), + 'admin_email': str(oce.admin_email), + 'time_created': str(oce.time_created), + 'time_updated': str(oce.time_updated), + 'lifecycle_state': str(oce.lifecycle_state), + 'state_message': str(oce.state_message), + 'service': oce.service, + 'sum_info': "PaaS OCE Native", + 'sum_size_gb': str("1"), + 'compartment_name': str(compartment['name']), + 'compartment_id': str(compartment['id']), + 'defined_tags': [] if oce.defined_tags is None else oce.defined_tags, + 'freeform_tags': [] if oce.freeform_tags is None else oce.freeform_tags, + 'region_name': str(self.config['region'])} + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_cnt(cnt, start_time) + return data + + except oci.exceptions.RequestException as e: + if self.__check_request_error(e): + return data + raise + except Exception as e: + self.__print_error("__load_paas_oce", e) + return data + + ########################################################################## + # __load_paas_oda + ########################################################################## + def __load_paas_oda(self, oda_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + self.__load_print_status("ODA Native") + + # loop on all compartments + for compartment in compartments: + + # skip managed paas compartment + if self.__if_managed_paas_compartment(compartment['name']): + print(".", end="") + continue + + odas = [] + try: + odas = oci.pagination.list_call_get_all_results( + oda_client.list_oda_instances, + compartment['id'] + ).data + + except oci.exceptions.ServiceError as e: + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + continue + raise + except oci.exceptions.ConnectTimeout: + self.__load_print_auth_warning() + continue + + print(".", end="") + + # oda = oci.oda.models.OdaInstanceSummary + for oda in odas: + if (oda.lifecycle_state == 'ACTIVE' or oda.lifecycle_state == 'UPDATING'): + val = {'id': str(oda.id), + 'display_name': str(oda.display_name), + 'description': str(oda.description), + 'shape_name': str(oda.shape_name), + 'time_created': str(oda.time_created), + 'time_updated': str(oda.time_updated), + 'lifecycle_state': str(oda.lifecycle_state), + 'lifecycle_sub_state': str(oda.lifecycle_sub_state), + 'state_message': str(oda.state_message), + 'sum_info': "PaaS ODA Native " + str(oda.shape_name), + 'sum_size_gb': str("1"), + 'compartment_name': str(compartment['name']), + 'compartment_id': str(compartment['id']), + 'defined_tags': [] if oda.defined_tags is None else oda.defined_tags, + 'freeform_tags': [] if oda.freeform_tags is None else oda.freeform_tags, + 'region_name': str(self.config['region'])} + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_cnt(cnt, start_time) + return data + + except oci.exceptions.RequestException as e: + if self.__check_request_error(e): + return data + raise + except Exception as e: + self.__print_error("__load_paas_oda", e) + return data + ########################################################################## # __load_announcement_main ########################################################################## diff --git a/examples/stop_untagged_instances.py b/examples/stop_untagged_instances.py index 8f0ae15b70..d29e4b2213 100644 --- a/examples/stop_untagged_instances.py +++ b/examples/stop_untagged_instances.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to find, stop and report on instances that have # been improperly tagged. diff --git a/examples/stream_example.py b/examples/stream_example.py index 1328b37ab1..928d450879 100644 --- a/examples/stream_example.py +++ b/examples/stream_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import sys diff --git a/examples/tagging.py b/examples/tagging.py index 8ac791abbe..de54428942 100644 --- a/examples/tagging.py +++ b/examples/tagging.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example on how to use tagging in the Python SDK to manage tags and tag namespaces, as # well as how to apply freeform and defined tags to a resource. diff --git a/examples/update_network_security_groups_example.py b/examples/update_network_security_groups_example.py index 03739f4009..86a5c3fdb3 100644 --- a/examples/update_network_security_groups_example.py +++ b/examples/update_network_security_groups_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to upate Network Security Group objects # for a given load balancer using the Python SDK. diff --git a/examples/user_crud.py b/examples/user_crud.py index d25b1aded9..4fa85dd176 100644 --- a/examples/user_crud.py +++ b/examples/user_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci from oci.identity.models import AddUserToGroupDetails, CreateGroupDetails, CreateUserDetails diff --git a/examples/volume_attachment_example.py b/examples/volume_attachment_example.py index 6eb717d387..71cb644ba3 100644 --- a/examples/volume_attachment_example.py +++ b/examples/volume_attachment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to attach volumes to an instance using different volume attachment # types. It covers: diff --git a/examples/volume_attachment_pv_encryption_intransit_example.py b/examples/volume_attachment_pv_encryption_intransit_example.py index c1ca9b06b5..debddbf7c3 100755 --- a/examples/volume_attachment_pv_encryption_intransit_example.py +++ b/examples/volume_attachment_pv_encryption_intransit_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to attach a volume to an instance with pvEncryptionInTransit on. # diff --git a/examples/volume_backup_policy_example.py b/examples/volume_backup_policy_example.py index f0027d0043..04a1fbd1f9 100644 --- a/examples/volume_backup_policy_example.py +++ b/examples/volume_backup_policy_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This example demonstrates how to list and apply backup policies to an existing volume. Note that in order to list and apply backup policies you will need # the appropriate level of access. See the section "Required IAM Policy" on this page: diff --git a/examples/wait_for_resource_in_state.py b/examples/wait_for_resource_in_state.py index 0fc1af56c2..2c4d91c8a0 100644 --- a/examples/wait_for_resource_in_state.py +++ b/examples/wait_for_resource_in_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides an example on how to use waiters in the Python SDK to block/wait until a resource (e.g. an instance, a VCN) # reaches a certain state. diff --git a/examples/work_requests.py b/examples/work_requests.py index f356fec62e..3d7e59cd5b 100644 --- a/examples/work_requests.py +++ b/examples/work_requests.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # This script provides a basic example of how to use work requests using Python SDK. # This script will: diff --git a/scripts/wercker_validate.py b/scripts/wercker_validate.py index e20ba7d098..777b7fc92a 100644 --- a/scripts/wercker_validate.py +++ b/scripts/wercker_validate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # A very basic script that can be run at the end of a wercker build to ensure that the SDK can be imported # and used to make a call. This uses dummy values so the intended behaviour is that the call will fail diff --git a/src/oci/__init__.py b/src/oci/__init__.py index c815589991..6055581b0e 100644 --- a/src/oci/__init__.py +++ b/src/oci/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from . import analytics, announcements_service, apigateway, audit, autoscaling, budget, container_engine, core, database, dns, dts, email, events, file_storage, functions, healthchecks, identity, integration, key_management, limits, load_balancer, marketplace, monitoring, object_storage, oce, oda, ons, os_management, resource_manager, resource_search, streaming, waas, work_requests from . import auth, config, constants, decorators, exceptions, regions, pagination, retry, fips diff --git a/src/oci/_vendor/chardet/__init__.py b/src/oci/_vendor/chardet/__init__.py index 1c57f23486..75da687f32 100644 --- a/src/oci/_vendor/chardet/__init__.py +++ b/src/oci/_vendor/chardet/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet ######################## BEGIN LICENSE BLOCK ######################## diff --git a/src/oci/_vendor/chardet/big5freq.py b/src/oci/_vendor/chardet/big5freq.py index c625328fb6..dc8b086a22 100644 --- a/src/oci/_vendor/chardet/big5freq.py +++ b/src/oci/_vendor/chardet/big5freq.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # Big5 frequency table diff --git a/src/oci/_vendor/chardet/big5prober.py b/src/oci/_vendor/chardet/big5prober.py index e80f990045..fb068b129a 100644 --- a/src/oci/_vendor/chardet/big5prober.py +++ b/src/oci/_vendor/chardet/big5prober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .mbcharsetprober import MultiByteCharSetProber diff --git a/src/oci/_vendor/chardet/chardistribution.py b/src/oci/_vendor/chardet/chardistribution.py index 120b491352..efe832b50e 100644 --- a/src/oci/_vendor/chardet/chardistribution.py +++ b/src/oci/_vendor/chardet/chardistribution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, diff --git a/src/oci/_vendor/chardet/charsetgroupprober.py b/src/oci/_vendor/chardet/charsetgroupprober.py index fcfb10a8ab..680a306606 100644 --- a/src/oci/_vendor/chardet/charsetgroupprober.py +++ b/src/oci/_vendor/chardet/charsetgroupprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .enums import ProbingState diff --git a/src/oci/_vendor/chardet/charsetprober.py b/src/oci/_vendor/chardet/charsetprober.py index d5d75b64a3..cb89e46464 100644 --- a/src/oci/_vendor/chardet/charsetprober.py +++ b/src/oci/_vendor/chardet/charsetprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet import logging diff --git a/src/oci/_vendor/chardet/codingstatemachine.py b/src/oci/_vendor/chardet/codingstatemachine.py index 08a8fa222e..cd7bdc0a3c 100644 --- a/src/oci/_vendor/chardet/codingstatemachine.py +++ b/src/oci/_vendor/chardet/codingstatemachine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet import logging diff --git a/src/oci/_vendor/chardet/compat.py b/src/oci/_vendor/chardet/compat.py index 547d344a72..46477ad7e5 100644 --- a/src/oci/_vendor/chardet/compat.py +++ b/src/oci/_vendor/chardet/compat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet ######################## BEGIN LICENSE BLOCK ######################## diff --git a/src/oci/_vendor/chardet/cp949prober.py b/src/oci/_vendor/chardet/cp949prober.py index e87f6f8b1d..1c432e59f0 100644 --- a/src/oci/_vendor/chardet/cp949prober.py +++ b/src/oci/_vendor/chardet/cp949prober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .chardistribution import EUCKRDistributionAnalysis diff --git a/src/oci/_vendor/chardet/enums.py b/src/oci/_vendor/chardet/enums.py index 359e6aac0d..5ceef1a7e3 100644 --- a/src/oci/_vendor/chardet/enums.py +++ b/src/oci/_vendor/chardet/enums.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet """ diff --git a/src/oci/_vendor/chardet/escprober.py b/src/oci/_vendor/chardet/escprober.py index a9bf3088de..d92d2f4e67 100644 --- a/src/oci/_vendor/chardet/escprober.py +++ b/src/oci/_vendor/chardet/escprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/escsm.py b/src/oci/_vendor/chardet/escsm.py index dd6265e128..9ebb46cc9f 100644 --- a/src/oci/_vendor/chardet/escsm.py +++ b/src/oci/_vendor/chardet/escsm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .enums import MachineState diff --git a/src/oci/_vendor/chardet/eucjpprober.py b/src/oci/_vendor/chardet/eucjpprober.py index d4a6d65319..198fd09010 100644 --- a/src/oci/_vendor/chardet/eucjpprober.py +++ b/src/oci/_vendor/chardet/eucjpprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .enums import ProbingState, MachineState diff --git a/src/oci/_vendor/chardet/euckrfreq.py b/src/oci/_vendor/chardet/euckrfreq.py index b9169eb552..4252683c1a 100644 --- a/src/oci/_vendor/chardet/euckrfreq.py +++ b/src/oci/_vendor/chardet/euckrfreq.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # Sampling from about 20M text materials include literature and computer technology diff --git a/src/oci/_vendor/chardet/euckrprober.py b/src/oci/_vendor/chardet/euckrprober.py index 967c1f95bc..2c245c69e9 100644 --- a/src/oci/_vendor/chardet/euckrprober.py +++ b/src/oci/_vendor/chardet/euckrprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .mbcharsetprober import MultiByteCharSetProber diff --git a/src/oci/_vendor/chardet/euctwfreq.py b/src/oci/_vendor/chardet/euctwfreq.py index 6f372b2b4c..7b6cc7c781 100644 --- a/src/oci/_vendor/chardet/euctwfreq.py +++ b/src/oci/_vendor/chardet/euctwfreq.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # EUCTW frequency table diff --git a/src/oci/_vendor/chardet/euctwprober.py b/src/oci/_vendor/chardet/euctwprober.py index 6a059d5e67..5edede16a6 100644 --- a/src/oci/_vendor/chardet/euctwprober.py +++ b/src/oci/_vendor/chardet/euctwprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .mbcharsetprober import MultiByteCharSetProber diff --git a/src/oci/_vendor/chardet/gb2312freq.py b/src/oci/_vendor/chardet/gb2312freq.py index bb957800b1..a1409770e2 100644 --- a/src/oci/_vendor/chardet/gb2312freq.py +++ b/src/oci/_vendor/chardet/gb2312freq.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # GB2312 most frequently used character table diff --git a/src/oci/_vendor/chardet/gb2312prober.py b/src/oci/_vendor/chardet/gb2312prober.py index d6258f9a95..043d47386a 100644 --- a/src/oci/_vendor/chardet/gb2312prober.py +++ b/src/oci/_vendor/chardet/gb2312prober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .mbcharsetprober import MultiByteCharSetProber diff --git a/src/oci/_vendor/chardet/hebrewprober.py b/src/oci/_vendor/chardet/hebrewprober.py index fbe3de8563..3b54c6e822 100644 --- a/src/oci/_vendor/chardet/hebrewprober.py +++ b/src/oci/_vendor/chardet/hebrewprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/jisfreq.py b/src/oci/_vendor/chardet/jisfreq.py index dc6ab82aac..54a0b52381 100644 --- a/src/oci/_vendor/chardet/jisfreq.py +++ b/src/oci/_vendor/chardet/jisfreq.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # Sampling from about 20M text materials include literature and computer technology diff --git a/src/oci/_vendor/chardet/jpcntx.py b/src/oci/_vendor/chardet/jpcntx.py index 541f9fc1db..c0707b2975 100644 --- a/src/oci/_vendor/chardet/jpcntx.py +++ b/src/oci/_vendor/chardet/jpcntx.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langbulgarianmodel.py b/src/oci/_vendor/chardet/langbulgarianmodel.py index 780f4762b0..66bca51e55 100644 --- a/src/oci/_vendor/chardet/langbulgarianmodel.py +++ b/src/oci/_vendor/chardet/langbulgarianmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/langcyrillicmodel.py b/src/oci/_vendor/chardet/langcyrillicmodel.py index 1b8012c664..55cc989321 100644 --- a/src/oci/_vendor/chardet/langcyrillicmodel.py +++ b/src/oci/_vendor/chardet/langcyrillicmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # KOI8-R language model diff --git a/src/oci/_vendor/chardet/langgreekmodel.py b/src/oci/_vendor/chardet/langgreekmodel.py index 11f92faeca..b88c846364 100644 --- a/src/oci/_vendor/chardet/langgreekmodel.py +++ b/src/oci/_vendor/chardet/langgreekmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/langhebrewmodel.py b/src/oci/_vendor/chardet/langhebrewmodel.py index 2ff8c347f1..659636a210 100644 --- a/src/oci/_vendor/chardet/langhebrewmodel.py +++ b/src/oci/_vendor/chardet/langhebrewmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/langhungarianmodel.py b/src/oci/_vendor/chardet/langhungarianmodel.py index 2d64d8eddc..1e7834d5ba 100644 --- a/src/oci/_vendor/chardet/langhungarianmodel.py +++ b/src/oci/_vendor/chardet/langhungarianmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/langthaimodel.py b/src/oci/_vendor/chardet/langthaimodel.py index be8855d6a6..d4e6aaba77 100644 --- a/src/oci/_vendor/chardet/langthaimodel.py +++ b/src/oci/_vendor/chardet/langthaimodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/langturkishmodel.py b/src/oci/_vendor/chardet/langturkishmodel.py index 40f5b5ac00..cea755fb90 100644 --- a/src/oci/_vendor/chardet/langturkishmodel.py +++ b/src/oci/_vendor/chardet/langturkishmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet # 255: Control characters that usually does not exist in any text diff --git a/src/oci/_vendor/chardet/latin1prober.py b/src/oci/_vendor/chardet/latin1prober.py index 5f5e757a2c..6065ae89bf 100644 --- a/src/oci/_vendor/chardet/latin1prober.py +++ b/src/oci/_vendor/chardet/latin1prober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/mbcharsetprober.py b/src/oci/_vendor/chardet/mbcharsetprober.py index adf1ed6a39..01445e1b58 100644 --- a/src/oci/_vendor/chardet/mbcharsetprober.py +++ b/src/oci/_vendor/chardet/mbcharsetprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/mbcsgroupprober.py b/src/oci/_vendor/chardet/mbcsgroupprober.py index 77274efb4c..14edbb7908 100644 --- a/src/oci/_vendor/chardet/mbcsgroupprober.py +++ b/src/oci/_vendor/chardet/mbcsgroupprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetgroupprober import CharSetGroupProber diff --git a/src/oci/_vendor/chardet/mbcssm.py b/src/oci/_vendor/chardet/mbcssm.py index 64c5e16cda..0ef6beae90 100644 --- a/src/oci/_vendor/chardet/mbcssm.py +++ b/src/oci/_vendor/chardet/mbcssm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .enums import MachineState diff --git a/src/oci/_vendor/chardet/sbcharsetprober.py b/src/oci/_vendor/chardet/sbcharsetprober.py index f9c4ffc29d..c95db22367 100644 --- a/src/oci/_vendor/chardet/sbcharsetprober.py +++ b/src/oci/_vendor/chardet/sbcharsetprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/sbcsgroupprober.py b/src/oci/_vendor/chardet/sbcsgroupprober.py index 5e761ef564..151381a9c6 100644 --- a/src/oci/_vendor/chardet/sbcsgroupprober.py +++ b/src/oci/_vendor/chardet/sbcsgroupprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetgroupprober import CharSetGroupProber diff --git a/src/oci/_vendor/chardet/sjisprober.py b/src/oci/_vendor/chardet/sjisprober.py index d1b292fd02..f6580858cc 100644 --- a/src/oci/_vendor/chardet/sjisprober.py +++ b/src/oci/_vendor/chardet/sjisprober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .mbcharsetprober import MultiByteCharSetProber diff --git a/src/oci/_vendor/chardet/universaldetector.py b/src/oci/_vendor/chardet/universaldetector.py index ac4992b4a4..9d7132da6b 100644 --- a/src/oci/_vendor/chardet/universaldetector.py +++ b/src/oci/_vendor/chardet/universaldetector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet """ diff --git a/src/oci/_vendor/chardet/utf8prober.py b/src/oci/_vendor/chardet/utf8prober.py index d5867c13c4..5d3b9aa9f2 100644 --- a/src/oci/_vendor/chardet/utf8prober.py +++ b/src/oci/_vendor/chardet/utf8prober.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet from .charsetprober import CharSetProber diff --git a/src/oci/_vendor/chardet/version.py b/src/oci/_vendor/chardet/version.py index e493a5a8df..6cb4da7ae6 100644 --- a/src/oci/_vendor/chardet/version.py +++ b/src/oci/_vendor/chardet/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet """ diff --git a/src/oci/_vendor/httpsig_cffi/__init__.py b/src/oci/_vendor/httpsig_cffi/__init__.py index 00b0dd36e1..8ab1ce3fda 100644 --- a/src/oci/_vendor/httpsig_cffi/__init__.py +++ b/src/oci/_vendor/httpsig_cffi/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2014 Adam Knight # Original Work: Copyright (c) 2012 Adam T. Lindsay (original author) diff --git a/src/oci/_vendor/httpsig_cffi/requests_auth.py b/src/oci/_vendor/httpsig_cffi/requests_auth.py index 6fd737c30e..cf1e5610a5 100644 --- a/src/oci/_vendor/httpsig_cffi/requests_auth.py +++ b/src/oci/_vendor/httpsig_cffi/requests_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2014 Adam Knight # Original Work: Copyright (c) 2012 Adam T. Lindsay (original author) diff --git a/src/oci/_vendor/httpsig_cffi/sign.py b/src/oci/_vendor/httpsig_cffi/sign.py index 162dcbcc98..3ddd4484db 100644 --- a/src/oci/_vendor/httpsig_cffi/sign.py +++ b/src/oci/_vendor/httpsig_cffi/sign.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2014 Adam Knight # Original Work: Copyright (c) 2012 Adam T. Lindsay (original author) diff --git a/src/oci/_vendor/httpsig_cffi/utils.py b/src/oci/_vendor/httpsig_cffi/utils.py index 1adfc4f88e..5276390154 100644 --- a/src/oci/_vendor/httpsig_cffi/utils.py +++ b/src/oci/_vendor/httpsig_cffi/utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2014 Adam Knight # Original Work: Copyright (c) 2012 Adam T. Lindsay (original author) diff --git a/src/oci/_vendor/httpsig_cffi/verify.py b/src/oci/_vendor/httpsig_cffi/verify.py index 5dd88a59b7..45ca592137 100644 --- a/src/oci/_vendor/httpsig_cffi/verify.py +++ b/src/oci/_vendor/httpsig_cffi/verify.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2014 Adam Knight # Original Work: Copyright (c) 2012 Adam T. Lindsay (original author) diff --git a/src/oci/_vendor/idna/__init__.py b/src/oci/_vendor/idna/__init__.py index 74934b611a..25bb56371d 100644 --- a/src/oci/_vendor/idna/__init__.py +++ b/src/oci/_vendor/idna/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. from .package_data import __version__ diff --git a/src/oci/_vendor/idna/codec.py b/src/oci/_vendor/idna/codec.py index a70175a197..b5f139aef6 100644 --- a/src/oci/_vendor/idna/codec.py +++ b/src/oci/_vendor/idna/codec.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. from .core import encode, decode, alabel, ulabel, IDNAError diff --git a/src/oci/_vendor/idna/compat.py b/src/oci/_vendor/idna/compat.py index f75e834602..45a4b3ca59 100644 --- a/src/oci/_vendor/idna/compat.py +++ b/src/oci/_vendor/idna/compat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. from .core import * diff --git a/src/oci/_vendor/idna/core.py b/src/oci/_vendor/idna/core.py index 0c28b617a0..fbf6e0802d 100644 --- a/src/oci/_vendor/idna/core.py +++ b/src/oci/_vendor/idna/core.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. from . import idnadata diff --git a/src/oci/_vendor/idna/idnadata.py b/src/oci/_vendor/idna/idnadata.py index 8b753f9db4..d987cbfc5d 100644 --- a/src/oci/_vendor/idna/idnadata.py +++ b/src/oci/_vendor/idna/idnadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. # This file is automatically generated by tools/idna-data diff --git a/src/oci/_vendor/idna/intranges.py b/src/oci/_vendor/idna/intranges.py index 0685764594..31e4990183 100644 --- a/src/oci/_vendor/idna/intranges.py +++ b/src/oci/_vendor/idna/intranges.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. """ diff --git a/src/oci/_vendor/idna/package_data.py b/src/oci/_vendor/idna/package_data.py index 29923dc580..64ee5b8fad 100644 --- a/src/oci/_vendor/idna/package_data.py +++ b/src/oci/_vendor/idna/package_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. __version__ = '2.8' diff --git a/src/oci/_vendor/idna/uts46data.py b/src/oci/_vendor/idna/uts46data.py index e974e0c10d..54310a764c 100644 --- a/src/oci/_vendor/idna/uts46data.py +++ b/src/oci/_vendor/idna/uts46data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. # This file is automatically generated by tools/idna-data diff --git a/src/oci/_vendor/jwt/__init__.py b/src/oci/_vendor/jwt/__init__.py index a8155f893f..510061d2c9 100644 --- a/src/oci/_vendor/jwt/__init__.py +++ b/src/oci/_vendor/jwt/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/jwt/__main__.py b/src/oci/_vendor/jwt/__main__.py index 1cb2087184..903429c588 100644 --- a/src/oci/_vendor/jwt/__main__.py +++ b/src/oci/_vendor/jwt/__main__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla #!/usr/bin/env python diff --git a/src/oci/_vendor/jwt/algorithms.py b/src/oci/_vendor/jwt/algorithms.py index aae67f64d5..991f09fbe8 100644 --- a/src/oci/_vendor/jwt/algorithms.py +++ b/src/oci/_vendor/jwt/algorithms.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla import hashlib diff --git a/src/oci/_vendor/jwt/api_jws.py b/src/oci/_vendor/jwt/api_jws.py index 68b0739c60..751a74c5f1 100644 --- a/src/oci/_vendor/jwt/api_jws.py +++ b/src/oci/_vendor/jwt/api_jws.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla import binascii diff --git a/src/oci/_vendor/jwt/api_jwt.py b/src/oci/_vendor/jwt/api_jwt.py index c73d39ff2d..c0046d3e01 100644 --- a/src/oci/_vendor/jwt/api_jwt.py +++ b/src/oci/_vendor/jwt/api_jwt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla import json diff --git a/src/oci/_vendor/jwt/compat.py b/src/oci/_vendor/jwt/compat.py index 6f1a2b24a8..6ade15f273 100644 --- a/src/oci/_vendor/jwt/compat.py +++ b/src/oci/_vendor/jwt/compat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla """ diff --git a/src/oci/_vendor/jwt/exceptions.py b/src/oci/_vendor/jwt/exceptions.py index a3a61406ae..be84ecc878 100644 --- a/src/oci/_vendor/jwt/exceptions.py +++ b/src/oci/_vendor/jwt/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla class PyJWTError(Exception): diff --git a/src/oci/_vendor/jwt/help.py b/src/oci/_vendor/jwt/help.py index b1181bd1e7..3057ea64fc 100644 --- a/src/oci/_vendor/jwt/help.py +++ b/src/oci/_vendor/jwt/help.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla from __future__ import print_function diff --git a/src/oci/_vendor/jwt/utils.py b/src/oci/_vendor/jwt/utils.py index 8f72e12e0a..811fdcf9c5 100644 --- a/src/oci/_vendor/jwt/utils.py +++ b/src/oci/_vendor/jwt/utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Original Work: Copyright (c) 2015 José Padilla import base64 diff --git a/src/oci/_vendor/requests/__init__.py b/src/oci/_vendor/requests/__init__.py index c1a3d79f07..1cc1fe4c69 100644 --- a/src/oci/_vendor/requests/__init__.py +++ b/src/oci/_vendor/requests/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/__version__.py b/src/oci/_vendor/requests/__version__.py index d0de8c353b..a42ee3a716 100644 --- a/src/oci/_vendor/requests/__version__.py +++ b/src/oci/_vendor/requests/__version__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # .-. .-. .-. . . .-. .-. .-. .-. diff --git a/src/oci/_vendor/requests/_internal_utils.py b/src/oci/_vendor/requests/_internal_utils.py index 12ced99444..770c13da9b 100644 --- a/src/oci/_vendor/requests/_internal_utils.py +++ b/src/oci/_vendor/requests/_internal_utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/adapters.py b/src/oci/_vendor/requests/adapters.py index 43b9eeb80b..d02fb06d5c 100644 --- a/src/oci/_vendor/requests/adapters.py +++ b/src/oci/_vendor/requests/adapters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/api.py b/src/oci/_vendor/requests/api.py index 4196597bbb..8dab469be8 100644 --- a/src/oci/_vendor/requests/api.py +++ b/src/oci/_vendor/requests/api.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/auth.py b/src/oci/_vendor/requests/auth.py index dd524c52fc..5aacc4681d 100644 --- a/src/oci/_vendor/requests/auth.py +++ b/src/oci/_vendor/requests/auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/certs.py b/src/oci/_vendor/requests/certs.py index ce0ab2ea4c..1b481677ca 100644 --- a/src/oci/_vendor/requests/certs.py +++ b/src/oci/_vendor/requests/certs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz #!/usr/bin/env python diff --git a/src/oci/_vendor/requests/compat.py b/src/oci/_vendor/requests/compat.py index 3ad3a9bf54..3d6b45ce13 100644 --- a/src/oci/_vendor/requests/compat.py +++ b/src/oci/_vendor/requests/compat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/cookies.py b/src/oci/_vendor/requests/cookies.py index 337e92ad35..809c916768 100644 --- a/src/oci/_vendor/requests/cookies.py +++ b/src/oci/_vendor/requests/cookies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/exceptions.py b/src/oci/_vendor/requests/exceptions.py index 47da7ff625..ccc9080d69 100644 --- a/src/oci/_vendor/requests/exceptions.py +++ b/src/oci/_vendor/requests/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/help.py b/src/oci/_vendor/requests/help.py index ec6860aff9..2c1478d01e 100644 --- a/src/oci/_vendor/requests/help.py +++ b/src/oci/_vendor/requests/help.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz """Module containing bug report helper(s).""" diff --git a/src/oci/_vendor/requests/hooks.py b/src/oci/_vendor/requests/hooks.py index e6d233f7ad..ec471742fb 100644 --- a/src/oci/_vendor/requests/hooks.py +++ b/src/oci/_vendor/requests/hooks.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/models.py b/src/oci/_vendor/requests/models.py index a4ade1a66e..d3e1f0701e 100644 --- a/src/oci/_vendor/requests/models.py +++ b/src/oci/_vendor/requests/models.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/packages.py b/src/oci/_vendor/requests/packages.py index 75bc47506b..e9aaf95403 100644 --- a/src/oci/_vendor/requests/packages.py +++ b/src/oci/_vendor/requests/packages.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz import sys diff --git a/src/oci/_vendor/requests/sessions.py b/src/oci/_vendor/requests/sessions.py index 09e1a91d75..2524b67388 100644 --- a/src/oci/_vendor/requests/sessions.py +++ b/src/oci/_vendor/requests/sessions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/status_codes.py b/src/oci/_vendor/requests/status_codes.py index b85ebcc68e..480c1036fe 100644 --- a/src/oci/_vendor/requests/status_codes.py +++ b/src/oci/_vendor/requests/status_codes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/structures.py b/src/oci/_vendor/requests/structures.py index 705749c2d2..60653a8437 100644 --- a/src/oci/_vendor/requests/structures.py +++ b/src/oci/_vendor/requests/structures.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/_vendor/requests/utils.py b/src/oci/_vendor/requests/utils.py index a3a1350175..8225e0e8bd 100644 --- a/src/oci/_vendor/requests/utils.py +++ b/src/oci/_vendor/requests/utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Kenneth Reitz # -*- coding: utf-8 -*- diff --git a/src/oci/analytics/__init__.py b/src/oci/analytics/__init__.py index 7d0af2f159..bd974a64df 100644 --- a/src/oci/analytics/__init__.py +++ b/src/oci/analytics/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/analytics/analytics_client.py b/src/oci/analytics/analytics_client.py index 16ace0c447..795524fd6f 100644 --- a/src/oci/analytics/analytics_client.py +++ b/src/oci/analytics/analytics_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/analytics/analytics_client_composite_operations.py b/src/oci/analytics/analytics_client_composite_operations.py index d187451e1b..719938cca8 100644 --- a/src/oci/analytics/analytics_client_composite_operations.py +++ b/src/oci/analytics/analytics_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/analytics/models/__init__.py b/src/oci/analytics/models/__init__.py index adc1426b4d..98f176291b 100644 --- a/src/oci/analytics/models/__init__.py +++ b/src/oci/analytics/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/analytics/models/analytics_instance.py b/src/oci/analytics/models/analytics_instance.py index af83992647..6ea1ab9e7c 100644 --- a/src/oci/analytics/models/analytics_instance.py +++ b/src/oci/analytics/models/analytics_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/analytics_instance_summary.py b/src/oci/analytics/models/analytics_instance_summary.py index 38085edc38..2c304b000a 100644 --- a/src/oci/analytics/models/analytics_instance_summary.py +++ b/src/oci/analytics/models/analytics_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/capacity.py b/src/oci/analytics/models/capacity.py index 49f2a70dfe..85b4002f24 100644 --- a/src/oci/analytics/models/capacity.py +++ b/src/oci/analytics/models/capacity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/change_compartment_details.py b/src/oci/analytics/models/change_compartment_details.py index 56b7fd03f6..58e5858c56 100644 --- a/src/oci/analytics/models/change_compartment_details.py +++ b/src/oci/analytics/models/change_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/create_analytics_instance_details.py b/src/oci/analytics/models/create_analytics_instance_details.py index 67532d5557..7521c3d607 100644 --- a/src/oci/analytics/models/create_analytics_instance_details.py +++ b/src/oci/analytics/models/create_analytics_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/scale_analytics_instance_details.py b/src/oci/analytics/models/scale_analytics_instance_details.py index 7499e10ade..3d8dee799a 100644 --- a/src/oci/analytics/models/scale_analytics_instance_details.py +++ b/src/oci/analytics/models/scale_analytics_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/update_analytics_instance_details.py b/src/oci/analytics/models/update_analytics_instance_details.py index c8a51c5481..2e327cb75e 100644 --- a/src/oci/analytics/models/update_analytics_instance_details.py +++ b/src/oci/analytics/models/update_analytics_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/work_request.py b/src/oci/analytics/models/work_request.py index 872c13b61a..2e0951891f 100644 --- a/src/oci/analytics/models/work_request.py +++ b/src/oci/analytics/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/work_request_error.py b/src/oci/analytics/models/work_request_error.py index d3462f5694..0a0470b0bc 100644 --- a/src/oci/analytics/models/work_request_error.py +++ b/src/oci/analytics/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/work_request_log.py b/src/oci/analytics/models/work_request_log.py index 5f57a5604c..cbe3177dcb 100644 --- a/src/oci/analytics/models/work_request_log.py +++ b/src/oci/analytics/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/work_request_resource.py b/src/oci/analytics/models/work_request_resource.py index a10eb3afeb..53b345fb0b 100644 --- a/src/oci/analytics/models/work_request_resource.py +++ b/src/oci/analytics/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/analytics/models/work_request_summary.py b/src/oci/analytics/models/work_request_summary.py index e71a514183..a21e36b905 100644 --- a/src/oci/analytics/models/work_request_summary.py +++ b/src/oci/analytics/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/__init__.py b/src/oci/announcements_service/__init__.py index d7b45b119f..3249a9fd6a 100644 --- a/src/oci/announcements_service/__init__.py +++ b/src/oci/announcements_service/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/announcements_service/announcement_client.py b/src/oci/announcements_service/announcement_client.py index 11315183a7..2e1b6c7255 100644 --- a/src/oci/announcements_service/announcement_client.py +++ b/src/oci/announcements_service/announcement_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/announcements_service/announcement_client_composite_operations.py b/src/oci/announcements_service/announcement_client_composite_operations.py index a13a0ed502..a28552365e 100644 --- a/src/oci/announcements_service/announcement_client_composite_operations.py +++ b/src/oci/announcements_service/announcement_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/announcements_service/models/__init__.py b/src/oci/announcements_service/models/__init__.py index 202db7b274..f0f487cd39 100644 --- a/src/oci/announcements_service/models/__init__.py +++ b/src/oci/announcements_service/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/announcements_service/models/affected_resource.py b/src/oci/announcements_service/models/affected_resource.py index e7ddd0810f..7c0725e3e9 100644 --- a/src/oci/announcements_service/models/affected_resource.py +++ b/src/oci/announcements_service/models/affected_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/models/announcement.py b/src/oci/announcements_service/models/announcement.py index e626290953..d4179df1e9 100644 --- a/src/oci/announcements_service/models/announcement.py +++ b/src/oci/announcements_service/models/announcement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .base_announcement import BaseAnnouncement from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/models/announcement_summary.py b/src/oci/announcements_service/models/announcement_summary.py index bbffc64791..7613970b88 100644 --- a/src/oci/announcements_service/models/announcement_summary.py +++ b/src/oci/announcements_service/models/announcement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .base_announcement import BaseAnnouncement from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/models/announcement_user_status_details.py b/src/oci/announcements_service/models/announcement_user_status_details.py index 100226bf2c..e804512974 100644 --- a/src/oci/announcements_service/models/announcement_user_status_details.py +++ b/src/oci/announcements_service/models/announcement_user_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/models/announcements_collection.py b/src/oci/announcements_service/models/announcements_collection.py index 06700c826a..2504fb9ca5 100644 --- a/src/oci/announcements_service/models/announcements_collection.py +++ b/src/oci/announcements_service/models/announcements_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/announcements_service/models/base_announcement.py b/src/oci/announcements_service/models/base_announcement.py index 6dbc639faf..a444f0735a 100644 --- a/src/oci/announcements_service/models/base_announcement.py +++ b/src/oci/announcements_service/models/base_announcement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/__init__.py b/src/oci/apigateway/__init__.py index a65ead3bc1..d1ad5276cb 100644 --- a/src/oci/apigateway/__init__.py +++ b/src/oci/apigateway/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/apigateway/deployment_client.py b/src/oci/apigateway/deployment_client.py index b852cd9381..d0b63f7d48 100644 --- a/src/oci/apigateway/deployment_client.py +++ b/src/oci/apigateway/deployment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/apigateway/deployment_client_composite_operations.py b/src/oci/apigateway/deployment_client_composite_operations.py index 1a677fb973..0afeaacc79 100644 --- a/src/oci/apigateway/deployment_client_composite_operations.py +++ b/src/oci/apigateway/deployment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/apigateway/gateway_client.py b/src/oci/apigateway/gateway_client.py index ef45d9171d..4dd9d954e1 100644 --- a/src/oci/apigateway/gateway_client.py +++ b/src/oci/apigateway/gateway_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/apigateway/gateway_client_composite_operations.py b/src/oci/apigateway/gateway_client_composite_operations.py index edf64d33af..ff8e2e51b4 100644 --- a/src/oci/apigateway/gateway_client_composite_operations.py +++ b/src/oci/apigateway/gateway_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/apigateway/models/__init__.py b/src/oci/apigateway/models/__init__.py index 8a4bc31d3c..0301cc0d3a 100644 --- a/src/oci/apigateway/models/__init__.py +++ b/src/oci/apigateway/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/apigateway/models/access_log_policy.py b/src/oci/apigateway/models/access_log_policy.py index 123964fad5..864577a855 100644 --- a/src/oci/apigateway/models/access_log_policy.py +++ b/src/oci/apigateway/models/access_log_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/anonymous_route_authorization_policy.py b/src/oci/apigateway/models/anonymous_route_authorization_policy.py index 8a1a9cc7c4..3c112fec03 100644 --- a/src/oci/apigateway/models/anonymous_route_authorization_policy.py +++ b/src/oci/apigateway/models/anonymous_route_authorization_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .route_authorization_policy import RouteAuthorizationPolicy from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/any_of_route_authorization_policy.py b/src/oci/apigateway/models/any_of_route_authorization_policy.py index 59de0054a9..a0f9381bcd 100644 --- a/src/oci/apigateway/models/any_of_route_authorization_policy.py +++ b/src/oci/apigateway/models/any_of_route_authorization_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .route_authorization_policy import RouteAuthorizationPolicy from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification.py b/src/oci/apigateway/models/api_specification.py index 8f8e117235..2eea63601c 100644 --- a/src/oci/apigateway/models/api_specification.py +++ b/src/oci/apigateway/models/api_specification.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification_logging_policies.py b/src/oci/apigateway/models/api_specification_logging_policies.py index 9a0de80fde..ce5d91fa5f 100644 --- a/src/oci/apigateway/models/api_specification_logging_policies.py +++ b/src/oci/apigateway/models/api_specification_logging_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification_request_policies.py b/src/oci/apigateway/models/api_specification_request_policies.py index 35097c6790..1b8b45c441 100644 --- a/src/oci/apigateway/models/api_specification_request_policies.py +++ b/src/oci/apigateway/models/api_specification_request_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification_route.py b/src/oci/apigateway/models/api_specification_route.py index 79140958ac..6978a6ebb7 100644 --- a/src/oci/apigateway/models/api_specification_route.py +++ b/src/oci/apigateway/models/api_specification_route.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification_route_backend.py b/src/oci/apigateway/models/api_specification_route_backend.py index 34502f1ca2..8853f2e87f 100644 --- a/src/oci/apigateway/models/api_specification_route_backend.py +++ b/src/oci/apigateway/models/api_specification_route_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/api_specification_route_request_policies.py b/src/oci/apigateway/models/api_specification_route_request_policies.py index eb746aad29..343b722997 100644 --- a/src/oci/apigateway/models/api_specification_route_request_policies.py +++ b/src/oci/apigateway/models/api_specification_route_request_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/authentication_only_route_authorization_policy.py b/src/oci/apigateway/models/authentication_only_route_authorization_policy.py index dfa3122c97..f405d0f2a7 100644 --- a/src/oci/apigateway/models/authentication_only_route_authorization_policy.py +++ b/src/oci/apigateway/models/authentication_only_route_authorization_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .route_authorization_policy import RouteAuthorizationPolicy from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/authentication_policy.py b/src/oci/apigateway/models/authentication_policy.py index 7eb03d3db9..1420110d51 100644 --- a/src/oci/apigateway/models/authentication_policy.py +++ b/src/oci/apigateway/models/authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/change_deployment_compartment_details.py b/src/oci/apigateway/models/change_deployment_compartment_details.py index 11970c1c6a..7a66bd45c8 100644 --- a/src/oci/apigateway/models/change_deployment_compartment_details.py +++ b/src/oci/apigateway/models/change_deployment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/change_gateway_compartment_details.py b/src/oci/apigateway/models/change_gateway_compartment_details.py index 008d544bb7..809ecc6b40 100644 --- a/src/oci/apigateway/models/change_gateway_compartment_details.py +++ b/src/oci/apigateway/models/change_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/cors_policy.py b/src/oci/apigateway/models/cors_policy.py index 5a0efbd665..308012e684 100644 --- a/src/oci/apigateway/models/cors_policy.py +++ b/src/oci/apigateway/models/cors_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/create_deployment_details.py b/src/oci/apigateway/models/create_deployment_details.py index 22b0ec7f13..96141eba1e 100644 --- a/src/oci/apigateway/models/create_deployment_details.py +++ b/src/oci/apigateway/models/create_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/create_gateway_details.py b/src/oci/apigateway/models/create_gateway_details.py index 22cdf686c9..f2b4c89e40 100644 --- a/src/oci/apigateway/models/create_gateway_details.py +++ b/src/oci/apigateway/models/create_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/custom_authentication_policy.py b/src/oci/apigateway/models/custom_authentication_policy.py index d0e983b296..6d7b8b0f9e 100644 --- a/src/oci/apigateway/models/custom_authentication_policy.py +++ b/src/oci/apigateway/models/custom_authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .authentication_policy import AuthenticationPolicy from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/deployment.py b/src/oci/apigateway/models/deployment.py index 3308e594df..97a5c0d9a8 100644 --- a/src/oci/apigateway/models/deployment.py +++ b/src/oci/apigateway/models/deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/deployment_collection.py b/src/oci/apigateway/models/deployment_collection.py index 86cd5a4e58..e839d0f7ea 100644 --- a/src/oci/apigateway/models/deployment_collection.py +++ b/src/oci/apigateway/models/deployment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/deployment_summary.py b/src/oci/apigateway/models/deployment_summary.py index f5e40abf0e..79b60ec4e4 100644 --- a/src/oci/apigateway/models/deployment_summary.py +++ b/src/oci/apigateway/models/deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/execution_log_policy.py b/src/oci/apigateway/models/execution_log_policy.py index ea4136c77a..d94c5bf213 100644 --- a/src/oci/apigateway/models/execution_log_policy.py +++ b/src/oci/apigateway/models/execution_log_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/gateway.py b/src/oci/apigateway/models/gateway.py index 7e90e8c2e1..e08d174ac8 100644 --- a/src/oci/apigateway/models/gateway.py +++ b/src/oci/apigateway/models/gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/gateway_collection.py b/src/oci/apigateway/models/gateway_collection.py index dc7a9f6889..9bf7b57bc0 100644 --- a/src/oci/apigateway/models/gateway_collection.py +++ b/src/oci/apigateway/models/gateway_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/gateway_summary.py b/src/oci/apigateway/models/gateway_summary.py index 7fd1397ff3..761d168fed 100644 --- a/src/oci/apigateway/models/gateway_summary.py +++ b/src/oci/apigateway/models/gateway_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/header_field_specification.py b/src/oci/apigateway/models/header_field_specification.py index ca70c0bd01..2ead2b406b 100644 --- a/src/oci/apigateway/models/header_field_specification.py +++ b/src/oci/apigateway/models/header_field_specification.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/http_backend.py b/src/oci/apigateway/models/http_backend.py index 867e6d5614..4ee68508d3 100644 --- a/src/oci/apigateway/models/http_backend.py +++ b/src/oci/apigateway/models/http_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .api_specification_route_backend import ApiSpecificationRouteBackend from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/oracle_function_backend.py b/src/oci/apigateway/models/oracle_function_backend.py index 4215e7fe49..34b5597931 100644 --- a/src/oci/apigateway/models/oracle_function_backend.py +++ b/src/oci/apigateway/models/oracle_function_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .api_specification_route_backend import ApiSpecificationRouteBackend from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/rate_limiting_policy.py b/src/oci/apigateway/models/rate_limiting_policy.py index 614298c9b0..dea76e61db 100644 --- a/src/oci/apigateway/models/rate_limiting_policy.py +++ b/src/oci/apigateway/models/rate_limiting_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/route_authorization_policy.py b/src/oci/apigateway/models/route_authorization_policy.py index 9eab4af424..11def69d9f 100644 --- a/src/oci/apigateway/models/route_authorization_policy.py +++ b/src/oci/apigateway/models/route_authorization_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/stock_response_backend.py b/src/oci/apigateway/models/stock_response_backend.py index 0b5f0b24cf..6d69acc0d0 100644 --- a/src/oci/apigateway/models/stock_response_backend.py +++ b/src/oci/apigateway/models/stock_response_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .api_specification_route_backend import ApiSpecificationRouteBackend from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/update_deployment_details.py b/src/oci/apigateway/models/update_deployment_details.py index ced308ef35..8fe1ab7ec8 100644 --- a/src/oci/apigateway/models/update_deployment_details.py +++ b/src/oci/apigateway/models/update_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/update_gateway_details.py b/src/oci/apigateway/models/update_gateway_details.py index cef8c42faa..ccf36e9c31 100644 --- a/src/oci/apigateway/models/update_gateway_details.py +++ b/src/oci/apigateway/models/update_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request.py b/src/oci/apigateway/models/work_request.py index 455dcfce44..262416b74f 100644 --- a/src/oci/apigateway/models/work_request.py +++ b/src/oci/apigateway/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_collection.py b/src/oci/apigateway/models/work_request_collection.py index a90d981554..fa68bd1cfe 100644 --- a/src/oci/apigateway/models/work_request_collection.py +++ b/src/oci/apigateway/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_error.py b/src/oci/apigateway/models/work_request_error.py index d971699158..aa12252b88 100644 --- a/src/oci/apigateway/models/work_request_error.py +++ b/src/oci/apigateway/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_error_collection.py b/src/oci/apigateway/models/work_request_error_collection.py index 5ef53cae63..e3cf6a5821 100644 --- a/src/oci/apigateway/models/work_request_error_collection.py +++ b/src/oci/apigateway/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_log.py b/src/oci/apigateway/models/work_request_log.py index efd41a3b45..dbf7dd2b53 100644 --- a/src/oci/apigateway/models/work_request_log.py +++ b/src/oci/apigateway/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_log_collection.py b/src/oci/apigateway/models/work_request_log_collection.py index 97c8b5dc0d..e69e7d14fa 100644 --- a/src/oci/apigateway/models/work_request_log_collection.py +++ b/src/oci/apigateway/models/work_request_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_resource.py b/src/oci/apigateway/models/work_request_resource.py index 35cc284489..e202ce2ce5 100644 --- a/src/oci/apigateway/models/work_request_resource.py +++ b/src/oci/apigateway/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/models/work_request_summary.py b/src/oci/apigateway/models/work_request_summary.py index edd833e410..2fd758a0f9 100644 --- a/src/oci/apigateway/models/work_request_summary.py +++ b/src/oci/apigateway/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/apigateway/work_requests_client.py b/src/oci/apigateway/work_requests_client.py index c1a657f8db..24c7736de9 100644 --- a/src/oci/apigateway/work_requests_client.py +++ b/src/oci/apigateway/work_requests_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/apigateway/work_requests_client_composite_operations.py b/src/oci/apigateway/work_requests_client_composite_operations.py index f174734611..2391536b28 100644 --- a/src/oci/apigateway/work_requests_client_composite_operations.py +++ b/src/oci/apigateway/work_requests_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/audit/__init__.py b/src/oci/audit/__init__.py index 3646df2add..ee2050aa8b 100644 --- a/src/oci/audit/__init__.py +++ b/src/oci/audit/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/audit/audit_client.py b/src/oci/audit/audit_client.py index 813e32e1dc..b8fe1aa12f 100644 --- a/src/oci/audit/audit_client.py +++ b/src/oci/audit/audit_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/audit/audit_client_composite_operations.py b/src/oci/audit/audit_client_composite_operations.py index c398cfd0c6..4d52444ac0 100644 --- a/src/oci/audit/audit_client_composite_operations.py +++ b/src/oci/audit/audit_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/audit/models/__init__.py b/src/oci/audit/models/__init__.py index 651d4c71a2..3d68207120 100644 --- a/src/oci/audit/models/__init__.py +++ b/src/oci/audit/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/audit/models/audit_event.py b/src/oci/audit/models/audit_event.py index 222861ef22..184ff12d01 100644 --- a/src/oci/audit/models/audit_event.py +++ b/src/oci/audit/models/audit_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/configuration.py b/src/oci/audit/models/configuration.py index fa50a4355b..0947e2b924 100644 --- a/src/oci/audit/models/configuration.py +++ b/src/oci/audit/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/data.py b/src/oci/audit/models/data.py index 1ac842132a..eb50492626 100644 --- a/src/oci/audit/models/data.py +++ b/src/oci/audit/models/data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/identity.py b/src/oci/audit/models/identity.py index a06e718e18..220ebdd01b 100644 --- a/src/oci/audit/models/identity.py +++ b/src/oci/audit/models/identity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/request.py b/src/oci/audit/models/request.py index 0948c971cf..004efd5094 100644 --- a/src/oci/audit/models/request.py +++ b/src/oci/audit/models/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/response.py b/src/oci/audit/models/response.py index e29e80e510..2c4e6e6282 100644 --- a/src/oci/audit/models/response.py +++ b/src/oci/audit/models/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/state_change.py b/src/oci/audit/models/state_change.py index b2fea8b49a..874acc9d98 100644 --- a/src/oci/audit/models/state_change.py +++ b/src/oci/audit/models/state_change.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/audit/models/update_configuration_details.py b/src/oci/audit/models/update_configuration_details.py index 44cab24059..e3667065a5 100644 --- a/src/oci/audit/models/update_configuration_details.py +++ b/src/oci/audit/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/auth/__init__.py b/src/oci/auth/__init__.py index b4078244bf..ada81812eb 100644 --- a/src/oci/auth/__init__.py +++ b/src/oci/auth/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from . import auth_utils # noqa: F401 from . import certificate_retriever # noqa: F401 diff --git a/src/oci/auth/auth_utils.py b/src/oci/auth/auth_utils.py index 0da891bd67..af3437ca00 100644 --- a/src/oci/auth/auth_utils.py +++ b/src/oci/auth/auth_utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci._vendor import six diff --git a/src/oci/auth/certificate_retriever.py b/src/oci/auth/certificate_retriever.py index 8c8e72926c..6e465019aa 100644 --- a/src/oci/auth/certificate_retriever.py +++ b/src/oci/auth/certificate_retriever.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from cryptography import x509 from cryptography.hazmat.backends import default_backend diff --git a/src/oci/auth/federation_client.py b/src/oci/auth/federation_client.py index 44b23373a0..ebb7663103 100644 --- a/src/oci/auth/federation_client.py +++ b/src/oci/auth/federation_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from . import auth_utils from .security_token_container import SecurityTokenContainer diff --git a/src/oci/auth/security_token_container.py b/src/oci/auth/security_token_container.py index e33ff1c261..ef076f2608 100644 --- a/src/oci/auth/security_token_container.py +++ b/src/oci/auth/security_token_container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci._vendor.jwt as jwt import time diff --git a/src/oci/auth/session_key_supplier.py b/src/oci/auth/session_key_supplier.py index 0c1aafba7c..dff201c0ab 100644 --- a/src/oci/auth/session_key_supplier.py +++ b/src/oci/auth/session_key_supplier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives.asymmetric import rsa diff --git a/src/oci/auth/signers/__init__.py b/src/oci/auth/signers/__init__.py index a8e71e3175..4aa0bb001e 100644 --- a/src/oci/auth/signers/__init__.py +++ b/src/oci/auth/signers/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .security_token_signer import SecurityTokenSigner, X509FederationClientBasedSecurityTokenSigner # noqa: F401 from .instance_principals_security_token_signer import InstancePrincipalsSecurityTokenSigner # noqa: F401 diff --git a/src/oci/auth/signers/ephemeral_resource_principals_signer.py b/src/oci/auth/signers/ephemeral_resource_principals_signer.py index 914e885101..100b726c11 100644 --- a/src/oci/auth/signers/ephemeral_resource_principals_signer.py +++ b/src/oci/auth/signers/ephemeral_resource_principals_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import threading import oci diff --git a/src/oci/auth/signers/instance_principals_delegation_token_signer.py b/src/oci/auth/signers/instance_principals_delegation_token_signer.py index dabd2d4960..44e994bfff 100644 --- a/src/oci/auth/signers/instance_principals_delegation_token_signer.py +++ b/src/oci/auth/signers/instance_principals_delegation_token_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_principals_security_token_signer import InstancePrincipalsSecurityTokenSigner diff --git a/src/oci/auth/signers/instance_principals_security_token_signer.py b/src/oci/auth/signers/instance_principals_security_token_signer.py index 6189f7f7af..3ce0689bd2 100644 --- a/src/oci/auth/signers/instance_principals_security_token_signer.py +++ b/src/oci/auth/signers/instance_principals_security_token_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .security_token_signer import X509FederationClientBasedSecurityTokenSigner from ..certificate_retriever import UrlBasedCertificateRetriever, INSTANCE_METADATA_URL_CERTIFICATE_RETRIEVER_RETRY_STRATEGY diff --git a/src/oci/auth/signers/resource_principals_signer.py b/src/oci/auth/signers/resource_principals_signer.py index 93c0b61231..22fc4223b9 100644 --- a/src/oci/auth/signers/resource_principals_signer.py +++ b/src/oci/auth/signers/resource_principals_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import os from .ephemeral_resource_principals_signer import EphemeralResourcePrincipalSigner diff --git a/src/oci/auth/signers/security_token_signer.py b/src/oci/auth/signers/security_token_signer.py index 942def2314..8689079e0a 100644 --- a/src/oci/auth/signers/security_token_signer.py +++ b/src/oci/auth/signers/security_token_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci.signer import threading diff --git a/src/oci/autoscaling/__init__.py b/src/oci/autoscaling/__init__.py index a34ef228bd..188014f61a 100644 --- a/src/oci/autoscaling/__init__.py +++ b/src/oci/autoscaling/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/autoscaling/auto_scaling_client.py b/src/oci/autoscaling/auto_scaling_client.py index e6cc0f70fb..030fd5ea72 100644 --- a/src/oci/autoscaling/auto_scaling_client.py +++ b/src/oci/autoscaling/auto_scaling_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/autoscaling/auto_scaling_client_composite_operations.py b/src/oci/autoscaling/auto_scaling_client_composite_operations.py index 47ff953fdf..6ca424ac94 100644 --- a/src/oci/autoscaling/auto_scaling_client_composite_operations.py +++ b/src/oci/autoscaling/auto_scaling_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/autoscaling/models/__init__.py b/src/oci/autoscaling/models/__init__.py index bb2ced8b49..4fda93b9a0 100644 --- a/src/oci/autoscaling/models/__init__.py +++ b/src/oci/autoscaling/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/autoscaling/models/action.py b/src/oci/autoscaling/models/action.py index 4fb36e8e83..1df897a1f9 100644 --- a/src/oci/autoscaling/models/action.py +++ b/src/oci/autoscaling/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/auto_scaling_configuration.py b/src/oci/autoscaling/models/auto_scaling_configuration.py index 6ce47e4c9a..a8fd36d4af 100644 --- a/src/oci/autoscaling/models/auto_scaling_configuration.py +++ b/src/oci/autoscaling/models/auto_scaling_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/auto_scaling_configuration_summary.py b/src/oci/autoscaling/models/auto_scaling_configuration_summary.py index c05bf54610..f34e8ebb17 100644 --- a/src/oci/autoscaling/models/auto_scaling_configuration_summary.py +++ b/src/oci/autoscaling/models/auto_scaling_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/auto_scaling_policy.py b/src/oci/autoscaling/models/auto_scaling_policy.py index c22367e4d0..45c8d2871b 100644 --- a/src/oci/autoscaling/models/auto_scaling_policy.py +++ b/src/oci/autoscaling/models/auto_scaling_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/auto_scaling_policy_summary.py b/src/oci/autoscaling/models/auto_scaling_policy_summary.py index 8e7a78e514..0a584877af 100644 --- a/src/oci/autoscaling/models/auto_scaling_policy_summary.py +++ b/src/oci/autoscaling/models/auto_scaling_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/capacity.py b/src/oci/autoscaling/models/capacity.py index f5399cc204..759d4fcc76 100644 --- a/src/oci/autoscaling/models/capacity.py +++ b/src/oci/autoscaling/models/capacity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/change_auto_scaling_compartment_details.py b/src/oci/autoscaling/models/change_auto_scaling_compartment_details.py index 20b607150a..7297bfe199 100644 --- a/src/oci/autoscaling/models/change_auto_scaling_compartment_details.py +++ b/src/oci/autoscaling/models/change_auto_scaling_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/condition.py b/src/oci/autoscaling/models/condition.py index 8cfd2ebb88..48fb2c3418 100644 --- a/src/oci/autoscaling/models/condition.py +++ b/src/oci/autoscaling/models/condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/create_auto_scaling_configuration_details.py b/src/oci/autoscaling/models/create_auto_scaling_configuration_details.py index 3fa5801fa9..a3a6df9577 100644 --- a/src/oci/autoscaling/models/create_auto_scaling_configuration_details.py +++ b/src/oci/autoscaling/models/create_auto_scaling_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/create_auto_scaling_policy_details.py b/src/oci/autoscaling/models/create_auto_scaling_policy_details.py index e96a77b6b6..6a67e117b3 100644 --- a/src/oci/autoscaling/models/create_auto_scaling_policy_details.py +++ b/src/oci/autoscaling/models/create_auto_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/create_condition_details.py b/src/oci/autoscaling/models/create_condition_details.py index 2ee602c5df..94afdd29a7 100644 --- a/src/oci/autoscaling/models/create_condition_details.py +++ b/src/oci/autoscaling/models/create_condition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/create_threshold_policy_details.py b/src/oci/autoscaling/models/create_threshold_policy_details.py index 60ae791cd3..f9764e5bd4 100644 --- a/src/oci/autoscaling/models/create_threshold_policy_details.py +++ b/src/oci/autoscaling/models/create_threshold_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_auto_scaling_policy_details import CreateAutoScalingPolicyDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/instance_pool_resource.py b/src/oci/autoscaling/models/instance_pool_resource.py index 8f230b7e58..229a41bec5 100644 --- a/src/oci/autoscaling/models/instance_pool_resource.py +++ b/src/oci/autoscaling/models/instance_pool_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .resource import Resource from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/metric.py b/src/oci/autoscaling/models/metric.py index 8d7214817f..428c3bbb30 100644 --- a/src/oci/autoscaling/models/metric.py +++ b/src/oci/autoscaling/models/metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/resource.py b/src/oci/autoscaling/models/resource.py index b9bff786be..c51823554c 100644 --- a/src/oci/autoscaling/models/resource.py +++ b/src/oci/autoscaling/models/resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/threshold.py b/src/oci/autoscaling/models/threshold.py index 42171e5890..95de63b62e 100644 --- a/src/oci/autoscaling/models/threshold.py +++ b/src/oci/autoscaling/models/threshold.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/threshold_policy.py b/src/oci/autoscaling/models/threshold_policy.py index 4a8c2d2abf..c3e7166ca4 100644 --- a/src/oci/autoscaling/models/threshold_policy.py +++ b/src/oci/autoscaling/models/threshold_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .auto_scaling_policy import AutoScalingPolicy from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/update_auto_scaling_configuration_details.py b/src/oci/autoscaling/models/update_auto_scaling_configuration_details.py index 9c1fef3cc4..1d067b6062 100644 --- a/src/oci/autoscaling/models/update_auto_scaling_configuration_details.py +++ b/src/oci/autoscaling/models/update_auto_scaling_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/update_auto_scaling_policy_details.py b/src/oci/autoscaling/models/update_auto_scaling_policy_details.py index a221ce843f..bcfd552d93 100644 --- a/src/oci/autoscaling/models/update_auto_scaling_policy_details.py +++ b/src/oci/autoscaling/models/update_auto_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/update_condition_details.py b/src/oci/autoscaling/models/update_condition_details.py index 06e28aed75..19940c9dd3 100644 --- a/src/oci/autoscaling/models/update_condition_details.py +++ b/src/oci/autoscaling/models/update_condition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/autoscaling/models/update_threshold_policy_details.py b/src/oci/autoscaling/models/update_threshold_policy_details.py index bebf737eb5..56f2df349d 100644 --- a/src/oci/autoscaling/models/update_threshold_policy_details.py +++ b/src/oci/autoscaling/models/update_threshold_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .update_auto_scaling_policy_details import UpdateAutoScalingPolicyDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/base_client.py b/src/oci/base_client.py index fb0db0b00a..a950b0e9d7 100644 --- a/src/oci/base_client.py +++ b/src/oci/base_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import import json diff --git a/src/oci/budget/__init__.py b/src/oci/budget/__init__.py index 63399daa49..a21dbc947d 100644 --- a/src/oci/budget/__init__.py +++ b/src/oci/budget/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/budget/budget_client.py b/src/oci/budget/budget_client.py index 772ac14031..bb8d68f03d 100644 --- a/src/oci/budget/budget_client.py +++ b/src/oci/budget/budget_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/budget/budget_client_composite_operations.py b/src/oci/budget/budget_client_composite_operations.py index 2fd92dee64..7fefb083c8 100644 --- a/src/oci/budget/budget_client_composite_operations.py +++ b/src/oci/budget/budget_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/budget/models/__init__.py b/src/oci/budget/models/__init__.py index a927ed5510..cd31f0dc0f 100644 --- a/src/oci/budget/models/__init__.py +++ b/src/oci/budget/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/budget/models/alert_rule.py b/src/oci/budget/models/alert_rule.py index 6b30f2f3dc..08c1083b1e 100644 --- a/src/oci/budget/models/alert_rule.py +++ b/src/oci/budget/models/alert_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/alert_rule_summary.py b/src/oci/budget/models/alert_rule_summary.py index bca6e0a3e4..8d90dc6ca3 100644 --- a/src/oci/budget/models/alert_rule_summary.py +++ b/src/oci/budget/models/alert_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/budget.py b/src/oci/budget/models/budget.py index 8a0601a848..8d2a7ceba0 100644 --- a/src/oci/budget/models/budget.py +++ b/src/oci/budget/models/budget.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/budget_summary.py b/src/oci/budget/models/budget_summary.py index 683aa8a3b4..bfc3a6b403 100644 --- a/src/oci/budget/models/budget_summary.py +++ b/src/oci/budget/models/budget_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/create_alert_rule_details.py b/src/oci/budget/models/create_alert_rule_details.py index caf3f2755a..06e541fac9 100644 --- a/src/oci/budget/models/create_alert_rule_details.py +++ b/src/oci/budget/models/create_alert_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/create_budget_details.py b/src/oci/budget/models/create_budget_details.py index a50254e289..16472ac5cf 100644 --- a/src/oci/budget/models/create_budget_details.py +++ b/src/oci/budget/models/create_budget_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/update_alert_rule_details.py b/src/oci/budget/models/update_alert_rule_details.py index 17c2bf8e8a..a514fc6345 100644 --- a/src/oci/budget/models/update_alert_rule_details.py +++ b/src/oci/budget/models/update_alert_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/budget/models/update_budget_details.py b/src/oci/budget/models/update_budget_details.py index c4a84d3b45..7c2cb6e330 100644 --- a/src/oci/budget/models/update_budget_details.py +++ b/src/oci/budget/models/update_budget_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/config.py b/src/oci/config.py index 821ba20a73..4171f3a45e 100644 --- a/src/oci/config.py +++ b/src/oci/config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. """ Helpers for loading and validating service configuration. diff --git a/src/oci/constants.py b/src/oci/constants.py index 69474d307f..01cab50d37 100644 --- a/src/oci/constants.py +++ b/src/oci/constants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. HEADER_NEXT_PAGE = 'opc-next-page' HEADER_REQUEST_ID = 'opc-request-id' diff --git a/src/oci/container_engine/__init__.py b/src/oci/container_engine/__init__.py index 005a8880a4..dc5df9c66f 100644 --- a/src/oci/container_engine/__init__.py +++ b/src/oci/container_engine/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/container_engine/container_engine_client.py b/src/oci/container_engine/container_engine_client.py index 858d7a8716..f44ae907c0 100644 --- a/src/oci/container_engine/container_engine_client.py +++ b/src/oci/container_engine/container_engine_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/container_engine/container_engine_client_composite_operations.py b/src/oci/container_engine/container_engine_client_composite_operations.py index 51a91b77df..e19c1f633b 100644 --- a/src/oci/container_engine/container_engine_client_composite_operations.py +++ b/src/oci/container_engine/container_engine_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/container_engine/models/__init__.py b/src/oci/container_engine/models/__init__.py index 06d0ea98da..6d56c7ecd2 100644 --- a/src/oci/container_engine/models/__init__.py +++ b/src/oci/container_engine/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/container_engine/models/add_on_options.py b/src/oci/container_engine/models/add_on_options.py index cd78653f18..7b83067fc9 100644 --- a/src/oci/container_engine/models/add_on_options.py +++ b/src/oci/container_engine/models/add_on_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster.py b/src/oci/container_engine/models/cluster.py index a99032ac98..437f70ee54 100644 --- a/src/oci/container_engine/models/cluster.py +++ b/src/oci/container_engine/models/cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster_create_options.py b/src/oci/container_engine/models/cluster_create_options.py index ccade50e04..003b2a81ed 100644 --- a/src/oci/container_engine/models/cluster_create_options.py +++ b/src/oci/container_engine/models/cluster_create_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster_endpoints.py b/src/oci/container_engine/models/cluster_endpoints.py index 766f49cfa3..9a5253d720 100644 --- a/src/oci/container_engine/models/cluster_endpoints.py +++ b/src/oci/container_engine/models/cluster_endpoints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster_metadata.py b/src/oci/container_engine/models/cluster_metadata.py index fa858db7d3..68436fe6ce 100644 --- a/src/oci/container_engine/models/cluster_metadata.py +++ b/src/oci/container_engine/models/cluster_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster_options.py b/src/oci/container_engine/models/cluster_options.py index 0d9edeb05a..5439443a90 100644 --- a/src/oci/container_engine/models/cluster_options.py +++ b/src/oci/container_engine/models/cluster_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/cluster_summary.py b/src/oci/container_engine/models/cluster_summary.py index 77793413ff..9a41731eaa 100644 --- a/src/oci/container_engine/models/cluster_summary.py +++ b/src/oci/container_engine/models/cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/create_cluster_details.py b/src/oci/container_engine/models/create_cluster_details.py index 0be0b73be4..ff37546fce 100644 --- a/src/oci/container_engine/models/create_cluster_details.py +++ b/src/oci/container_engine/models/create_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/create_cluster_kubeconfig_content_details.py b/src/oci/container_engine/models/create_cluster_kubeconfig_content_details.py index 3561664578..1bed982df4 100644 --- a/src/oci/container_engine/models/create_cluster_kubeconfig_content_details.py +++ b/src/oci/container_engine/models/create_cluster_kubeconfig_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/create_node_pool_details.py b/src/oci/container_engine/models/create_node_pool_details.py index 881f9ccc27..5d458ab3ac 100644 --- a/src/oci/container_engine/models/create_node_pool_details.py +++ b/src/oci/container_engine/models/create_node_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/create_node_pool_node_config_details.py b/src/oci/container_engine/models/create_node_pool_node_config_details.py index 520d5c2a4b..16f2b6ab7e 100644 --- a/src/oci/container_engine/models/create_node_pool_node_config_details.py +++ b/src/oci/container_engine/models/create_node_pool_node_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/key_value.py b/src/oci/container_engine/models/key_value.py index 69046e872e..15aff98e9c 100644 --- a/src/oci/container_engine/models/key_value.py +++ b/src/oci/container_engine/models/key_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/kubernetes_network_config.py b/src/oci/container_engine/models/kubernetes_network_config.py index a664b6cc35..d7151d5401 100644 --- a/src/oci/container_engine/models/kubernetes_network_config.py +++ b/src/oci/container_engine/models/kubernetes_network_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node.py b/src/oci/container_engine/models/node.py index af14774f28..59585356e9 100644 --- a/src/oci/container_engine/models/node.py +++ b/src/oci/container_engine/models/node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_error.py b/src/oci/container_engine/models/node_error.py index a3378bfc48..74790df698 100644 --- a/src/oci/container_engine/models/node_error.py +++ b/src/oci/container_engine/models/node_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_pool.py b/src/oci/container_engine/models/node_pool.py index 671710e0d3..78779a1d20 100644 --- a/src/oci/container_engine/models/node_pool.py +++ b/src/oci/container_engine/models/node_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_pool_node_config_details.py b/src/oci/container_engine/models/node_pool_node_config_details.py index 8f15832e3c..a0214e133a 100644 --- a/src/oci/container_engine/models/node_pool_node_config_details.py +++ b/src/oci/container_engine/models/node_pool_node_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_pool_options.py b/src/oci/container_engine/models/node_pool_options.py index fc74e90a62..2a3d983e52 100644 --- a/src/oci/container_engine/models/node_pool_options.py +++ b/src/oci/container_engine/models/node_pool_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_pool_placement_config_details.py b/src/oci/container_engine/models/node_pool_placement_config_details.py index 93d35c8b2b..c67b6be0cb 100644 --- a/src/oci/container_engine/models/node_pool_placement_config_details.py +++ b/src/oci/container_engine/models/node_pool_placement_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_pool_summary.py b/src/oci/container_engine/models/node_pool_summary.py index 3f5f517918..cb4d0f379a 100644 --- a/src/oci/container_engine/models/node_pool_summary.py +++ b/src/oci/container_engine/models/node_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_source_details.py b/src/oci/container_engine/models/node_source_details.py index 66fef21dfe..7972aa4f82 100644 --- a/src/oci/container_engine/models/node_source_details.py +++ b/src/oci/container_engine/models/node_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_source_option.py b/src/oci/container_engine/models/node_source_option.py index 8237772178..c01206183a 100644 --- a/src/oci/container_engine/models/node_source_option.py +++ b/src/oci/container_engine/models/node_source_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_source_via_image_details.py b/src/oci/container_engine/models/node_source_via_image_details.py index af819080fb..ec1b4310bf 100644 --- a/src/oci/container_engine/models/node_source_via_image_details.py +++ b/src/oci/container_engine/models/node_source_via_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .node_source_details import NodeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/node_source_via_image_option.py b/src/oci/container_engine/models/node_source_via_image_option.py index d429171450..09365d945f 100644 --- a/src/oci/container_engine/models/node_source_via_image_option.py +++ b/src/oci/container_engine/models/node_source_via_image_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .node_source_option import NodeSourceOption from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/update_cluster_details.py b/src/oci/container_engine/models/update_cluster_details.py index 7f09c4c697..ffb6e7352f 100644 --- a/src/oci/container_engine/models/update_cluster_details.py +++ b/src/oci/container_engine/models/update_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/update_node_pool_details.py b/src/oci/container_engine/models/update_node_pool_details.py index dca65d590c..f2b87c0117 100644 --- a/src/oci/container_engine/models/update_node_pool_details.py +++ b/src/oci/container_engine/models/update_node_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/update_node_pool_node_config_details.py b/src/oci/container_engine/models/update_node_pool_node_config_details.py index bce95147f7..a9a102878a 100644 --- a/src/oci/container_engine/models/update_node_pool_node_config_details.py +++ b/src/oci/container_engine/models/update_node_pool_node_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/work_request.py b/src/oci/container_engine/models/work_request.py index 2757a87db8..9c94a4efba 100644 --- a/src/oci/container_engine/models/work_request.py +++ b/src/oci/container_engine/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/work_request_error.py b/src/oci/container_engine/models/work_request_error.py index 23d3a9a97f..ed20367fd8 100644 --- a/src/oci/container_engine/models/work_request_error.py +++ b/src/oci/container_engine/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/work_request_log_entry.py b/src/oci/container_engine/models/work_request_log_entry.py index ac4d3a5f73..81ceaad5c9 100644 --- a/src/oci/container_engine/models/work_request_log_entry.py +++ b/src/oci/container_engine/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/work_request_resource.py b/src/oci/container_engine/models/work_request_resource.py index c7401daaa3..6e3d46236a 100644 --- a/src/oci/container_engine/models/work_request_resource.py +++ b/src/oci/container_engine/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/container_engine/models/work_request_summary.py b/src/oci/container_engine/models/work_request_summary.py index 2243f19923..0045cc75ad 100644 --- a/src/oci/container_engine/models/work_request_summary.py +++ b/src/oci/container_engine/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/__init__.py b/src/oci/core/__init__.py index 02c14810ec..daf42e9274 100644 --- a/src/oci/core/__init__.py +++ b/src/oci/core/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/blockstorage_client.py b/src/oci/core/blockstorage_client.py index 3cba38241c..2cfec0626f 100644 --- a/src/oci/core/blockstorage_client.py +++ b/src/oci/core/blockstorage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/blockstorage_client_composite_operations.py b/src/oci/core/blockstorage_client_composite_operations.py index a9199a140e..88972fe66b 100644 --- a/src/oci/core/blockstorage_client_composite_operations.py +++ b/src/oci/core/blockstorage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/core/compute_client.py b/src/oci/core/compute_client.py index 4f5843f5c1..1e8a38a814 100644 --- a/src/oci/core/compute_client.py +++ b/src/oci/core/compute_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/compute_client_composite_operations.py b/src/oci/core/compute_client_composite_operations.py index dc8ae2ca75..232671ef8a 100644 --- a/src/oci/core/compute_client_composite_operations.py +++ b/src/oci/core/compute_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/core/compute_management_client.py b/src/oci/core/compute_management_client.py index 85c7b7d269..03ffea9b6f 100644 --- a/src/oci/core/compute_management_client.py +++ b/src/oci/core/compute_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/compute_management_client_composite_operations.py b/src/oci/core/compute_management_client_composite_operations.py index 6b604d2b8e..50efa02e92 100644 --- a/src/oci/core/compute_management_client_composite_operations.py +++ b/src/oci/core/compute_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/core/models/__init__.py b/src/oci/core/models/__init__.py index 8c1cc2ab1d..471fb4c859 100644 --- a/src/oci/core/models/__init__.py +++ b/src/oci/core/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/models/add_network_security_group_security_rules_details.py b/src/oci/core/models/add_network_security_group_security_rules_details.py index fd80c70e60..741631a814 100644 --- a/src/oci/core/models/add_network_security_group_security_rules_details.py +++ b/src/oci/core/models/add_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/add_security_rule_details.py b/src/oci/core/models/add_security_rule_details.py index 17207a1c6e..3d9244c1cb 100644 --- a/src/oci/core/models/add_security_rule_details.py +++ b/src/oci/core/models/add_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/added_network_security_group_security_rules.py b/src/oci/core/models/added_network_security_group_security_rules.py index d3096a4c26..86e61e1aad 100644 --- a/src/oci/core/models/added_network_security_group_security_rules.py +++ b/src/oci/core/models/added_network_security_group_security_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_listing.py b/src/oci/core/models/app_catalog_listing.py index f80e8d28be..d91b4afc8b 100644 --- a/src/oci/core/models/app_catalog_listing.py +++ b/src/oci/core/models/app_catalog_listing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_listing_resource_version.py b/src/oci/core/models/app_catalog_listing_resource_version.py index 4871def19e..d3cc90a6de 100644 --- a/src/oci/core/models/app_catalog_listing_resource_version.py +++ b/src/oci/core/models/app_catalog_listing_resource_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_listing_resource_version_agreements.py b/src/oci/core/models/app_catalog_listing_resource_version_agreements.py index 244c39a2f3..0482cb72a9 100644 --- a/src/oci/core/models/app_catalog_listing_resource_version_agreements.py +++ b/src/oci/core/models/app_catalog_listing_resource_version_agreements.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_listing_resource_version_summary.py b/src/oci/core/models/app_catalog_listing_resource_version_summary.py index f863a90b19..be00a7cc59 100644 --- a/src/oci/core/models/app_catalog_listing_resource_version_summary.py +++ b/src/oci/core/models/app_catalog_listing_resource_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_listing_summary.py b/src/oci/core/models/app_catalog_listing_summary.py index a268dad59f..60e813c047 100644 --- a/src/oci/core/models/app_catalog_listing_summary.py +++ b/src/oci/core/models/app_catalog_listing_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_subscription.py b/src/oci/core/models/app_catalog_subscription.py index d408b0683d..6d84d304da 100644 --- a/src/oci/core/models/app_catalog_subscription.py +++ b/src/oci/core/models/app_catalog_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/app_catalog_subscription_summary.py b/src/oci/core/models/app_catalog_subscription_summary.py index 5261faa1f5..a1714cb331 100644 --- a/src/oci/core/models/app_catalog_subscription_summary.py +++ b/src/oci/core/models/app_catalog_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_boot_volume_details.py b/src/oci/core/models/attach_boot_volume_details.py index a429146308..6e151a9acb 100644 --- a/src/oci/core/models/attach_boot_volume_details.py +++ b/src/oci/core/models/attach_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_emulated_volume_details.py b/src/oci/core/models/attach_emulated_volume_details.py index fb61b23f2f..ca6a832308 100644 --- a/src/oci/core/models/attach_emulated_volume_details.py +++ b/src/oci/core/models/attach_emulated_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .attach_volume_details import AttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_i_scsi_volume_details.py b/src/oci/core/models/attach_i_scsi_volume_details.py index 43adeebb4b..168d16d690 100644 --- a/src/oci/core/models/attach_i_scsi_volume_details.py +++ b/src/oci/core/models/attach_i_scsi_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .attach_volume_details import AttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_load_balancer_details.py b/src/oci/core/models/attach_load_balancer_details.py index 00989f75dc..43e4af8d54 100644 --- a/src/oci/core/models/attach_load_balancer_details.py +++ b/src/oci/core/models/attach_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_paravirtualized_volume_details.py b/src/oci/core/models/attach_paravirtualized_volume_details.py index c60b22de12..ee5bcf5b71 100644 --- a/src/oci/core/models/attach_paravirtualized_volume_details.py +++ b/src/oci/core/models/attach_paravirtualized_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .attach_volume_details import AttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_service_determined_volume_details.py b/src/oci/core/models/attach_service_determined_volume_details.py index bd77fb4d75..8ddf9baa7b 100644 --- a/src/oci/core/models/attach_service_determined_volume_details.py +++ b/src/oci/core/models/attach_service_determined_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .attach_volume_details import AttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_vnic_details.py b/src/oci/core/models/attach_vnic_details.py index b6d0e7796d..9815a90103 100644 --- a/src/oci/core/models/attach_vnic_details.py +++ b/src/oci/core/models/attach_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/attach_volume_details.py b/src/oci/core/models/attach_volume_details.py index 727b35da01..d443d3c5f1 100644 --- a/src/oci/core/models/attach_volume_details.py +++ b/src/oci/core/models/attach_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/bgp_session_info.py b/src/oci/core/models/bgp_session_info.py index 0dba61007f..0541a07376 100644 --- a/src/oci/core/models/bgp_session_info.py +++ b/src/oci/core/models/bgp_session_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume.py b/src/oci/core/models/boot_volume.py index 987d9999d0..4ced694f71 100644 --- a/src/oci/core/models/boot_volume.py +++ b/src/oci/core/models/boot_volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_attachment.py b/src/oci/core/models/boot_volume_attachment.py index c8943199ee..c88a442b8d 100644 --- a/src/oci/core/models/boot_volume_attachment.py +++ b/src/oci/core/models/boot_volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_backup.py b/src/oci/core/models/boot_volume_backup.py index 0c3f315c42..4dd6172994 100644 --- a/src/oci/core/models/boot_volume_backup.py +++ b/src/oci/core/models/boot_volume_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_kms_key.py b/src/oci/core/models/boot_volume_kms_key.py index 59a7b1d03f..5d55d84f81 100644 --- a/src/oci/core/models/boot_volume_kms_key.py +++ b/src/oci/core/models/boot_volume_kms_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_source_details.py b/src/oci/core/models/boot_volume_source_details.py index 708b4fe6fe..f70fcdf85d 100644 --- a/src/oci/core/models/boot_volume_source_details.py +++ b/src/oci/core/models/boot_volume_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_source_from_boot_volume_backup_details.py b/src/oci/core/models/boot_volume_source_from_boot_volume_backup_details.py index 4ff26bae92..00cc62c280 100644 --- a/src/oci/core/models/boot_volume_source_from_boot_volume_backup_details.py +++ b/src/oci/core/models/boot_volume_source_from_boot_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .boot_volume_source_details import BootVolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/boot_volume_source_from_boot_volume_details.py b/src/oci/core/models/boot_volume_source_from_boot_volume_details.py index 7bfa58800f..e218e0f580 100644 --- a/src/oci/core/models/boot_volume_source_from_boot_volume_details.py +++ b/src/oci/core/models/boot_volume_source_from_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .boot_volume_source_details import BootVolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/bulk_add_virtual_circuit_public_prefixes_details.py b/src/oci/core/models/bulk_add_virtual_circuit_public_prefixes_details.py index a8373cb159..91f1ac145f 100644 --- a/src/oci/core/models/bulk_add_virtual_circuit_public_prefixes_details.py +++ b/src/oci/core/models/bulk_add_virtual_circuit_public_prefixes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/bulk_delete_virtual_circuit_public_prefixes_details.py b/src/oci/core/models/bulk_delete_virtual_circuit_public_prefixes_details.py index 34f2bff989..7ef736e8f9 100644 --- a/src/oci/core/models/bulk_delete_virtual_circuit_public_prefixes_details.py +++ b/src/oci/core/models/bulk_delete_virtual_circuit_public_prefixes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/capture_console_history_details.py b/src/oci/core/models/capture_console_history_details.py index 251caed58a..1a73fce382 100644 --- a/src/oci/core/models/capture_console_history_details.py +++ b/src/oci/core/models/capture_console_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_boot_volume_backup_compartment_details.py b/src/oci/core/models/change_boot_volume_backup_compartment_details.py index a98cf97e15..44ad56f3de 100644 --- a/src/oci/core/models/change_boot_volume_backup_compartment_details.py +++ b/src/oci/core/models/change_boot_volume_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_boot_volume_compartment_details.py b/src/oci/core/models/change_boot_volume_compartment_details.py index 5e93f33c7b..594e3c51cd 100644 --- a/src/oci/core/models/change_boot_volume_compartment_details.py +++ b/src/oci/core/models/change_boot_volume_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_cluster_network_compartment_details.py b/src/oci/core/models/change_cluster_network_compartment_details.py index 39e3dc0fd3..0eaa1e3d15 100644 --- a/src/oci/core/models/change_cluster_network_compartment_details.py +++ b/src/oci/core/models/change_cluster_network_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_cpe_compartment_details.py b/src/oci/core/models/change_cpe_compartment_details.py index d52ee84425..db91c3d373 100644 --- a/src/oci/core/models/change_cpe_compartment_details.py +++ b/src/oci/core/models/change_cpe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_cross_connect_compartment_details.py b/src/oci/core/models/change_cross_connect_compartment_details.py index 94ff097248..1de942e3ee 100644 --- a/src/oci/core/models/change_cross_connect_compartment_details.py +++ b/src/oci/core/models/change_cross_connect_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_cross_connect_group_compartment_details.py b/src/oci/core/models/change_cross_connect_group_compartment_details.py index a9b9b1c4bd..a1e022a5c6 100644 --- a/src/oci/core/models/change_cross_connect_group_compartment_details.py +++ b/src/oci/core/models/change_cross_connect_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_dedicated_vm_host_compartment_details.py b/src/oci/core/models/change_dedicated_vm_host_compartment_details.py index ca298dbf21..adfc3f2ae9 100644 --- a/src/oci/core/models/change_dedicated_vm_host_compartment_details.py +++ b/src/oci/core/models/change_dedicated_vm_host_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_dhcp_options_compartment_details.py b/src/oci/core/models/change_dhcp_options_compartment_details.py index 3d99f14ba9..37cdb60c31 100644 --- a/src/oci/core/models/change_dhcp_options_compartment_details.py +++ b/src/oci/core/models/change_dhcp_options_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_drg_compartment_details.py b/src/oci/core/models/change_drg_compartment_details.py index 940b993ad4..c46c8c61cb 100644 --- a/src/oci/core/models/change_drg_compartment_details.py +++ b/src/oci/core/models/change_drg_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_image_compartment_details.py b/src/oci/core/models/change_image_compartment_details.py index fb8a66d5f3..2f777257e9 100644 --- a/src/oci/core/models/change_image_compartment_details.py +++ b/src/oci/core/models/change_image_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_instance_compartment_details.py b/src/oci/core/models/change_instance_compartment_details.py index 24f224ecfe..72ec2a7895 100644 --- a/src/oci/core/models/change_instance_compartment_details.py +++ b/src/oci/core/models/change_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_instance_configuration_compartment_details.py b/src/oci/core/models/change_instance_configuration_compartment_details.py index 7afb219ea6..eba56fd8ac 100644 --- a/src/oci/core/models/change_instance_configuration_compartment_details.py +++ b/src/oci/core/models/change_instance_configuration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_instance_pool_compartment_details.py b/src/oci/core/models/change_instance_pool_compartment_details.py index a8cc879d11..666bd6b539 100644 --- a/src/oci/core/models/change_instance_pool_compartment_details.py +++ b/src/oci/core/models/change_instance_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_internet_gateway_compartment_details.py b/src/oci/core/models/change_internet_gateway_compartment_details.py index 83304c1b18..fa12c7c5de 100644 --- a/src/oci/core/models/change_internet_gateway_compartment_details.py +++ b/src/oci/core/models/change_internet_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_ip_sec_connection_compartment_details.py b/src/oci/core/models/change_ip_sec_connection_compartment_details.py index 88c06ece06..4a9280569e 100644 --- a/src/oci/core/models/change_ip_sec_connection_compartment_details.py +++ b/src/oci/core/models/change_ip_sec_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_local_peering_gateway_compartment_details.py b/src/oci/core/models/change_local_peering_gateway_compartment_details.py index 630c501de2..f49a666f84 100644 --- a/src/oci/core/models/change_local_peering_gateway_compartment_details.py +++ b/src/oci/core/models/change_local_peering_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_nat_gateway_compartment_details.py b/src/oci/core/models/change_nat_gateway_compartment_details.py index 6b1decb1e0..668ef56a1d 100644 --- a/src/oci/core/models/change_nat_gateway_compartment_details.py +++ b/src/oci/core/models/change_nat_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_network_security_group_compartment_details.py b/src/oci/core/models/change_network_security_group_compartment_details.py index c125395838..4b2df6f24b 100644 --- a/src/oci/core/models/change_network_security_group_compartment_details.py +++ b/src/oci/core/models/change_network_security_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_public_ip_compartment_details.py b/src/oci/core/models/change_public_ip_compartment_details.py index 296d97e39a..5c7da1f433 100644 --- a/src/oci/core/models/change_public_ip_compartment_details.py +++ b/src/oci/core/models/change_public_ip_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_remote_peering_connection_compartment_details.py b/src/oci/core/models/change_remote_peering_connection_compartment_details.py index 65219dddb1..3c06bcd480 100644 --- a/src/oci/core/models/change_remote_peering_connection_compartment_details.py +++ b/src/oci/core/models/change_remote_peering_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_route_table_compartment_details.py b/src/oci/core/models/change_route_table_compartment_details.py index 5b8fb80f3a..0f6c027716 100644 --- a/src/oci/core/models/change_route_table_compartment_details.py +++ b/src/oci/core/models/change_route_table_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_security_list_compartment_details.py b/src/oci/core/models/change_security_list_compartment_details.py index 0f3e042c0f..dd5be7b368 100644 --- a/src/oci/core/models/change_security_list_compartment_details.py +++ b/src/oci/core/models/change_security_list_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_service_gateway_compartment_details.py b/src/oci/core/models/change_service_gateway_compartment_details.py index d3d8ff2177..01499226bf 100644 --- a/src/oci/core/models/change_service_gateway_compartment_details.py +++ b/src/oci/core/models/change_service_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_subnet_compartment_details.py b/src/oci/core/models/change_subnet_compartment_details.py index 09b8f23295..66b83e8636 100644 --- a/src/oci/core/models/change_subnet_compartment_details.py +++ b/src/oci/core/models/change_subnet_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_vcn_compartment_details.py b/src/oci/core/models/change_vcn_compartment_details.py index 8ab26b8bae..953095caac 100644 --- a/src/oci/core/models/change_vcn_compartment_details.py +++ b/src/oci/core/models/change_vcn_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_virtual_circuit_compartment_details.py b/src/oci/core/models/change_virtual_circuit_compartment_details.py index 004cd72402..29b54424ff 100644 --- a/src/oci/core/models/change_virtual_circuit_compartment_details.py +++ b/src/oci/core/models/change_virtual_circuit_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_volume_backup_compartment_details.py b/src/oci/core/models/change_volume_backup_compartment_details.py index 2b0da9da25..5334f9adda 100644 --- a/src/oci/core/models/change_volume_backup_compartment_details.py +++ b/src/oci/core/models/change_volume_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_volume_compartment_details.py b/src/oci/core/models/change_volume_compartment_details.py index 1d9786c92e..7b5315274c 100644 --- a/src/oci/core/models/change_volume_compartment_details.py +++ b/src/oci/core/models/change_volume_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_volume_group_backup_compartment_details.py b/src/oci/core/models/change_volume_group_backup_compartment_details.py index 993fa73bc2..78c226510e 100644 --- a/src/oci/core/models/change_volume_group_backup_compartment_details.py +++ b/src/oci/core/models/change_volume_group_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/change_volume_group_compartment_details.py b/src/oci/core/models/change_volume_group_compartment_details.py index 1d40f5533d..48049ede7d 100644 --- a/src/oci/core/models/change_volume_group_compartment_details.py +++ b/src/oci/core/models/change_volume_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cluster_network.py b/src/oci/core/models/cluster_network.py index a7ce119b3b..4a453e614e 100644 --- a/src/oci/core/models/cluster_network.py +++ b/src/oci/core/models/cluster_network.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cluster_network_placement_configuration_details.py b/src/oci/core/models/cluster_network_placement_configuration_details.py index c95402a5fb..87277c8a46 100644 --- a/src/oci/core/models/cluster_network_placement_configuration_details.py +++ b/src/oci/core/models/cluster_network_placement_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cluster_network_summary.py b/src/oci/core/models/cluster_network_summary.py index 1908da4500..7e4f5ec1de 100644 --- a/src/oci/core/models/cluster_network_summary.py +++ b/src/oci/core/models/cluster_network_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/compute_instance_details.py b/src/oci/core/models/compute_instance_details.py index 775a249961..3b8fb05fb7 100644 --- a/src/oci/core/models/compute_instance_details.py +++ b/src/oci/core/models/compute_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_instance_details import InstanceConfigurationInstanceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/connect_local_peering_gateways_details.py b/src/oci/core/models/connect_local_peering_gateways_details.py index 805aed9ff9..f6c26db66a 100644 --- a/src/oci/core/models/connect_local_peering_gateways_details.py +++ b/src/oci/core/models/connect_local_peering_gateways_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/connect_remote_peering_connections_details.py b/src/oci/core/models/connect_remote_peering_connections_details.py index b238e3be26..df231e8683 100644 --- a/src/oci/core/models/connect_remote_peering_connections_details.py +++ b/src/oci/core/models/connect_remote_peering_connections_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/console_history.py b/src/oci/core/models/console_history.py index 4a62d7fb1c..f11ebf11cb 100644 --- a/src/oci/core/models/console_history.py +++ b/src/oci/core/models/console_history.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/copy_boot_volume_backup_details.py b/src/oci/core/models/copy_boot_volume_backup_details.py index 8636483fbd..6a9d68a398 100644 --- a/src/oci/core/models/copy_boot_volume_backup_details.py +++ b/src/oci/core/models/copy_boot_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/copy_volume_backup_details.py b/src/oci/core/models/copy_volume_backup_details.py index f058e10b19..e556602da0 100644 --- a/src/oci/core/models/copy_volume_backup_details.py +++ b/src/oci/core/models/copy_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cpe.py b/src/oci/core/models/cpe.py index 12663a78dc..ab7aa6011f 100644 --- a/src/oci/core/models/cpe.py +++ b/src/oci/core/models/cpe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_app_catalog_subscription_details.py b/src/oci/core/models/create_app_catalog_subscription_details.py index edca26117b..492615f782 100644 --- a/src/oci/core/models/create_app_catalog_subscription_details.py +++ b/src/oci/core/models/create_app_catalog_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_boot_volume_backup_details.py b/src/oci/core/models/create_boot_volume_backup_details.py index 8be6dd4659..021d80cbff 100644 --- a/src/oci/core/models/create_boot_volume_backup_details.py +++ b/src/oci/core/models/create_boot_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_boot_volume_details.py b/src/oci/core/models/create_boot_volume_details.py index b30d954476..b2cf8c0283 100644 --- a/src/oci/core/models/create_boot_volume_details.py +++ b/src/oci/core/models/create_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_cluster_network_details.py b/src/oci/core/models/create_cluster_network_details.py index ac9732613b..46fdb13955 100644 --- a/src/oci/core/models/create_cluster_network_details.py +++ b/src/oci/core/models/create_cluster_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_cluster_network_instance_pool_details.py b/src/oci/core/models/create_cluster_network_instance_pool_details.py index a355285a5c..50d1807091 100644 --- a/src/oci/core/models/create_cluster_network_instance_pool_details.py +++ b/src/oci/core/models/create_cluster_network_instance_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_cpe_details.py b/src/oci/core/models/create_cpe_details.py index 4c783977ee..e3630e3646 100644 --- a/src/oci/core/models/create_cpe_details.py +++ b/src/oci/core/models/create_cpe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_cross_connect_details.py b/src/oci/core/models/create_cross_connect_details.py index 9d573ffc10..28d4eac4a6 100644 --- a/src/oci/core/models/create_cross_connect_details.py +++ b/src/oci/core/models/create_cross_connect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_cross_connect_group_details.py b/src/oci/core/models/create_cross_connect_group_details.py index 2b20b21777..1869706fc4 100644 --- a/src/oci/core/models/create_cross_connect_group_details.py +++ b/src/oci/core/models/create_cross_connect_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_dedicated_vm_host_details.py b/src/oci/core/models/create_dedicated_vm_host_details.py index c4a391a7c6..8508438ac1 100644 --- a/src/oci/core/models/create_dedicated_vm_host_details.py +++ b/src/oci/core/models/create_dedicated_vm_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_dhcp_details.py b/src/oci/core/models/create_dhcp_details.py index 6148d6af2c..3f2d0e4cea 100644 --- a/src/oci/core/models/create_dhcp_details.py +++ b/src/oci/core/models/create_dhcp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_drg_attachment_details.py b/src/oci/core/models/create_drg_attachment_details.py index f493102dfa..77a2d3d604 100644 --- a/src/oci/core/models/create_drg_attachment_details.py +++ b/src/oci/core/models/create_drg_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_drg_details.py b/src/oci/core/models/create_drg_details.py index e2dc6fa2a2..96568e58dd 100644 --- a/src/oci/core/models/create_drg_details.py +++ b/src/oci/core/models/create_drg_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_image_details.py b/src/oci/core/models/create_image_details.py index 592880c3de..0533972a4c 100644 --- a/src/oci/core/models/create_image_details.py +++ b/src/oci/core/models/create_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_configuration_base.py b/src/oci/core/models/create_instance_configuration_base.py index 86e1720497..212831f300 100644 --- a/src/oci/core/models/create_instance_configuration_base.py +++ b/src/oci/core/models/create_instance_configuration_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_configuration_details.py b/src/oci/core/models/create_instance_configuration_details.py index 0da89b5b1c..5476932387 100644 --- a/src/oci/core/models/create_instance_configuration_details.py +++ b/src/oci/core/models/create_instance_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_instance_configuration_base import CreateInstanceConfigurationBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_configuration_from_instance_details.py b/src/oci/core/models/create_instance_configuration_from_instance_details.py index 3fa6ac1a02..8dc02df58c 100644 --- a/src/oci/core/models/create_instance_configuration_from_instance_details.py +++ b/src/oci/core/models/create_instance_configuration_from_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_instance_configuration_base import CreateInstanceConfigurationBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_console_connection_details.py b/src/oci/core/models/create_instance_console_connection_details.py index ad12ef19a4..e2b48eaaf5 100644 --- a/src/oci/core/models/create_instance_console_connection_details.py +++ b/src/oci/core/models/create_instance_console_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_pool_details.py b/src/oci/core/models/create_instance_pool_details.py index 09c1943231..9983d49621 100644 --- a/src/oci/core/models/create_instance_pool_details.py +++ b/src/oci/core/models/create_instance_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_instance_pool_placement_configuration_details.py b/src/oci/core/models/create_instance_pool_placement_configuration_details.py index 21322de7ce..cf89ea3c7e 100644 --- a/src/oci/core/models/create_instance_pool_placement_configuration_details.py +++ b/src/oci/core/models/create_instance_pool_placement_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_internet_gateway_details.py b/src/oci/core/models/create_internet_gateway_details.py index 729655f49c..ab89019b46 100644 --- a/src/oci/core/models/create_internet_gateway_details.py +++ b/src/oci/core/models/create_internet_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_ip_sec_connection_details.py b/src/oci/core/models/create_ip_sec_connection_details.py index 909b1938d2..b1e92cb8ef 100644 --- a/src/oci/core/models/create_ip_sec_connection_details.py +++ b/src/oci/core/models/create_ip_sec_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_ip_sec_connection_tunnel_details.py b/src/oci/core/models/create_ip_sec_connection_tunnel_details.py index 95346a902b..f7db85f184 100644 --- a/src/oci/core/models/create_ip_sec_connection_tunnel_details.py +++ b/src/oci/core/models/create_ip_sec_connection_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_ip_sec_tunnel_bgp_session_details.py b/src/oci/core/models/create_ip_sec_tunnel_bgp_session_details.py index 87fc185262..2eb8e6bd52 100644 --- a/src/oci/core/models/create_ip_sec_tunnel_bgp_session_details.py +++ b/src/oci/core/models/create_ip_sec_tunnel_bgp_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_ipv6_details.py b/src/oci/core/models/create_ipv6_details.py index 85fc1c3c76..245f80409f 100644 --- a/src/oci/core/models/create_ipv6_details.py +++ b/src/oci/core/models/create_ipv6_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_local_peering_gateway_details.py b/src/oci/core/models/create_local_peering_gateway_details.py index a7d2089398..17dbc201f9 100644 --- a/src/oci/core/models/create_local_peering_gateway_details.py +++ b/src/oci/core/models/create_local_peering_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_nat_gateway_details.py b/src/oci/core/models/create_nat_gateway_details.py index 38fdcf31f1..b82cf1bfe2 100644 --- a/src/oci/core/models/create_nat_gateway_details.py +++ b/src/oci/core/models/create_nat_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_network_security_group_details.py b/src/oci/core/models/create_network_security_group_details.py index b7900e439e..c5e2f8cc26 100644 --- a/src/oci/core/models/create_network_security_group_details.py +++ b/src/oci/core/models/create_network_security_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_private_ip_details.py b/src/oci/core/models/create_private_ip_details.py index 0e8a22f03a..44fadd8ecc 100644 --- a/src/oci/core/models/create_private_ip_details.py +++ b/src/oci/core/models/create_private_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_public_ip_details.py b/src/oci/core/models/create_public_ip_details.py index b56280263e..3c409ac8ca 100644 --- a/src/oci/core/models/create_public_ip_details.py +++ b/src/oci/core/models/create_public_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_remote_peering_connection_details.py b/src/oci/core/models/create_remote_peering_connection_details.py index 58fcb6d1ef..f13a499136 100644 --- a/src/oci/core/models/create_remote_peering_connection_details.py +++ b/src/oci/core/models/create_remote_peering_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_route_table_details.py b/src/oci/core/models/create_route_table_details.py index e8695c3c7d..19e208c827 100644 --- a/src/oci/core/models/create_route_table_details.py +++ b/src/oci/core/models/create_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_security_list_details.py b/src/oci/core/models/create_security_list_details.py index a0ba843f56..c397345e7a 100644 --- a/src/oci/core/models/create_security_list_details.py +++ b/src/oci/core/models/create_security_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_service_gateway_details.py b/src/oci/core/models/create_service_gateway_details.py index 67579adf75..9614448cf3 100644 --- a/src/oci/core/models/create_service_gateway_details.py +++ b/src/oci/core/models/create_service_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_subnet_details.py b/src/oci/core/models/create_subnet_details.py index 464466cbc0..31f198a174 100644 --- a/src/oci/core/models/create_subnet_details.py +++ b/src/oci/core/models/create_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_vcn_details.py b/src/oci/core/models/create_vcn_details.py index 1eb2345da0..2f2f09391f 100644 --- a/src/oci/core/models/create_vcn_details.py +++ b/src/oci/core/models/create_vcn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_virtual_circuit_details.py b/src/oci/core/models/create_virtual_circuit_details.py index ae4a11b22f..4eb4bddc23 100644 --- a/src/oci/core/models/create_virtual_circuit_details.py +++ b/src/oci/core/models/create_virtual_circuit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_virtual_circuit_public_prefix_details.py b/src/oci/core/models/create_virtual_circuit_public_prefix_details.py index e2f870b12d..e75f210562 100644 --- a/src/oci/core/models/create_virtual_circuit_public_prefix_details.py +++ b/src/oci/core/models/create_virtual_circuit_public_prefix_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_vnic_details.py b/src/oci/core/models/create_vnic_details.py index 52d9653796..e6268fc37d 100644 --- a/src/oci/core/models/create_vnic_details.py +++ b/src/oci/core/models/create_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_backup_details.py b/src/oci/core/models/create_volume_backup_details.py index cd4f9bf46b..a7724cd061 100644 --- a/src/oci/core/models/create_volume_backup_details.py +++ b/src/oci/core/models/create_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_backup_policy_assignment_details.py b/src/oci/core/models/create_volume_backup_policy_assignment_details.py index ca89e0b32a..4545a3f33f 100644 --- a/src/oci/core/models/create_volume_backup_policy_assignment_details.py +++ b/src/oci/core/models/create_volume_backup_policy_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_backup_policy_details.py b/src/oci/core/models/create_volume_backup_policy_details.py index a791e703c8..269569b886 100644 --- a/src/oci/core/models/create_volume_backup_policy_details.py +++ b/src/oci/core/models/create_volume_backup_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_details.py b/src/oci/core/models/create_volume_details.py index 32c2603572..0dcf5b4984 100644 --- a/src/oci/core/models/create_volume_details.py +++ b/src/oci/core/models/create_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_group_backup_details.py b/src/oci/core/models/create_volume_group_backup_details.py index 8e852652f3..978dc96d21 100644 --- a/src/oci/core/models/create_volume_group_backup_details.py +++ b/src/oci/core/models/create_volume_group_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/create_volume_group_details.py b/src/oci/core/models/create_volume_group_details.py index c90b6c1e56..6f3221d80e 100644 --- a/src/oci/core/models/create_volume_group_details.py +++ b/src/oci/core/models/create_volume_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect.py b/src/oci/core/models/cross_connect.py index 96f4ec1cf6..bec33aa38d 100644 --- a/src/oci/core/models/cross_connect.py +++ b/src/oci/core/models/cross_connect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect_group.py b/src/oci/core/models/cross_connect_group.py index f4509dcf37..8439e1422e 100644 --- a/src/oci/core/models/cross_connect_group.py +++ b/src/oci/core/models/cross_connect_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect_location.py b/src/oci/core/models/cross_connect_location.py index e6c1f72b81..9afd2e694b 100644 --- a/src/oci/core/models/cross_connect_location.py +++ b/src/oci/core/models/cross_connect_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect_mapping.py b/src/oci/core/models/cross_connect_mapping.py index 7e60d309ed..8da2cab8d3 100644 --- a/src/oci/core/models/cross_connect_mapping.py +++ b/src/oci/core/models/cross_connect_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect_port_speed_shape.py b/src/oci/core/models/cross_connect_port_speed_shape.py index 81a1eb3801..fd3f1f7092 100644 --- a/src/oci/core/models/cross_connect_port_speed_shape.py +++ b/src/oci/core/models/cross_connect_port_speed_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/cross_connect_status.py b/src/oci/core/models/cross_connect_status.py index 6eaec18396..8be0b58b75 100644 --- a/src/oci/core/models/cross_connect_status.py +++ b/src/oci/core/models/cross_connect_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dedicated_vm_host.py b/src/oci/core/models/dedicated_vm_host.py index 63498d5ef0..2cdecd4705 100644 --- a/src/oci/core/models/dedicated_vm_host.py +++ b/src/oci/core/models/dedicated_vm_host.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dedicated_vm_host_instance_shape_summary.py b/src/oci/core/models/dedicated_vm_host_instance_shape_summary.py index 1948ac2aa8..2c2df6b476 100644 --- a/src/oci/core/models/dedicated_vm_host_instance_shape_summary.py +++ b/src/oci/core/models/dedicated_vm_host_instance_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dedicated_vm_host_instance_summary.py b/src/oci/core/models/dedicated_vm_host_instance_summary.py index 76aa2c6ceb..097c8a6969 100644 --- a/src/oci/core/models/dedicated_vm_host_instance_summary.py +++ b/src/oci/core/models/dedicated_vm_host_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dedicated_vm_host_shape_summary.py b/src/oci/core/models/dedicated_vm_host_shape_summary.py index cc7a8e3080..f5ee6c9ac1 100644 --- a/src/oci/core/models/dedicated_vm_host_shape_summary.py +++ b/src/oci/core/models/dedicated_vm_host_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dedicated_vm_host_summary.py b/src/oci/core/models/dedicated_vm_host_summary.py index c9865328f8..caf0812262 100644 --- a/src/oci/core/models/dedicated_vm_host_summary.py +++ b/src/oci/core/models/dedicated_vm_host_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/delete_virtual_circuit_public_prefix_details.py b/src/oci/core/models/delete_virtual_circuit_public_prefix_details.py index 08d20f036e..6e4ddee383 100644 --- a/src/oci/core/models/delete_virtual_circuit_public_prefix_details.py +++ b/src/oci/core/models/delete_virtual_circuit_public_prefix_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/detach_load_balancer_details.py b/src/oci/core/models/detach_load_balancer_details.py index 2112e863d0..cf59224064 100644 --- a/src/oci/core/models/detach_load_balancer_details.py +++ b/src/oci/core/models/detach_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/device.py b/src/oci/core/models/device.py index bbaebde25c..7f99d335d7 100644 --- a/src/oci/core/models/device.py +++ b/src/oci/core/models/device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dhcp_dns_option.py b/src/oci/core/models/dhcp_dns_option.py index 2f19148cb4..b996c821ec 100644 --- a/src/oci/core/models/dhcp_dns_option.py +++ b/src/oci/core/models/dhcp_dns_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .dhcp_option import DhcpOption from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dhcp_option.py b/src/oci/core/models/dhcp_option.py index 40196fb99a..555689aecf 100644 --- a/src/oci/core/models/dhcp_option.py +++ b/src/oci/core/models/dhcp_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dhcp_options.py b/src/oci/core/models/dhcp_options.py index 29f6ea43c2..92db37e610 100644 --- a/src/oci/core/models/dhcp_options.py +++ b/src/oci/core/models/dhcp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/dhcp_search_domain_option.py b/src/oci/core/models/dhcp_search_domain_option.py index 1a58ecc4d1..a1b49d164c 100644 --- a/src/oci/core/models/dhcp_search_domain_option.py +++ b/src/oci/core/models/dhcp_search_domain_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .dhcp_option import DhcpOption from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/drg.py b/src/oci/core/models/drg.py index 0f347a66cf..0c15ee1e93 100644 --- a/src/oci/core/models/drg.py +++ b/src/oci/core/models/drg.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/drg_attachment.py b/src/oci/core/models/drg_attachment.py index 587f3b11f6..2083191638 100644 --- a/src/oci/core/models/drg_attachment.py +++ b/src/oci/core/models/drg_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/egress_security_rule.py b/src/oci/core/models/egress_security_rule.py index a490948466..92eef8513f 100644 --- a/src/oci/core/models/egress_security_rule.py +++ b/src/oci/core/models/egress_security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/emulated_volume_attachment.py b/src/oci/core/models/emulated_volume_attachment.py index 51600b9b45..28ffa755a5 100644 --- a/src/oci/core/models/emulated_volume_attachment.py +++ b/src/oci/core/models/emulated_volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_attachment import VolumeAttachment from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/export_image_details.py b/src/oci/core/models/export_image_details.py index 4b0c400c46..26bb1ce747 100644 --- a/src/oci/core/models/export_image_details.py +++ b/src/oci/core/models/export_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/export_image_via_object_storage_tuple_details.py b/src/oci/core/models/export_image_via_object_storage_tuple_details.py index c54cb50b27..77ce95eabc 100644 --- a/src/oci/core/models/export_image_via_object_storage_tuple_details.py +++ b/src/oci/core/models/export_image_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .export_image_details import ExportImageDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/export_image_via_object_storage_uri_details.py b/src/oci/core/models/export_image_via_object_storage_uri_details.py index 4bbb0be3f7..2d9d086c48 100644 --- a/src/oci/core/models/export_image_via_object_storage_uri_details.py +++ b/src/oci/core/models/export_image_via_object_storage_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .export_image_details import ExportImageDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/fast_connect_provider_service.py b/src/oci/core/models/fast_connect_provider_service.py index ba4e89e959..4bbcedda2d 100644 --- a/src/oci/core/models/fast_connect_provider_service.py +++ b/src/oci/core/models/fast_connect_provider_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/fast_connect_provider_service_key.py b/src/oci/core/models/fast_connect_provider_service_key.py index 683a017331..b4c5a7e338 100644 --- a/src/oci/core/models/fast_connect_provider_service_key.py +++ b/src/oci/core/models/fast_connect_provider_service_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/get_public_ip_by_ip_address_details.py b/src/oci/core/models/get_public_ip_by_ip_address_details.py index d0d6079fe6..20e98437b3 100644 --- a/src/oci/core/models/get_public_ip_by_ip_address_details.py +++ b/src/oci/core/models/get_public_ip_by_ip_address_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/get_public_ip_by_private_ip_id_details.py b/src/oci/core/models/get_public_ip_by_private_ip_id_details.py index fa5f24c5b4..4d5a265ed4 100644 --- a/src/oci/core/models/get_public_ip_by_private_ip_id_details.py +++ b/src/oci/core/models/get_public_ip_by_private_ip_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/i_scsi_volume_attachment.py b/src/oci/core/models/i_scsi_volume_attachment.py index ec77f43a71..1cbd475d60 100644 --- a/src/oci/core/models/i_scsi_volume_attachment.py +++ b/src/oci/core/models/i_scsi_volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_attachment import VolumeAttachment from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/icmp_options.py b/src/oci/core/models/icmp_options.py index c6b1294682..1c0e67db9d 100644 --- a/src/oci/core/models/icmp_options.py +++ b/src/oci/core/models/icmp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/image.py b/src/oci/core/models/image.py index 976b527ff8..0c168d8938 100644 --- a/src/oci/core/models/image.py +++ b/src/oci/core/models/image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/image_shape_compatibility_entry.py b/src/oci/core/models/image_shape_compatibility_entry.py index 6757de4c3d..4e71bda9b7 100644 --- a/src/oci/core/models/image_shape_compatibility_entry.py +++ b/src/oci/core/models/image_shape_compatibility_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/image_source_details.py b/src/oci/core/models/image_source_details.py index cf5f453efd..c8dbca60f2 100644 --- a/src/oci/core/models/image_source_details.py +++ b/src/oci/core/models/image_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/image_source_via_object_storage_tuple_details.py b/src/oci/core/models/image_source_via_object_storage_tuple_details.py index dcd827aeb1..7d0d21b79f 100644 --- a/src/oci/core/models/image_source_via_object_storage_tuple_details.py +++ b/src/oci/core/models/image_source_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .image_source_details import ImageSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/image_source_via_object_storage_uri_details.py b/src/oci/core/models/image_source_via_object_storage_uri_details.py index 142031dff1..48c7ef0eff 100644 --- a/src/oci/core/models/image_source_via_object_storage_uri_details.py +++ b/src/oci/core/models/image_source_via_object_storage_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .image_source_details import ImageSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ingress_security_rule.py b/src/oci/core/models/ingress_security_rule.py index dbc7f95668..3eeb983004 100644 --- a/src/oci/core/models/ingress_security_rule.py +++ b/src/oci/core/models/ingress_security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance.py b/src/oci/core/models/instance.py index 9028fb9a00..f7605b3f18 100644 --- a/src/oci/core/models/instance.py +++ b/src/oci/core/models/instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_agent_config.py b/src/oci/core/models/instance_agent_config.py index 073e4a3778..b56b0fd330 100644 --- a/src/oci/core/models/instance_agent_config.py +++ b/src/oci/core/models/instance_agent_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_agent_features.py b/src/oci/core/models/instance_agent_features.py index e9bc284604..54ba3bbd53 100644 --- a/src/oci/core/models/instance_agent_features.py +++ b/src/oci/core/models/instance_agent_features.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration.py b/src/oci/core/models/instance_configuration.py index f00382d194..58436490f1 100644 --- a/src/oci/core/models/instance_configuration.py +++ b/src/oci/core/models/instance_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_attach_vnic_details.py b/src/oci/core/models/instance_configuration_attach_vnic_details.py index 8cc4881e94..ec40027b74 100644 --- a/src/oci/core/models/instance_configuration_attach_vnic_details.py +++ b/src/oci/core/models/instance_configuration_attach_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_attach_volume_details.py b/src/oci/core/models/instance_configuration_attach_volume_details.py index 8ccb5c7257..be4015d92e 100644 --- a/src/oci/core/models/instance_configuration_attach_volume_details.py +++ b/src/oci/core/models/instance_configuration_attach_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_block_volume_details.py b/src/oci/core/models/instance_configuration_block_volume_details.py index 896deb4155..f9fc044deb 100644 --- a/src/oci/core/models/instance_configuration_block_volume_details.py +++ b/src/oci/core/models/instance_configuration_block_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_create_vnic_details.py b/src/oci/core/models/instance_configuration_create_vnic_details.py index ff9fdb56ef..8502fa7cc9 100644 --- a/src/oci/core/models/instance_configuration_create_vnic_details.py +++ b/src/oci/core/models/instance_configuration_create_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_create_volume_details.py b/src/oci/core/models/instance_configuration_create_volume_details.py index 1bf3336aef..59fb72a1b6 100644 --- a/src/oci/core/models/instance_configuration_create_volume_details.py +++ b/src/oci/core/models/instance_configuration_create_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_instance_details.py b/src/oci/core/models/instance_configuration_instance_details.py index babb1d7eb5..b821a392e3 100644 --- a/src/oci/core/models/instance_configuration_instance_details.py +++ b/src/oci/core/models/instance_configuration_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_instance_source_details.py b/src/oci/core/models/instance_configuration_instance_source_details.py index b6bc881fea..6b004b27bc 100644 --- a/src/oci/core/models/instance_configuration_instance_source_details.py +++ b/src/oci/core/models/instance_configuration_instance_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_instance_source_via_boot_volume_details.py b/src/oci/core/models/instance_configuration_instance_source_via_boot_volume_details.py index 84c0efe640..2713fa16fa 100644 --- a/src/oci/core/models/instance_configuration_instance_source_via_boot_volume_details.py +++ b/src/oci/core/models/instance_configuration_instance_source_via_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_instance_source_details import InstanceConfigurationInstanceSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_instance_source_via_image_details.py b/src/oci/core/models/instance_configuration_instance_source_via_image_details.py index 2ee14b012c..93635ddbec 100644 --- a/src/oci/core/models/instance_configuration_instance_source_via_image_details.py +++ b/src/oci/core/models/instance_configuration_instance_source_via_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_instance_source_details import InstanceConfigurationInstanceSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_iscsi_attach_volume_details.py b/src/oci/core/models/instance_configuration_iscsi_attach_volume_details.py index 990e2fac2e..9898f1225a 100644 --- a/src/oci/core/models/instance_configuration_iscsi_attach_volume_details.py +++ b/src/oci/core/models/instance_configuration_iscsi_attach_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_attach_volume_details import InstanceConfigurationAttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_launch_instance_details.py b/src/oci/core/models/instance_configuration_launch_instance_details.py index cb77466035..3c54080c94 100644 --- a/src/oci/core/models/instance_configuration_launch_instance_details.py +++ b/src/oci/core/models/instance_configuration_launch_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_paravirtualized_attach_volume_details.py b/src/oci/core/models/instance_configuration_paravirtualized_attach_volume_details.py index 5f98e6cb3c..e7e9aa76b9 100644 --- a/src/oci/core/models/instance_configuration_paravirtualized_attach_volume_details.py +++ b/src/oci/core/models/instance_configuration_paravirtualized_attach_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_attach_volume_details import InstanceConfigurationAttachVolumeDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_summary.py b/src/oci/core/models/instance_configuration_summary.py index 07940399d1..687826a9ae 100644 --- a/src/oci/core/models/instance_configuration_summary.py +++ b/src/oci/core/models/instance_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_volume_source_details.py b/src/oci/core/models/instance_configuration_volume_source_details.py index 896e088093..96aca79e48 100644 --- a/src/oci/core/models/instance_configuration_volume_source_details.py +++ b/src/oci/core/models/instance_configuration_volume_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_volume_source_from_volume_backup_details.py b/src/oci/core/models/instance_configuration_volume_source_from_volume_backup_details.py index 17e1c98448..1735a34854 100644 --- a/src/oci/core/models/instance_configuration_volume_source_from_volume_backup_details.py +++ b/src/oci/core/models/instance_configuration_volume_source_from_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_volume_source_details import InstanceConfigurationVolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_configuration_volume_source_from_volume_details.py b/src/oci/core/models/instance_configuration_volume_source_from_volume_details.py index bb7982dbf5..395dcaf4cd 100644 --- a/src/oci/core/models/instance_configuration_volume_source_from_volume_details.py +++ b/src/oci/core/models/instance_configuration_volume_source_from_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_configuration_volume_source_details import InstanceConfigurationVolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_console_connection.py b/src/oci/core/models/instance_console_connection.py index 7325e8b35f..8c398aa38c 100644 --- a/src/oci/core/models/instance_console_connection.py +++ b/src/oci/core/models/instance_console_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_credentials.py b/src/oci/core/models/instance_credentials.py index c86b70290f..cb0dbbd8c2 100644 --- a/src/oci/core/models/instance_credentials.py +++ b/src/oci/core/models/instance_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool.py b/src/oci/core/models/instance_pool.py index c537d64669..2945d4828a 100644 --- a/src/oci/core/models/instance_pool.py +++ b/src/oci/core/models/instance_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool_instance_load_balancer_backend.py b/src/oci/core/models/instance_pool_instance_load_balancer_backend.py index dd650b619c..a3b5f61f2a 100644 --- a/src/oci/core/models/instance_pool_instance_load_balancer_backend.py +++ b/src/oci/core/models/instance_pool_instance_load_balancer_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool_load_balancer_attachment.py b/src/oci/core/models/instance_pool_load_balancer_attachment.py index 3ff013919a..cebeacf189 100644 --- a/src/oci/core/models/instance_pool_load_balancer_attachment.py +++ b/src/oci/core/models/instance_pool_load_balancer_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool_placement_configuration.py b/src/oci/core/models/instance_pool_placement_configuration.py index 82f1f74780..78e7eda9f7 100644 --- a/src/oci/core/models/instance_pool_placement_configuration.py +++ b/src/oci/core/models/instance_pool_placement_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool_placement_secondary_vnic_subnet.py b/src/oci/core/models/instance_pool_placement_secondary_vnic_subnet.py index 747a999111..55e71a63b1 100644 --- a/src/oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +++ b/src/oci/core/models/instance_pool_placement_secondary_vnic_subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_pool_summary.py b/src/oci/core/models/instance_pool_summary.py index b0e1ae3341..6a355edbc4 100644 --- a/src/oci/core/models/instance_pool_summary.py +++ b/src/oci/core/models/instance_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_source_details.py b/src/oci/core/models/instance_source_details.py index 5b42b92294..08974ba4ee 100644 --- a/src/oci/core/models/instance_source_details.py +++ b/src/oci/core/models/instance_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_source_via_boot_volume_details.py b/src/oci/core/models/instance_source_via_boot_volume_details.py index 6be15a8566..255845fe8d 100644 --- a/src/oci/core/models/instance_source_via_boot_volume_details.py +++ b/src/oci/core/models/instance_source_via_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_source_details import InstanceSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_source_via_image_details.py b/src/oci/core/models/instance_source_via_image_details.py index ddd77b92be..9acca8a72d 100644 --- a/src/oci/core/models/instance_source_via_image_details.py +++ b/src/oci/core/models/instance_source_via_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .instance_source_details import InstanceSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/instance_summary.py b/src/oci/core/models/instance_summary.py index aeef778fa8..5d5a2c77b0 100644 --- a/src/oci/core/models/instance_summary.py +++ b/src/oci/core/models/instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/internet_gateway.py b/src/oci/core/models/internet_gateway.py index b480a56a8e..91027c00ed 100644 --- a/src/oci/core/models/internet_gateway.py +++ b/src/oci/core/models/internet_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ip_sec_connection.py b/src/oci/core/models/ip_sec_connection.py index b6cc629292..61ffbed087 100644 --- a/src/oci/core/models/ip_sec_connection.py +++ b/src/oci/core/models/ip_sec_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ip_sec_connection_device_config.py b/src/oci/core/models/ip_sec_connection_device_config.py index bc8cd34917..5885b63425 100644 --- a/src/oci/core/models/ip_sec_connection_device_config.py +++ b/src/oci/core/models/ip_sec_connection_device_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ip_sec_connection_device_status.py b/src/oci/core/models/ip_sec_connection_device_status.py index 2d885f8542..6994ab5611 100644 --- a/src/oci/core/models/ip_sec_connection_device_status.py +++ b/src/oci/core/models/ip_sec_connection_device_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ip_sec_connection_tunnel.py b/src/oci/core/models/ip_sec_connection_tunnel.py index aca6457d08..61c4cf6036 100644 --- a/src/oci/core/models/ip_sec_connection_tunnel.py +++ b/src/oci/core/models/ip_sec_connection_tunnel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ip_sec_connection_tunnel_shared_secret.py b/src/oci/core/models/ip_sec_connection_tunnel_shared_secret.py index 6e98843511..12fc423970 100644 --- a/src/oci/core/models/ip_sec_connection_tunnel_shared_secret.py +++ b/src/oci/core/models/ip_sec_connection_tunnel_shared_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/ipv6.py b/src/oci/core/models/ipv6.py index 47ee3be4e9..75000ef1ae 100644 --- a/src/oci/core/models/ipv6.py +++ b/src/oci/core/models/ipv6.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/launch_instance_agent_config_details.py b/src/oci/core/models/launch_instance_agent_config_details.py index 087767d7d3..fd5a3322af 100644 --- a/src/oci/core/models/launch_instance_agent_config_details.py +++ b/src/oci/core/models/launch_instance_agent_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/launch_instance_details.py b/src/oci/core/models/launch_instance_details.py index da2bb8e948..c897dbaa97 100644 --- a/src/oci/core/models/launch_instance_details.py +++ b/src/oci/core/models/launch_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/launch_options.py b/src/oci/core/models/launch_options.py index 70c6f3c28a..904eeaf1e9 100644 --- a/src/oci/core/models/launch_options.py +++ b/src/oci/core/models/launch_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/letter_of_authority.py b/src/oci/core/models/letter_of_authority.py index e39a8b73b8..4e5408a5f4 100644 --- a/src/oci/core/models/letter_of_authority.py +++ b/src/oci/core/models/letter_of_authority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/local_peering_gateway.py b/src/oci/core/models/local_peering_gateway.py index fd1029fdc0..bddacdd3b5 100644 --- a/src/oci/core/models/local_peering_gateway.py +++ b/src/oci/core/models/local_peering_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/nat_gateway.py b/src/oci/core/models/nat_gateway.py index e50b77a23f..c46d8e9feb 100644 --- a/src/oci/core/models/nat_gateway.py +++ b/src/oci/core/models/nat_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/network_security_group.py b/src/oci/core/models/network_security_group.py index 66ecf1bfd2..53335c98e8 100644 --- a/src/oci/core/models/network_security_group.py +++ b/src/oci/core/models/network_security_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/network_security_group_vnic.py b/src/oci/core/models/network_security_group_vnic.py index 0d8092eb41..76760ea722 100644 --- a/src/oci/core/models/network_security_group_vnic.py +++ b/src/oci/core/models/network_security_group_vnic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/paravirtualized_volume_attachment.py b/src/oci/core/models/paravirtualized_volume_attachment.py index 186351ebe0..14455709db 100644 --- a/src/oci/core/models/paravirtualized_volume_attachment.py +++ b/src/oci/core/models/paravirtualized_volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_attachment import VolumeAttachment from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/peer_region_for_remote_peering.py b/src/oci/core/models/peer_region_for_remote_peering.py index 14cafb2e8c..1f63d5e9bd 100644 --- a/src/oci/core/models/peer_region_for_remote_peering.py +++ b/src/oci/core/models/peer_region_for_remote_peering.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/port_range.py b/src/oci/core/models/port_range.py index 54e8c75bf4..0535adc27e 100644 --- a/src/oci/core/models/port_range.py +++ b/src/oci/core/models/port_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/private_ip.py b/src/oci/core/models/private_ip.py index 9afb3c6a8b..9a7f6e48f5 100644 --- a/src/oci/core/models/private_ip.py +++ b/src/oci/core/models/private_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/public_ip.py b/src/oci/core/models/public_ip.py index 5d46bc2a76..97f6526068 100644 --- a/src/oci/core/models/public_ip.py +++ b/src/oci/core/models/public_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/remote_peering_connection.py b/src/oci/core/models/remote_peering_connection.py index 668f5a22ec..ca8df2ebee 100644 --- a/src/oci/core/models/remote_peering_connection.py +++ b/src/oci/core/models/remote_peering_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/remove_network_security_group_security_rules_details.py b/src/oci/core/models/remove_network_security_group_security_rules_details.py index 132e1c85a5..853b0a0a19 100644 --- a/src/oci/core/models/remove_network_security_group_security_rules_details.py +++ b/src/oci/core/models/remove_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/route_rule.py b/src/oci/core/models/route_rule.py index 3b5496a572..78c625abb3 100644 --- a/src/oci/core/models/route_rule.py +++ b/src/oci/core/models/route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/route_table.py b/src/oci/core/models/route_table.py index 77257f86fd..e0ed2d5e49 100644 --- a/src/oci/core/models/route_table.py +++ b/src/oci/core/models/route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/security_list.py b/src/oci/core/models/security_list.py index 57677ca3c8..262981b990 100644 --- a/src/oci/core/models/security_list.py +++ b/src/oci/core/models/security_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/security_rule.py b/src/oci/core/models/security_rule.py index 21ea0995b6..2b0d15d009 100644 --- a/src/oci/core/models/security_rule.py +++ b/src/oci/core/models/security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/service.py b/src/oci/core/models/service.py index 923a76223b..f48e910da3 100644 --- a/src/oci/core/models/service.py +++ b/src/oci/core/models/service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/service_gateway.py b/src/oci/core/models/service_gateway.py index 8a4b1bff78..9c7a07e631 100644 --- a/src/oci/core/models/service_gateway.py +++ b/src/oci/core/models/service_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/service_id_request_details.py b/src/oci/core/models/service_id_request_details.py index af9d94951b..8327e52ebf 100644 --- a/src/oci/core/models/service_id_request_details.py +++ b/src/oci/core/models/service_id_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/service_id_response_details.py b/src/oci/core/models/service_id_response_details.py index 97c174caf3..986819d204 100644 --- a/src/oci/core/models/service_id_response_details.py +++ b/src/oci/core/models/service_id_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/shape.py b/src/oci/core/models/shape.py index 83baab9927..8f265812bc 100644 --- a/src/oci/core/models/shape.py +++ b/src/oci/core/models/shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/subnet.py b/src/oci/core/models/subnet.py index 7ac100f45e..dafc13b34f 100644 --- a/src/oci/core/models/subnet.py +++ b/src/oci/core/models/subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/tcp_options.py b/src/oci/core/models/tcp_options.py index 7214141bff..48c81ee877 100644 --- a/src/oci/core/models/tcp_options.py +++ b/src/oci/core/models/tcp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/tunnel_config.py b/src/oci/core/models/tunnel_config.py index f8738d1897..001fa2a77d 100644 --- a/src/oci/core/models/tunnel_config.py +++ b/src/oci/core/models/tunnel_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/tunnel_status.py b/src/oci/core/models/tunnel_status.py index 223e2d066e..69014d8bfd 100644 --- a/src/oci/core/models/tunnel_status.py +++ b/src/oci/core/models/tunnel_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/udp_options.py b/src/oci/core/models/udp_options.py index c896771a70..0fdccd3d7c 100644 --- a/src/oci/core/models/udp_options.py +++ b/src/oci/core/models/udp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_boot_volume_backup_details.py b/src/oci/core/models/update_boot_volume_backup_details.py index 4d87feaa14..4acbc49847 100644 --- a/src/oci/core/models/update_boot_volume_backup_details.py +++ b/src/oci/core/models/update_boot_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_boot_volume_details.py b/src/oci/core/models/update_boot_volume_details.py index 7d0d798667..b382a11253 100644 --- a/src/oci/core/models/update_boot_volume_details.py +++ b/src/oci/core/models/update_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_boot_volume_kms_key_details.py b/src/oci/core/models/update_boot_volume_kms_key_details.py index 112e25014c..be2087ec8a 100644 --- a/src/oci/core/models/update_boot_volume_kms_key_details.py +++ b/src/oci/core/models/update_boot_volume_kms_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_cluster_network_details.py b/src/oci/core/models/update_cluster_network_details.py index a505953c5c..8cb23914de 100644 --- a/src/oci/core/models/update_cluster_network_details.py +++ b/src/oci/core/models/update_cluster_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_console_history_details.py b/src/oci/core/models/update_console_history_details.py index 2dd5b81391..3fc90b46bf 100644 --- a/src/oci/core/models/update_console_history_details.py +++ b/src/oci/core/models/update_console_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_cpe_details.py b/src/oci/core/models/update_cpe_details.py index d9f4f4daf7..6e1a93f8f9 100644 --- a/src/oci/core/models/update_cpe_details.py +++ b/src/oci/core/models/update_cpe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_cross_connect_details.py b/src/oci/core/models/update_cross_connect_details.py index b1f3dde1d5..7ab3adc6fa 100644 --- a/src/oci/core/models/update_cross_connect_details.py +++ b/src/oci/core/models/update_cross_connect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_cross_connect_group_details.py b/src/oci/core/models/update_cross_connect_group_details.py index 24da9dc67b..1cbb758e1a 100644 --- a/src/oci/core/models/update_cross_connect_group_details.py +++ b/src/oci/core/models/update_cross_connect_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_dedicated_vm_host_details.py b/src/oci/core/models/update_dedicated_vm_host_details.py index 4fd5c19299..92d89ac8f9 100644 --- a/src/oci/core/models/update_dedicated_vm_host_details.py +++ b/src/oci/core/models/update_dedicated_vm_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_dhcp_details.py b/src/oci/core/models/update_dhcp_details.py index 75cc570d44..2da630d5e4 100644 --- a/src/oci/core/models/update_dhcp_details.py +++ b/src/oci/core/models/update_dhcp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_drg_attachment_details.py b/src/oci/core/models/update_drg_attachment_details.py index c63ea381c7..d09ac5fdaa 100644 --- a/src/oci/core/models/update_drg_attachment_details.py +++ b/src/oci/core/models/update_drg_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_drg_details.py b/src/oci/core/models/update_drg_details.py index e78cf05839..ab402ae472 100644 --- a/src/oci/core/models/update_drg_details.py +++ b/src/oci/core/models/update_drg_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_image_details.py b/src/oci/core/models/update_image_details.py index 4f77e26548..1bb244479a 100644 --- a/src/oci/core/models/update_image_details.py +++ b/src/oci/core/models/update_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_instance_agent_config_details.py b/src/oci/core/models/update_instance_agent_config_details.py index 2b8bd09748..e405e3dc08 100644 --- a/src/oci/core/models/update_instance_agent_config_details.py +++ b/src/oci/core/models/update_instance_agent_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_instance_configuration_details.py b/src/oci/core/models/update_instance_configuration_details.py index 574032b23a..073fb6e3f9 100644 --- a/src/oci/core/models/update_instance_configuration_details.py +++ b/src/oci/core/models/update_instance_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_instance_details.py b/src/oci/core/models/update_instance_details.py index a2d417bb64..e096b06546 100644 --- a/src/oci/core/models/update_instance_details.py +++ b/src/oci/core/models/update_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_instance_pool_details.py b/src/oci/core/models/update_instance_pool_details.py index d740b10603..7659a47c69 100644 --- a/src/oci/core/models/update_instance_pool_details.py +++ b/src/oci/core/models/update_instance_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_instance_pool_placement_configuration_details.py b/src/oci/core/models/update_instance_pool_placement_configuration_details.py index 8dd15efbe4..b9764d8986 100644 --- a/src/oci/core/models/update_instance_pool_placement_configuration_details.py +++ b/src/oci/core/models/update_instance_pool_placement_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_internet_gateway_details.py b/src/oci/core/models/update_internet_gateway_details.py index ddcd077663..65686e37ca 100644 --- a/src/oci/core/models/update_internet_gateway_details.py +++ b/src/oci/core/models/update_internet_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_ip_sec_connection_details.py b/src/oci/core/models/update_ip_sec_connection_details.py index 48ba9b7731..1a880f3445 100644 --- a/src/oci/core/models/update_ip_sec_connection_details.py +++ b/src/oci/core/models/update_ip_sec_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_ip_sec_connection_tunnel_details.py b/src/oci/core/models/update_ip_sec_connection_tunnel_details.py index 2bf6dbdb11..967c6d4b3b 100644 --- a/src/oci/core/models/update_ip_sec_connection_tunnel_details.py +++ b/src/oci/core/models/update_ip_sec_connection_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_ip_sec_connection_tunnel_shared_secret_details.py b/src/oci/core/models/update_ip_sec_connection_tunnel_shared_secret_details.py index 08dfc18c91..ac8d455adf 100644 --- a/src/oci/core/models/update_ip_sec_connection_tunnel_shared_secret_details.py +++ b/src/oci/core/models/update_ip_sec_connection_tunnel_shared_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_ip_sec_tunnel_bgp_session_details.py b/src/oci/core/models/update_ip_sec_tunnel_bgp_session_details.py index e7c09ea97e..ad91c316be 100644 --- a/src/oci/core/models/update_ip_sec_tunnel_bgp_session_details.py +++ b/src/oci/core/models/update_ip_sec_tunnel_bgp_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_ipv6_details.py b/src/oci/core/models/update_ipv6_details.py index 154ded5c99..f7e1c2d455 100644 --- a/src/oci/core/models/update_ipv6_details.py +++ b/src/oci/core/models/update_ipv6_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_local_peering_gateway_details.py b/src/oci/core/models/update_local_peering_gateway_details.py index 8693701854..1f46eaf6a8 100644 --- a/src/oci/core/models/update_local_peering_gateway_details.py +++ b/src/oci/core/models/update_local_peering_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_nat_gateway_details.py b/src/oci/core/models/update_nat_gateway_details.py index 84d6490117..29aba8a0fd 100644 --- a/src/oci/core/models/update_nat_gateway_details.py +++ b/src/oci/core/models/update_nat_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_network_security_group_details.py b/src/oci/core/models/update_network_security_group_details.py index 7d2ad4e4df..92161b4277 100644 --- a/src/oci/core/models/update_network_security_group_details.py +++ b/src/oci/core/models/update_network_security_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_network_security_group_security_rules_details.py b/src/oci/core/models/update_network_security_group_security_rules_details.py index 4e5acab673..1df25cb9f0 100644 --- a/src/oci/core/models/update_network_security_group_security_rules_details.py +++ b/src/oci/core/models/update_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_private_ip_details.py b/src/oci/core/models/update_private_ip_details.py index 657622ff8a..c1037e369a 100644 --- a/src/oci/core/models/update_private_ip_details.py +++ b/src/oci/core/models/update_private_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_public_ip_details.py b/src/oci/core/models/update_public_ip_details.py index 30a94efad5..b91678564f 100644 --- a/src/oci/core/models/update_public_ip_details.py +++ b/src/oci/core/models/update_public_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_remote_peering_connection_details.py b/src/oci/core/models/update_remote_peering_connection_details.py index 0bc7b1f868..0a32685a98 100644 --- a/src/oci/core/models/update_remote_peering_connection_details.py +++ b/src/oci/core/models/update_remote_peering_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_route_table_details.py b/src/oci/core/models/update_route_table_details.py index ec7a8c4c44..26a5832378 100644 --- a/src/oci/core/models/update_route_table_details.py +++ b/src/oci/core/models/update_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_security_list_details.py b/src/oci/core/models/update_security_list_details.py index 52a4f598e3..4c4ece2bf9 100644 --- a/src/oci/core/models/update_security_list_details.py +++ b/src/oci/core/models/update_security_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_security_rule_details.py b/src/oci/core/models/update_security_rule_details.py index 03db5c9c7c..7a459bac94 100644 --- a/src/oci/core/models/update_security_rule_details.py +++ b/src/oci/core/models/update_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_service_gateway_details.py b/src/oci/core/models/update_service_gateway_details.py index fa7077ec89..50bfc3a535 100644 --- a/src/oci/core/models/update_service_gateway_details.py +++ b/src/oci/core/models/update_service_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_subnet_details.py b/src/oci/core/models/update_subnet_details.py index dc8bf55fcf..e9f466b376 100644 --- a/src/oci/core/models/update_subnet_details.py +++ b/src/oci/core/models/update_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_vcn_details.py b/src/oci/core/models/update_vcn_details.py index 7853db5177..f62f033feb 100644 --- a/src/oci/core/models/update_vcn_details.py +++ b/src/oci/core/models/update_vcn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_virtual_circuit_details.py b/src/oci/core/models/update_virtual_circuit_details.py index b254a46011..0f001c62bf 100644 --- a/src/oci/core/models/update_virtual_circuit_details.py +++ b/src/oci/core/models/update_virtual_circuit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_vnic_details.py b/src/oci/core/models/update_vnic_details.py index 7b6966e976..084d54e5de 100644 --- a/src/oci/core/models/update_vnic_details.py +++ b/src/oci/core/models/update_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_backup_details.py b/src/oci/core/models/update_volume_backup_details.py index 590d7d32ff..00c765a251 100644 --- a/src/oci/core/models/update_volume_backup_details.py +++ b/src/oci/core/models/update_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_backup_policy_details.py b/src/oci/core/models/update_volume_backup_policy_details.py index 83128d1a49..c7f6bd923d 100644 --- a/src/oci/core/models/update_volume_backup_policy_details.py +++ b/src/oci/core/models/update_volume_backup_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_details.py b/src/oci/core/models/update_volume_details.py index 134660978f..8a2728da65 100644 --- a/src/oci/core/models/update_volume_details.py +++ b/src/oci/core/models/update_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_group_backup_details.py b/src/oci/core/models/update_volume_group_backup_details.py index b4331187f6..012fa84094 100644 --- a/src/oci/core/models/update_volume_group_backup_details.py +++ b/src/oci/core/models/update_volume_group_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_group_details.py b/src/oci/core/models/update_volume_group_details.py index 5efd24115d..ec4f54b418 100644 --- a/src/oci/core/models/update_volume_group_details.py +++ b/src/oci/core/models/update_volume_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/update_volume_kms_key_details.py b/src/oci/core/models/update_volume_kms_key_details.py index a2b71d7715..7f3a6c6082 100644 --- a/src/oci/core/models/update_volume_kms_key_details.py +++ b/src/oci/core/models/update_volume_kms_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/updated_network_security_group_security_rules.py b/src/oci/core/models/updated_network_security_group_security_rules.py index 9f84e20121..26e0243fe6 100644 --- a/src/oci/core/models/updated_network_security_group_security_rules.py +++ b/src/oci/core/models/updated_network_security_group_security_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/vcn.py b/src/oci/core/models/vcn.py index 42c2090011..8f02e4a8e3 100644 --- a/src/oci/core/models/vcn.py +++ b/src/oci/core/models/vcn.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/virtual_circuit.py b/src/oci/core/models/virtual_circuit.py index 3b0c879b57..045a6f09e7 100644 --- a/src/oci/core/models/virtual_circuit.py +++ b/src/oci/core/models/virtual_circuit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/virtual_circuit_bandwidth_shape.py b/src/oci/core/models/virtual_circuit_bandwidth_shape.py index 158d277958..fc23182531 100644 --- a/src/oci/core/models/virtual_circuit_bandwidth_shape.py +++ b/src/oci/core/models/virtual_circuit_bandwidth_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/virtual_circuit_public_prefix.py b/src/oci/core/models/virtual_circuit_public_prefix.py index 1b86ce395b..d0a31e832c 100644 --- a/src/oci/core/models/virtual_circuit_public_prefix.py +++ b/src/oci/core/models/virtual_circuit_public_prefix.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/vnic.py b/src/oci/core/models/vnic.py index 0d64ac8d68..bbe89c465d 100644 --- a/src/oci/core/models/vnic.py +++ b/src/oci/core/models/vnic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/vnic_attachment.py b/src/oci/core/models/vnic_attachment.py index bd49ca2c19..eb1a3a291f 100644 --- a/src/oci/core/models/vnic_attachment.py +++ b/src/oci/core/models/vnic_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume.py b/src/oci/core/models/volume.py index be3eef90b3..80730e4089 100644 --- a/src/oci/core/models/volume.py +++ b/src/oci/core/models/volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_attachment.py b/src/oci/core/models/volume_attachment.py index c816f464fe..243e1af8cd 100644 --- a/src/oci/core/models/volume_attachment.py +++ b/src/oci/core/models/volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_backup.py b/src/oci/core/models/volume_backup.py index fddcd201cc..bb48155ae7 100644 --- a/src/oci/core/models/volume_backup.py +++ b/src/oci/core/models/volume_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_backup_policy.py b/src/oci/core/models/volume_backup_policy.py index a95dd5e067..8643d30a2a 100644 --- a/src/oci/core/models/volume_backup_policy.py +++ b/src/oci/core/models/volume_backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_backup_policy_assignment.py b/src/oci/core/models/volume_backup_policy_assignment.py index ede78a924a..e33151497b 100644 --- a/src/oci/core/models/volume_backup_policy_assignment.py +++ b/src/oci/core/models/volume_backup_policy_assignment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_backup_schedule.py b/src/oci/core/models/volume_backup_schedule.py index d69cb345f7..939209c328 100644 --- a/src/oci/core/models/volume_backup_schedule.py +++ b/src/oci/core/models/volume_backup_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group.py b/src/oci/core/models/volume_group.py index b58b6da44f..2f85aed411 100644 --- a/src/oci/core/models/volume_group.py +++ b/src/oci/core/models/volume_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group_backup.py b/src/oci/core/models/volume_group_backup.py index e60e5ccc43..72d530bc88 100644 --- a/src/oci/core/models/volume_group_backup.py +++ b/src/oci/core/models/volume_group_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group_source_details.py b/src/oci/core/models/volume_group_source_details.py index bacd7e0301..accda1c362 100644 --- a/src/oci/core/models/volume_group_source_details.py +++ b/src/oci/core/models/volume_group_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group_source_from_volume_group_backup_details.py b/src/oci/core/models/volume_group_source_from_volume_group_backup_details.py index 9a23ef93e0..8fe7171ed8 100644 --- a/src/oci/core/models/volume_group_source_from_volume_group_backup_details.py +++ b/src/oci/core/models/volume_group_source_from_volume_group_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_group_source_details import VolumeGroupSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group_source_from_volume_group_details.py b/src/oci/core/models/volume_group_source_from_volume_group_details.py index a9c72d0813..f13a5afd58 100644 --- a/src/oci/core/models/volume_group_source_from_volume_group_details.py +++ b/src/oci/core/models/volume_group_source_from_volume_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_group_source_details import VolumeGroupSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_group_source_from_volumes_details.py b/src/oci/core/models/volume_group_source_from_volumes_details.py index 9eb8c6cba2..f16b918617 100644 --- a/src/oci/core/models/volume_group_source_from_volumes_details.py +++ b/src/oci/core/models/volume_group_source_from_volumes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_group_source_details import VolumeGroupSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_kms_key.py b/src/oci/core/models/volume_kms_key.py index 688e2ac896..f06adcc7e7 100644 --- a/src/oci/core/models/volume_kms_key.py +++ b/src/oci/core/models/volume_kms_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_source_details.py b/src/oci/core/models/volume_source_details.py index 40c6b0d025..4e5649df10 100644 --- a/src/oci/core/models/volume_source_details.py +++ b/src/oci/core/models/volume_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_source_from_volume_backup_details.py b/src/oci/core/models/volume_source_from_volume_backup_details.py index c097f456c8..c335954dd6 100644 --- a/src/oci/core/models/volume_source_from_volume_backup_details.py +++ b/src/oci/core/models/volume_source_from_volume_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_source_details import VolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/models/volume_source_from_volume_details.py b/src/oci/core/models/volume_source_from_volume_details.py index 9dbe1c8b4f..3678f87dbf 100644 --- a/src/oci/core/models/volume_source_from_volume_details.py +++ b/src/oci/core/models/volume_source_from_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .volume_source_details import VolumeSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/core/virtual_network_client.py b/src/oci/core/virtual_network_client.py index a63b73bf5d..283e97e2a3 100644 --- a/src/oci/core/virtual_network_client.py +++ b/src/oci/core/virtual_network_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/core/virtual_network_client_composite_operations.py b/src/oci/core/virtual_network_client_composite_operations.py index c7350f3954..405b7f89f2 100644 --- a/src/oci/core/virtual_network_client_composite_operations.py +++ b/src/oci/core/virtual_network_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/database/__init__.py b/src/oci/database/__init__.py index 94efef3e5c..52a6cb41d0 100644 --- a/src/oci/database/__init__.py +++ b/src/oci/database/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/database/database_client.py b/src/oci/database/database_client.py index fe1c6c4e6e..5184710019 100644 --- a/src/oci/database/database_client.py +++ b/src/oci/database/database_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import @@ -1561,11 +1561,11 @@ def create_data_guard_association(self, database_id, create_data_guard_associati def create_db_home(self, create_db_home_with_db_system_id_details, **kwargs): """ CreateDbHome - Creates a new database home in the specified DB system based on the request parameters you provide. + Creates a new Database Home in the specified DB system based on the request parameters you provide. Applies only to bare metal and Exadata DB systems. :param CreateDbHomeBase create_db_home_with_db_system_id_details: (required) - Request to create a new database home. + Request to create a new Database Home. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or @@ -2364,11 +2364,11 @@ def delete_backup_destination(self, backup_destination_id, **kwargs): def delete_db_home(self, db_home_id, **kwargs): """ DeleteDbHome - Deletes a DB Home. The DB Home and its database data are local to the DB system and will be lost when it is deleted. Oracle recommends that you back up any data in the DB system prior to deleting it. + Deletes a Database Home. The Database Home and its database data are local to the DB system and are lost when you delete the Database Home. Oracle recommends that you back up any data on the DB system before you delete it. :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -2378,7 +2378,9 @@ def delete_db_home(self, db_home_id, **kwargs): will be updated or deleted only if the etag you provide matches the resource's current etag value. :param bool perform_final_backup: (optional) - Whether to perform a final backup of the database or not. Default is false. If you previously used RMAN or dbcli to configure backups and then you switch to using the Console or the API for backups, a new backup configuration is created and associated with your database. This means that you can no longer rely on your previously configured unmanaged backups to work. + Whether to perform a final backup of the database or not. Default is false. + + If you previously used RMAN or dbcli to configure backups and then you switch to using the Console or the API for backups, a new backup configuration is created and associated with your database. This means that you can no longer rely on your previously configured unmanaged backups to work. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. @@ -4138,11 +4140,11 @@ def get_database(self, database_id, **kwargs): def get_db_home(self, db_home_id, **kwargs): """ GetDbHome - Gets information about the specified database home. + Gets information about the specified Database Home. :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -4208,7 +4210,7 @@ def get_db_home_patch(self, db_home_id, patch_id, **kwargs): :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -4280,7 +4282,7 @@ def get_db_home_patch_history_entry(self, db_home_id, patch_history_entry_id, ** :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -6541,7 +6543,7 @@ def list_data_guard_associations(self, database_id, **kwargs): def list_databases(self, compartment_id, db_home_id, **kwargs): """ ListDatabases - Gets a list of the databases in the specified database home. + Gets a list of the databases in the specified Database Home. :param str compartment_id: (required) @@ -6550,7 +6552,7 @@ def list_databases(self, compartment_id, db_home_id, **kwargs): __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :param str db_home_id: (required) - A database home `OCID`__. + A Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -6668,11 +6670,11 @@ def list_databases(self, compartment_id, db_home_id, **kwargs): def list_db_home_patch_history_entries(self, db_home_id, **kwargs): """ ListDbHomePatchHistoryEntries - Gets history of the actions taken for patches for the specified database home. + Gets history of the actions taken for patches for the specified Database Home. :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -6753,11 +6755,11 @@ def list_db_home_patch_history_entries(self, db_home_id, **kwargs): def list_db_home_patches(self, db_home_id, **kwargs): """ ListDbHomePatches - Lists patches applicable to the requested database home. + Lists patches applicable to the requested Database Home. :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -6838,7 +6840,7 @@ def list_db_home_patches(self, db_home_id, **kwargs): def list_db_homes(self, compartment_id, **kwargs): """ ListDbHomes - Gets a list of database homes in the specified DB system and compartment. A database home is a directory where Oracle Database software is installed. + Gets a list of Database Homes in the specified DB system and compartment. A Database Home is a directory where Oracle Database software is installed. :param str compartment_id: (required) @@ -7835,7 +7837,7 @@ def list_maintenance_runs(self, compartment_id, **kwargs): :param str lifecycle_state: (optional) A filter to return only resources that match the given lifecycle state exactly. - Allowed values are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING" + Allowed values are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED" :param str availability_domain: (optional) A filter to return only resources that match the given availability domain exactly. @@ -7901,7 +7903,7 @@ def list_maintenance_runs(self, compartment_id, **kwargs): ) if 'lifecycle_state' in kwargs: - lifecycle_state_allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING"] + lifecycle_state_allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED"] if kwargs['lifecycle_state'] not in lifecycle_state_allowed_values: raise ValueError( "Invalid value for `lifecycle_state`, must be one of {0}".format(lifecycle_state_allowed_values) @@ -9991,7 +9993,7 @@ def update_db_home(self, db_home_id, update_db_home_details, **kwargs): :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/database_client_composite_operations.py b/src/oci/database/database_client_composite_operations.py index 0fea075c16..bd096c75d8 100644 --- a/src/oci/database/database_client_composite_operations.py +++ b/src/oci/database/database_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 @@ -769,7 +769,7 @@ def create_db_home_and_wait_for_state(self, create_db_home_with_db_system_id_det to enter the given state(s). :param CreateDbHomeBase create_db_home_with_db_system_id_details: (required) - Request to create a new database home. + Request to create a new Database Home. :param list[str] wait_for_states: An array of states to wait on. These should be valid values for :py:attr:`~oci.database.models.DbHome.lifecycle_state` @@ -1155,7 +1155,7 @@ def delete_db_home_and_wait_for_state(self, db_home_id, wait_for_states=[], oper to enter the given state(s). :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -2688,7 +2688,7 @@ def update_db_home_and_wait_for_state(self, db_home_id, update_db_home_details, to enter the given state(s). :param str db_home_id: (required) - The database home `OCID`__. + The Database Home `OCID`__. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/models/__init__.py b/src/oci/database/models/__init__.py index f588511346..593d3ba2be 100644 --- a/src/oci/database/models/__init__.py +++ b/src/oci/database/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/database/models/activate_exadata_infrastructure_details.py b/src/oci/database/models/activate_exadata_infrastructure_details.py index 41fc06afb6..8b5b33b98a 100644 --- a/src/oci/database/models/activate_exadata_infrastructure_details.py +++ b/src/oci/database/models/activate_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/associated_database_details.py b/src/oci/database/models/associated_database_details.py index 10c66ac05c..4998910b54 100644 --- a/src/oci/database/models/associated_database_details.py +++ b/src/oci/database/models/associated_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_container_database.py b/src/oci/database/models/autonomous_container_database.py index 58ccc87307..c260d90281 100644 --- a/src/oci/database/models/autonomous_container_database.py +++ b/src/oci/database/models/autonomous_container_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -127,6 +127,10 @@ def __init__(self, **kwargs): The value to assign to the next_maintenance_run_id property of this AutonomousContainerDatabase. :type next_maintenance_run_id: str + :param maintenance_window: + The value to assign to the maintenance_window property of this AutonomousContainerDatabase. + :type maintenance_window: MaintenanceWindow + :param freeform_tags: The value to assign to the freeform_tags property of this AutonomousContainerDatabase. :type freeform_tags: dict(str, str) @@ -156,6 +160,7 @@ def __init__(self, **kwargs): 'patch_model': 'str', 'last_maintenance_run_id': 'str', 'next_maintenance_run_id': 'str', + 'maintenance_window': 'MaintenanceWindow', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'availability_domain': 'str', @@ -174,6 +179,7 @@ def __init__(self, **kwargs): 'patch_model': 'patchModel', 'last_maintenance_run_id': 'lastMaintenanceRunId', 'next_maintenance_run_id': 'nextMaintenanceRunId', + 'maintenance_window': 'maintenanceWindow', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'availability_domain': 'availabilityDomain', @@ -191,6 +197,7 @@ def __init__(self, **kwargs): self._patch_model = None self._last_maintenance_run_id = None self._next_maintenance_run_id = None + self._maintenance_window = None self._freeform_tags = None self._defined_tags = None self._availability_domain = None @@ -486,6 +493,26 @@ def next_maintenance_run_id(self, next_maintenance_run_id): """ self._next_maintenance_run_id = next_maintenance_run_id + @property + def maintenance_window(self): + """ + Gets the maintenance_window of this AutonomousContainerDatabase. + + :return: The maintenance_window of this AutonomousContainerDatabase. + :rtype: MaintenanceWindow + """ + return self._maintenance_window + + @maintenance_window.setter + def maintenance_window(self, maintenance_window): + """ + Sets the maintenance_window of this AutonomousContainerDatabase. + + :param maintenance_window: The maintenance_window of this AutonomousContainerDatabase. + :type: MaintenanceWindow + """ + self._maintenance_window = maintenance_window + @property def freeform_tags(self): """ diff --git a/src/oci/database/models/autonomous_container_database_backup_config.py b/src/oci/database/models/autonomous_container_database_backup_config.py index f05eebd704..8fbccaed9f 100644 --- a/src/oci/database/models/autonomous_container_database_backup_config.py +++ b/src/oci/database/models/autonomous_container_database_backup_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_container_database_summary.py b/src/oci/database/models/autonomous_container_database_summary.py index 5e0504dfd9..0e643d4307 100644 --- a/src/oci/database/models/autonomous_container_database_summary.py +++ b/src/oci/database/models/autonomous_container_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -127,6 +127,10 @@ def __init__(self, **kwargs): The value to assign to the next_maintenance_run_id property of this AutonomousContainerDatabaseSummary. :type next_maintenance_run_id: str + :param maintenance_window: + The value to assign to the maintenance_window property of this AutonomousContainerDatabaseSummary. + :type maintenance_window: MaintenanceWindow + :param freeform_tags: The value to assign to the freeform_tags property of this AutonomousContainerDatabaseSummary. :type freeform_tags: dict(str, str) @@ -156,6 +160,7 @@ def __init__(self, **kwargs): 'patch_model': 'str', 'last_maintenance_run_id': 'str', 'next_maintenance_run_id': 'str', + 'maintenance_window': 'MaintenanceWindow', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'availability_domain': 'str', @@ -174,6 +179,7 @@ def __init__(self, **kwargs): 'patch_model': 'patchModel', 'last_maintenance_run_id': 'lastMaintenanceRunId', 'next_maintenance_run_id': 'nextMaintenanceRunId', + 'maintenance_window': 'maintenanceWindow', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'availability_domain': 'availabilityDomain', @@ -191,6 +197,7 @@ def __init__(self, **kwargs): self._patch_model = None self._last_maintenance_run_id = None self._next_maintenance_run_id = None + self._maintenance_window = None self._freeform_tags = None self._defined_tags = None self._availability_domain = None @@ -486,6 +493,26 @@ def next_maintenance_run_id(self, next_maintenance_run_id): """ self._next_maintenance_run_id = next_maintenance_run_id + @property + def maintenance_window(self): + """ + Gets the maintenance_window of this AutonomousContainerDatabaseSummary. + + :return: The maintenance_window of this AutonomousContainerDatabaseSummary. + :rtype: MaintenanceWindow + """ + return self._maintenance_window + + @maintenance_window.setter + def maintenance_window(self, maintenance_window): + """ + Sets the maintenance_window of this AutonomousContainerDatabaseSummary. + + :param maintenance_window: The maintenance_window of this AutonomousContainerDatabaseSummary. + :type: MaintenanceWindow + """ + self._maintenance_window = maintenance_window + @property def freeform_tags(self): """ diff --git a/src/oci/database/models/autonomous_data_warehouse.py b/src/oci/database/models/autonomous_data_warehouse.py index d1282a13b7..4eebdbc6aa 100644 --- a/src/oci/database/models/autonomous_data_warehouse.py +++ b/src/oci/database/models/autonomous_data_warehouse.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_data_warehouse_backup.py b/src/oci/database/models/autonomous_data_warehouse_backup.py index 1d6a9a03e8..8d4b32151b 100644 --- a/src/oci/database/models/autonomous_data_warehouse_backup.py +++ b/src/oci/database/models/autonomous_data_warehouse_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_data_warehouse_backup_summary.py b/src/oci/database/models/autonomous_data_warehouse_backup_summary.py index 951bddd3ff..3714a22568 100644 --- a/src/oci/database/models/autonomous_data_warehouse_backup_summary.py +++ b/src/oci/database/models/autonomous_data_warehouse_backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_data_warehouse_connection_strings.py b/src/oci/database/models/autonomous_data_warehouse_connection_strings.py index 3408e2fc74..23cdc2bd49 100644 --- a/src/oci/database/models/autonomous_data_warehouse_connection_strings.py +++ b/src/oci/database/models/autonomous_data_warehouse_connection_strings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_data_warehouse_console_token_details.py b/src/oci/database/models/autonomous_data_warehouse_console_token_details.py index e8b9d283dd..4e1540cf72 100644 --- a/src/oci/database/models/autonomous_data_warehouse_console_token_details.py +++ b/src/oci/database/models/autonomous_data_warehouse_console_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_data_warehouse_summary.py b/src/oci/database/models/autonomous_data_warehouse_summary.py index f02f6d5fa6..b5c4e185dc 100644 --- a/src/oci/database/models/autonomous_data_warehouse_summary.py +++ b/src/oci/database/models/autonomous_data_warehouse_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database.py b/src/oci/database/models/autonomous_database.py index 6087c346e6..2fad7a8ce7 100644 --- a/src/oci/database/models/autonomous_database.py +++ b/src/oci/database/models/autonomous_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_backup.py b/src/oci/database/models/autonomous_database_backup.py index d322471316..1703dada88 100644 --- a/src/oci/database/models/autonomous_database_backup.py +++ b/src/oci/database/models/autonomous_database_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_backup_summary.py b/src/oci/database/models/autonomous_database_backup_summary.py index da79a082d2..f1b4284025 100644 --- a/src/oci/database/models/autonomous_database_backup_summary.py +++ b/src/oci/database/models/autonomous_database_backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_connection_strings.py b/src/oci/database/models/autonomous_database_connection_strings.py index 60a0ce702a..0b5e3db0dc 100644 --- a/src/oci/database/models/autonomous_database_connection_strings.py +++ b/src/oci/database/models/autonomous_database_connection_strings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_connection_urls.py b/src/oci/database/models/autonomous_database_connection_urls.py index 2841b64d2a..498429242c 100644 --- a/src/oci/database/models/autonomous_database_connection_urls.py +++ b/src/oci/database/models/autonomous_database_connection_urls.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_console_token_details.py b/src/oci/database/models/autonomous_database_console_token_details.py index 37d581b4a9..688f0d2551 100644 --- a/src/oci/database/models/autonomous_database_console_token_details.py +++ b/src/oci/database/models/autonomous_database_console_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_summary.py b/src/oci/database/models/autonomous_database_summary.py index 421199f088..5b4058be98 100644 --- a/src/oci/database/models/autonomous_database_summary.py +++ b/src/oci/database/models/autonomous_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_database_wallet.py b/src/oci/database/models/autonomous_database_wallet.py index c60375f618..0e98753591 100644 --- a/src/oci/database/models/autonomous_database_wallet.py +++ b/src/oci/database/models/autonomous_database_wallet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_db_preview_version_summary.py b/src/oci/database/models/autonomous_db_preview_version_summary.py index 77361c056f..8ea783132c 100644 --- a/src/oci/database/models/autonomous_db_preview_version_summary.py +++ b/src/oci/database/models/autonomous_db_preview_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure.py b/src/oci/database/models/autonomous_exadata_infrastructure.py index c3cdef15b1..7aabda58b1 100644 --- a/src/oci/database/models/autonomous_exadata_infrastructure.py +++ b/src/oci/database/models/autonomous_exadata_infrastructure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure_maintenance_window.py b/src/oci/database/models/autonomous_exadata_infrastructure_maintenance_window.py index bdc7aec8a1..16dd482faf 100644 --- a/src/oci/database/models/autonomous_exadata_infrastructure_maintenance_window.py +++ b/src/oci/database/models/autonomous_exadata_infrastructure_maintenance_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure_shape_summary.py b/src/oci/database/models/autonomous_exadata_infrastructure_shape_summary.py index f01c77184c..e397ad02c5 100644 --- a/src/oci/database/models/autonomous_exadata_infrastructure_shape_summary.py +++ b/src/oci/database/models/autonomous_exadata_infrastructure_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure_summary.py b/src/oci/database/models/autonomous_exadata_infrastructure_summary.py index 1165164448..77dcc1b3e8 100644 --- a/src/oci/database/models/autonomous_exadata_infrastructure_summary.py +++ b/src/oci/database/models/autonomous_exadata_infrastructure_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/backup.py b/src/oci/database/models/backup.py index 65819b5e2e..9bf4240d7a 100644 --- a/src/oci/database/models/backup.py +++ b/src/oci/database/models/backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/backup_destination.py b/src/oci/database/models/backup_destination.py index c1cfe3c189..cd4a37325c 100644 --- a/src/oci/database/models/backup_destination.py +++ b/src/oci/database/models/backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/backup_destination_details.py b/src/oci/database/models/backup_destination_details.py index cd08b2ed56..15032b8c3f 100644 --- a/src/oci/database/models/backup_destination_details.py +++ b/src/oci/database/models/backup_destination_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/backup_destination_summary.py b/src/oci/database/models/backup_destination_summary.py index 95b4bd00ee..0ecdbadcd3 100644 --- a/src/oci/database/models/backup_destination_summary.py +++ b/src/oci/database/models/backup_destination_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/backup_summary.py b/src/oci/database/models/backup_summary.py index 87c168cea7..3551d33214 100644 --- a/src/oci/database/models/backup_summary.py +++ b/src/oci/database/models/backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/change_compartment_details.py b/src/oci/database/models/change_compartment_details.py index 424ee6e972..d1cc114cfc 100644 --- a/src/oci/database/models/change_compartment_details.py +++ b/src/oci/database/models/change_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/change_exadata_infrastructure_compartment_details.py b/src/oci/database/models/change_exadata_infrastructure_compartment_details.py index a82fd130d4..34b1637c4e 100644 --- a/src/oci/database/models/change_exadata_infrastructure_compartment_details.py +++ b/src/oci/database/models/change_exadata_infrastructure_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/change_vm_cluster_compartment_details.py b/src/oci/database/models/change_vm_cluster_compartment_details.py index 6787a1b627..20221cfa41 100644 --- a/src/oci/database/models/change_vm_cluster_compartment_details.py +++ b/src/oci/database/models/change_vm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/complete_external_backup_job_details.py b/src/oci/database/models/complete_external_backup_job_details.py index 770a4ea719..da78c9aec8 100644 --- a/src/oci/database/models/complete_external_backup_job_details.py +++ b/src/oci/database/models/complete_external_backup_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_container_database_details.py b/src/oci/database/models/create_autonomous_container_database_details.py index 7900dad6bf..9f7b125af4 100644 --- a/src/oci/database/models/create_autonomous_container_database_details.py +++ b/src/oci/database/models/create_autonomous_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -51,6 +51,10 @@ def __init__(self, **kwargs): Allowed values for this property are: "RELEASE_UPDATES", "RELEASE_UPDATE_REVISIONS" :type patch_model: str + :param maintenance_window_details: + The value to assign to the maintenance_window_details property of this CreateAutonomousContainerDatabaseDetails. + :type maintenance_window_details: MaintenanceWindow + :param freeform_tags: The value to assign to the freeform_tags property of this CreateAutonomousContainerDatabaseDetails. :type freeform_tags: dict(str, str) @@ -70,6 +74,7 @@ def __init__(self, **kwargs): 'autonomous_exadata_infrastructure_id': 'str', 'compartment_id': 'str', 'patch_model': 'str', + 'maintenance_window_details': 'MaintenanceWindow', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'backup_config': 'AutonomousContainerDatabaseBackupConfig' @@ -81,6 +86,7 @@ def __init__(self, **kwargs): 'autonomous_exadata_infrastructure_id': 'autonomousExadataInfrastructureId', 'compartment_id': 'compartmentId', 'patch_model': 'patchModel', + 'maintenance_window_details': 'maintenanceWindowDetails', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'backup_config': 'backupConfig' @@ -91,6 +97,7 @@ def __init__(self, **kwargs): self._autonomous_exadata_infrastructure_id = None self._compartment_id = None self._patch_model = None + self._maintenance_window_details = None self._freeform_tags = None self._defined_tags = None self._backup_config = None @@ -235,6 +242,26 @@ def patch_model(self, patch_model): ) self._patch_model = patch_model + @property + def maintenance_window_details(self): + """ + Gets the maintenance_window_details of this CreateAutonomousContainerDatabaseDetails. + + :return: The maintenance_window_details of this CreateAutonomousContainerDatabaseDetails. + :rtype: MaintenanceWindow + """ + return self._maintenance_window_details + + @maintenance_window_details.setter + def maintenance_window_details(self, maintenance_window_details): + """ + Sets the maintenance_window_details of this CreateAutonomousContainerDatabaseDetails. + + :param maintenance_window_details: The maintenance_window_details of this CreateAutonomousContainerDatabaseDetails. + :type: MaintenanceWindow + """ + self._maintenance_window_details = maintenance_window_details + @property def freeform_tags(self): """ diff --git a/src/oci/database/models/create_autonomous_data_warehouse_backup_details.py b/src/oci/database/models/create_autonomous_data_warehouse_backup_details.py index 6ca535ba6b..a08ed5db44 100644 --- a/src/oci/database/models/create_autonomous_data_warehouse_backup_details.py +++ b/src/oci/database/models/create_autonomous_data_warehouse_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_data_warehouse_details.py b/src/oci/database/models/create_autonomous_data_warehouse_details.py index 72626ff899..3f9b1bae04 100644 --- a/src/oci/database/models/create_autonomous_data_warehouse_details.py +++ b/src/oci/database/models/create_autonomous_data_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_database_backup_details.py b/src/oci/database/models/create_autonomous_database_backup_details.py index 7733aaf70e..8e0f80181d 100644 --- a/src/oci/database/models/create_autonomous_database_backup_details.py +++ b/src/oci/database/models/create_autonomous_database_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_database_base.py b/src/oci/database/models/create_autonomous_database_base.py index cbcc7783d5..915e8c04ca 100644 --- a/src/oci/database/models/create_autonomous_database_base.py +++ b/src/oci/database/models/create_autonomous_database_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_database_clone_details.py b/src/oci/database/models/create_autonomous_database_clone_details.py index 679c14bd54..ec4f564dea 100644 --- a/src/oci/database/models/create_autonomous_database_clone_details.py +++ b/src/oci/database/models/create_autonomous_database_clone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_autonomous_database_base import CreateAutonomousDatabaseBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_autonomous_database_details.py b/src/oci/database/models/create_autonomous_database_details.py index babda2532d..a89a87487c 100644 --- a/src/oci/database/models/create_autonomous_database_details.py +++ b/src/oci/database/models/create_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_autonomous_database_base import CreateAutonomousDatabaseBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_backup_destination_details.py b/src/oci/database/models/create_backup_destination_details.py index 69afb543a0..073f619e5c 100644 --- a/src/oci/database/models/create_backup_destination_details.py +++ b/src/oci/database/models/create_backup_destination_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_backup_details.py b/src/oci/database/models/create_backup_details.py index 99ff25c70c..03f71a4b23 100644 --- a/src/oci/database/models/create_backup_details.py +++ b/src/oci/database/models/create_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_data_guard_association_details.py b/src/oci/database/models/create_data_guard_association_details.py index 4531239670..41b9015bc2 100644 --- a/src/oci/database/models/create_data_guard_association_details.py +++ b/src/oci/database/models/create_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_data_guard_association_to_existing_db_system_details.py b/src/oci/database/models/create_data_guard_association_to_existing_db_system_details.py index 314f77c0c4..941ac906c2 100644 --- a/src/oci/database/models/create_data_guard_association_to_existing_db_system_details.py +++ b/src/oci/database/models/create_data_guard_association_to_existing_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_data_guard_association_details import CreateDataGuardAssociationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_data_guard_association_with_new_db_system_details.py b/src/oci/database/models/create_data_guard_association_with_new_db_system_details.py index 0070e0b3b9..596b03caf6 100644 --- a/src/oci/database/models/create_data_guard_association_with_new_db_system_details.py +++ b/src/oci/database/models/create_data_guard_association_with_new_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_data_guard_association_details import CreateDataGuardAssociationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_database_details.py b/src/oci/database/models/create_database_details.py index 1ad597156b..9664db8753 100644 --- a/src/oci/database/models/create_database_details.py +++ b/src/oci/database/models/create_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_database_from_backup_details.py b/src/oci/database/models/create_database_from_backup_details.py index e6a825eb1e..cf137936b0 100644 --- a/src/oci/database/models/create_database_from_backup_details.py +++ b/src/oci/database/models/create_database_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_db_home_base.py b/src/oci/database/models/create_db_home_base.py index e021b7b0e1..afd9db6ac2 100644 --- a/src/oci/database/models/create_db_home_base.py +++ b/src/oci/database/models/create_db_home_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -9,7 +9,7 @@ @init_model_state_from_kwargs class CreateDbHomeBase(object): """ - Details for creating a database home. + Details for creating a Database Home. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. """ @@ -83,7 +83,7 @@ def get_subtype(object_dictionary): def display_name(self): """ Gets the display_name of this CreateDbHomeBase. - The user-provided name of the database home. + The user-provided name of the Database Home. :return: The display_name of this CreateDbHomeBase. @@ -95,7 +95,7 @@ def display_name(self): def display_name(self, display_name): """ Sets the display_name of this CreateDbHomeBase. - The user-provided name of the database home. + The user-provided name of the Database Home. :param display_name: The display_name of this CreateDbHomeBase. diff --git a/src/oci/database/models/create_db_home_details.py b/src/oci/database/models/create_db_home_details.py index 2cbe3e72e8..edae96f40c 100644 --- a/src/oci/database/models/create_db_home_details.py +++ b/src/oci/database/models/create_db_home_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -9,7 +9,7 @@ @init_model_state_from_kwargs class CreateDbHomeDetails(object): """ - Details for creating a database home. + Details for creating a Database Home. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. """ @@ -52,7 +52,7 @@ def __init__(self, **kwargs): def display_name(self): """ Gets the display_name of this CreateDbHomeDetails. - The user-provided name of the database home. + The user-provided name of the Database Home. :return: The display_name of this CreateDbHomeDetails. @@ -64,7 +64,7 @@ def display_name(self): def display_name(self, display_name): """ Sets the display_name of this CreateDbHomeDetails. - The user-provided name of the database home. + The user-provided name of the Database Home. :param display_name: The display_name of this CreateDbHomeDetails. diff --git a/src/oci/database/models/create_db_home_from_backup_details.py b/src/oci/database/models/create_db_home_from_backup_details.py index 4b06bce629..0cddd92925 100644 --- a/src/oci/database/models/create_db_home_from_backup_details.py +++ b/src/oci/database/models/create_db_home_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -9,7 +9,7 @@ @init_model_state_from_kwargs class CreateDbHomeFromBackupDetails(object): """ - Details for creating a database home if you are creating a database by restoring from a database backup. + Details for creating a Database Home if you are creating a database by restoring from a database backup. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. """ @@ -45,7 +45,7 @@ def __init__(self, **kwargs): def display_name(self): """ Gets the display_name of this CreateDbHomeFromBackupDetails. - The user-provided name of the database home. + The user-provided name of the Database Home. :return: The display_name of this CreateDbHomeFromBackupDetails. @@ -57,7 +57,7 @@ def display_name(self): def display_name(self, display_name): """ Sets the display_name of this CreateDbHomeFromBackupDetails. - The user-provided name of the database home. + The user-provided name of the Database Home. :param display_name: The display_name of this CreateDbHomeFromBackupDetails. diff --git a/src/oci/database/models/create_db_home_with_db_system_id_details.py b/src/oci/database/models/create_db_home_with_db_system_id_details.py index 8351faf50b..a84dadae76 100644 --- a/src/oci/database/models/create_db_home_with_db_system_id_details.py +++ b/src/oci/database/models/create_db_home_with_db_system_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_db_home_base import CreateDbHomeBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_db_home_with_db_system_id_from_backup_details.py b/src/oci/database/models/create_db_home_with_db_system_id_from_backup_details.py index abc7848efe..3b6325ffd1 100644 --- a/src/oci/database/models/create_db_home_with_db_system_id_from_backup_details.py +++ b/src/oci/database/models/create_db_home_with_db_system_id_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_db_home_base import CreateDbHomeBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_db_home_with_vm_cluster_id_details.py b/src/oci/database/models/create_db_home_with_vm_cluster_id_details.py index 76dc5d76d6..577618d3a2 100644 --- a/src/oci/database/models/create_db_home_with_vm_cluster_id_details.py +++ b/src/oci/database/models/create_db_home_with_vm_cluster_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_db_home_base import CreateDbHomeBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_exadata_infrastructure_details.py b/src/oci/database/models/create_exadata_infrastructure_details.py index 9bb92b3e45..fb1b519e40 100644 --- a/src/oci/database/models/create_exadata_infrastructure_details.py +++ b/src/oci/database/models/create_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -381,7 +381,7 @@ def infini_band_network_cidr(self, infini_band_network_cidr): @property def corporate_proxy(self): """ - **[Required]** Gets the corporate_proxy of this CreateExadataInfrastructureDetails. + Gets the corporate_proxy of this CreateExadataInfrastructureDetails. The corporate network proxy for access to the control plane network. diff --git a/src/oci/database/models/create_external_backup_job_details.py b/src/oci/database/models/create_external_backup_job_details.py index 70af852a07..2fc4022f14 100644 --- a/src/oci/database/models/create_external_backup_job_details.py +++ b/src/oci/database/models/create_external_backup_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_nfs_backup_destination_details.py b/src/oci/database/models/create_nfs_backup_destination_details.py index 011ea59c8f..997f3b8279 100644 --- a/src/oci/database/models/create_nfs_backup_destination_details.py +++ b/src/oci/database/models/create_nfs_backup_destination_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_backup_destination_details import CreateBackupDestinationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_recovery_appliance_backup_destination_details.py b/src/oci/database/models/create_recovery_appliance_backup_destination_details.py index 068de685a8..263351947d 100644 --- a/src/oci/database/models/create_recovery_appliance_backup_destination_details.py +++ b/src/oci/database/models/create_recovery_appliance_backup_destination_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_backup_destination_details import CreateBackupDestinationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/create_vm_cluster_details.py b/src/oci/database/models/create_vm_cluster_details.py index c2d294214a..56d168ac08 100644 --- a/src/oci/database/models/create_vm_cluster_details.py +++ b/src/oci/database/models/create_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/data_guard_association.py b/src/oci/database/models/data_guard_association.py index 83a9f0d2bb..54d9cfe74f 100644 --- a/src/oci/database/models/data_guard_association.py +++ b/src/oci/database/models/data_guard_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -386,7 +386,7 @@ def peer_db_system_id(self, peer_db_system_id): def peer_db_home_id(self): """ Gets the peer_db_home_id of this DataGuardAssociation. - The `OCID`__ of the database home containing the associated peer database. + The `OCID`__ of the Database Home containing the associated peer database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -400,7 +400,7 @@ def peer_db_home_id(self): def peer_db_home_id(self, peer_db_home_id): """ Sets the peer_db_home_id of this DataGuardAssociation. - The `OCID`__ of the database home containing the associated peer database. + The `OCID`__ of the Database Home containing the associated peer database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/models/data_guard_association_summary.py b/src/oci/database/models/data_guard_association_summary.py index a54fd5ce9f..7ef702248b 100644 --- a/src/oci/database/models/data_guard_association_summary.py +++ b/src/oci/database/models/data_guard_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -398,7 +398,7 @@ def peer_db_system_id(self, peer_db_system_id): def peer_db_home_id(self): """ Gets the peer_db_home_id of this DataGuardAssociationSummary. - The `OCID`__ of the database home containing the associated peer database. + The `OCID`__ of the Database Home containing the associated peer database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -412,7 +412,7 @@ def peer_db_home_id(self): def peer_db_home_id(self, peer_db_home_id): """ Sets the peer_db_home_id of this DataGuardAssociationSummary. - The `OCID`__ of the database home containing the associated peer database. + The `OCID`__ of the Database Home containing the associated peer database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/models/database.py b/src/oci/database/models/database.py index 6368b1d745..0cdbaadeec 100644 --- a/src/oci/database/models/database.py +++ b/src/oci/database/models/database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -279,7 +279,7 @@ def ncharacter_set(self, ncharacter_set): def db_home_id(self): """ Gets the db_home_id of this Database. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -293,7 +293,7 @@ def db_home_id(self): def db_home_id(self, db_home_id): """ Sets the db_home_id of this Database. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/models/database_connection_strings.py b/src/oci/database/models/database_connection_strings.py index 85a4c38a9c..d1d7555851 100644 --- a/src/oci/database/models/database_connection_strings.py +++ b/src/oci/database/models/database_connection_strings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/database_summary.py b/src/oci/database/models/database_summary.py index a6af748b90..6a2252c914 100644 --- a/src/oci/database/models/database_summary.py +++ b/src/oci/database/models/database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -286,7 +286,7 @@ def ncharacter_set(self, ncharacter_set): def db_home_id(self): """ Gets the db_home_id of this DatabaseSummary. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -300,7 +300,7 @@ def db_home_id(self): def db_home_id(self, db_home_id): """ Sets the db_home_id of this DatabaseSummary. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm diff --git a/src/oci/database/models/day_of_week.py b/src/oci/database/models/day_of_week.py index 6c6106693c..b0c355a20b 100644 --- a/src/oci/database/models/day_of_week.py +++ b/src/oci/database/models/day_of_week.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_backup_config.py b/src/oci/database/models/db_backup_config.py index ae8b5924ca..d5861d9286 100644 --- a/src/oci/database/models/db_backup_config.py +++ b/src/oci/database/models/db_backup_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_home.py b/src/oci/database/models/db_home.py index 2da990561d..cfeb95de03 100644 --- a/src/oci/database/models/db_home.py +++ b/src/oci/database/models/db_home.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -118,7 +118,7 @@ def __init__(self, **kwargs): def id(self): """ **[Required]** Gets the id of this DbHome. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -132,7 +132,7 @@ def id(self): def id(self, id): """ Sets the id of this DbHome. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -174,7 +174,7 @@ def compartment_id(self, compartment_id): def display_name(self): """ **[Required]** Gets the display_name of this DbHome. - The user-provided name for the database home. The name does not need to be unique. + The user-provided name for the Database Home. The name does not need to be unique. :return: The display_name of this DbHome. @@ -186,7 +186,7 @@ def display_name(self): def display_name(self, display_name): """ Sets the display_name of this DbHome. - The user-provided name for the database home. The name does not need to be unique. + The user-provided name for the Database Home. The name does not need to be unique. :param display_name: The display_name of this DbHome. @@ -226,7 +226,7 @@ def last_patch_history_entry_id(self, last_patch_history_entry_id): def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this DbHome. - The current state of the database home. + The current state of the Database Home. Allowed values for this property are: "PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -241,7 +241,7 @@ def lifecycle_state(self): def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this DbHome. - The current state of the database home. + The current state of the Database Home. :param lifecycle_state: The lifecycle_state of this DbHome. @@ -336,7 +336,7 @@ def db_version(self, db_version): def time_created(self): """ Gets the time_created of this DbHome. - The date and time the database home was created. + The date and time the Database Home was created. :return: The time_created of this DbHome. @@ -348,7 +348,7 @@ def time_created(self): def time_created(self, time_created): """ Sets the time_created of this DbHome. - The date and time the database home was created. + The date and time the Database Home was created. :param time_created: The time_created of this DbHome. diff --git a/src/oci/database/models/db_home_summary.py b/src/oci/database/models/db_home_summary.py index 9993199e33..b78ea2505f 100644 --- a/src/oci/database/models/db_home_summary.py +++ b/src/oci/database/models/db_home_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -9,9 +9,9 @@ @init_model_state_from_kwargs class DbHomeSummary(object): """ - A directory where Oracle Database software is installed. A bare metal DB system can have multiple database homes - and each database home can run a different supported version of Oracle Database. A virtual machine DB system can have only one database home. - For more information, see `Bare Metal and Virtual Machine DB Systems`__. + A directory where Oracle Database software is installed. A bare metal or Exadata DB system can have multiple Database Homes + and each Database Home can run a different supported version of Oracle Database. A virtual machine DB system can have only one Database Home. + For more information, see `Bare Metal and Virtual Machine DB Systems`__ and `Exadata DB Systems`__. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, @@ -20,6 +20,7 @@ class DbHomeSummary(object): **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. __ https://docs.cloud.oracle.com/Content/Database/Concepts/overview.htm + __ https://docs.cloud.oracle.com/Content/Database/Concepts/exaoverview.htm __ https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm """ @@ -129,7 +130,7 @@ def __init__(self, **kwargs): def id(self): """ **[Required]** Gets the id of this DbHomeSummary. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -143,7 +144,7 @@ def id(self): def id(self, id): """ Sets the id of this DbHomeSummary. - The `OCID`__ of the database home. + The `OCID`__ of the Database Home. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm @@ -185,7 +186,7 @@ def compartment_id(self, compartment_id): def display_name(self): """ **[Required]** Gets the display_name of this DbHomeSummary. - The user-provided name for the database home. The name does not need to be unique. + The user-provided name for the Database Home. The name does not need to be unique. :return: The display_name of this DbHomeSummary. @@ -197,7 +198,7 @@ def display_name(self): def display_name(self, display_name): """ Sets the display_name of this DbHomeSummary. - The user-provided name for the database home. The name does not need to be unique. + The user-provided name for the Database Home. The name does not need to be unique. :param display_name: The display_name of this DbHomeSummary. @@ -237,7 +238,7 @@ def last_patch_history_entry_id(self, last_patch_history_entry_id): def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this DbHomeSummary. - The current state of the database home. + The current state of the Database Home. Allowed values for this property are: "PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -252,7 +253,7 @@ def lifecycle_state(self): def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this DbHomeSummary. - The current state of the database home. + The current state of the Database Home. :param lifecycle_state: The lifecycle_state of this DbHomeSummary. @@ -347,7 +348,7 @@ def db_version(self, db_version): def time_created(self): """ Gets the time_created of this DbHomeSummary. - The date and time the database home was created. + The date and time the Database Home was created. :return: The time_created of this DbHomeSummary. @@ -359,7 +360,7 @@ def time_created(self): def time_created(self, time_created): """ Sets the time_created of this DbHomeSummary. - The date and time the database home was created. + The date and time the Database Home was created. :param time_created: The time_created of this DbHomeSummary. diff --git a/src/oci/database/models/db_iorm_config.py b/src/oci/database/models/db_iorm_config.py index 44731aa775..84a4fb93bc 100644 --- a/src/oci/database/models/db_iorm_config.py +++ b/src/oci/database/models/db_iorm_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_iorm_config_update_detail.py b/src/oci/database/models/db_iorm_config_update_detail.py index 3f041b4214..2c5aa8edcb 100644 --- a/src/oci/database/models/db_iorm_config_update_detail.py +++ b/src/oci/database/models/db_iorm_config_update_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_node.py b/src/oci/database/models/db_node.py index e595fdecb8..31bae7dfe3 100644 --- a/src/oci/database/models/db_node.py +++ b/src/oci/database/models/db_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_node_summary.py b/src/oci/database/models/db_node_summary.py index 510f5f0a78..99292be241 100644 --- a/src/oci/database/models/db_node_summary.py +++ b/src/oci/database/models/db_node_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_system.py b/src/oci/database/models/db_system.py index 797750e5d3..acd6d63eb6 100644 --- a/src/oci/database/models/db_system.py +++ b/src/oci/database/models/db_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_system_options.py b/src/oci/database/models/db_system_options.py index 01b5aa43b0..bf09a64b4f 100644 --- a/src/oci/database/models/db_system_options.py +++ b/src/oci/database/models/db_system_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -46,11 +46,9 @@ def __init__(self, **kwargs): def storage_management(self): """ Gets the storage_management of this DbSystemOptions. - The storage option used in DB system. For 1-node VM systems, you can specify either `Automatic Storage Management (ASM)`__ or `Logical Volume Manager (LVM)`__. For more information, see `Bare Metal and Virtual Machine DB Systems`__. - - __ https://www.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19&id=OSTMG-GUID-BC612D35-5399-4A35-843E-CF76E3D3CDB5 - __ https://www.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19&id=ADMIN-GUID-57C50259-9472-4ED0-8818-DB9ABA96EC8E - __ https://docs.cloud.oracle.com/Content/Database/Concepts/overview.htm#fastprovisioning + The storage option used in DB system. + ASM - Automatic storage management + LVM - Logical Volume management Allowed values for this property are: "ASM", "LVM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -65,11 +63,9 @@ def storage_management(self): def storage_management(self, storage_management): """ Sets the storage_management of this DbSystemOptions. - The storage option used in DB system. For 1-node VM systems, you can specify either `Automatic Storage Management (ASM)`__ or `Logical Volume Manager (LVM)`__. For more information, see `Bare Metal and Virtual Machine DB Systems`__. - - __ https://www.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19&id=OSTMG-GUID-BC612D35-5399-4A35-843E-CF76E3D3CDB5 - __ https://www.oracle.com/pls/topic/lookup?ctx=en/database/oracle/oracle-database/19&id=ADMIN-GUID-57C50259-9472-4ED0-8818-DB9ABA96EC8E - __ https://docs.cloud.oracle.com/Content/Database/Concepts/overview.htm#fastprovisioning + The storage option used in DB system. + ASM - Automatic storage management + LVM - Logical Volume management :param storage_management: The storage_management of this DbSystemOptions. diff --git a/src/oci/database/models/db_system_shape_summary.py b/src/oci/database/models/db_system_shape_summary.py index 844a7d0dca..24d8ed9116 100644 --- a/src/oci/database/models/db_system_shape_summary.py +++ b/src/oci/database/models/db_system_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_system_summary.py b/src/oci/database/models/db_system_summary.py index f266257fc4..7dc9e91e83 100644 --- a/src/oci/database/models/db_system_summary.py +++ b/src/oci/database/models/db_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/db_version_summary.py b/src/oci/database/models/db_version_summary.py index e0c2b80228..fb1e28f9d0 100644 --- a/src/oci/database/models/db_version_summary.py +++ b/src/oci/database/models/db_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/exadata_infrastructure.py b/src/oci/database/models/exadata_infrastructure.py index d5ec4c0457..fb6d68d339 100644 --- a/src/oci/database/models/exadata_infrastructure.py +++ b/src/oci/database/models/exadata_infrastructure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/exadata_infrastructure_summary.py b/src/oci/database/models/exadata_infrastructure_summary.py index 47236d1ab1..0e998f74fe 100644 --- a/src/oci/database/models/exadata_infrastructure_summary.py +++ b/src/oci/database/models/exadata_infrastructure_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/exadata_iorm_config.py b/src/oci/database/models/exadata_iorm_config.py index 8aad50281f..d43f2796c4 100644 --- a/src/oci/database/models/exadata_iorm_config.py +++ b/src/oci/database/models/exadata_iorm_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/exadata_iorm_config_update_details.py b/src/oci/database/models/exadata_iorm_config_update_details.py index 638371c734..6355db08ac 100644 --- a/src/oci/database/models/exadata_iorm_config_update_details.py +++ b/src/oci/database/models/exadata_iorm_config_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/external_backup_job.py b/src/oci/database/models/external_backup_job.py index ebf8a6f988..ba2b9c3aa0 100644 --- a/src/oci/database/models/external_backup_job.py +++ b/src/oci/database/models/external_backup_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/failover_data_guard_association_details.py b/src/oci/database/models/failover_data_guard_association_details.py index f9b6425dca..13af192ab3 100644 --- a/src/oci/database/models/failover_data_guard_association_details.py +++ b/src/oci/database/models/failover_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/generate_autonomous_data_warehouse_wallet_details.py b/src/oci/database/models/generate_autonomous_data_warehouse_wallet_details.py index 724f3e7c0e..0bc44bb5c5 100644 --- a/src/oci/database/models/generate_autonomous_data_warehouse_wallet_details.py +++ b/src/oci/database/models/generate_autonomous_data_warehouse_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/generate_autonomous_database_wallet_details.py b/src/oci/database/models/generate_autonomous_database_wallet_details.py index d5547897b4..659dbeac3c 100644 --- a/src/oci/database/models/generate_autonomous_database_wallet_details.py +++ b/src/oci/database/models/generate_autonomous_database_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/generate_recommended_network_details.py b/src/oci/database/models/generate_recommended_network_details.py index ba3cd14880..5fa65e2a58 100644 --- a/src/oci/database/models/generate_recommended_network_details.py +++ b/src/oci/database/models/generate_recommended_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/gi_version_summary.py b/src/oci/database/models/gi_version_summary.py index 25e6834c8f..d383407ad1 100644 --- a/src/oci/database/models/gi_version_summary.py +++ b/src/oci/database/models/gi_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/info_for_network_gen_details.py b/src/oci/database/models/info_for_network_gen_details.py index 0f02b01aa1..1187794bca 100644 --- a/src/oci/database/models/info_for_network_gen_details.py +++ b/src/oci/database/models/info_for_network_gen_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/launch_autonomous_exadata_infrastructure_details.py b/src/oci/database/models/launch_autonomous_exadata_infrastructure_details.py index d70db86d79..6a62896213 100644 --- a/src/oci/database/models/launch_autonomous_exadata_infrastructure_details.py +++ b/src/oci/database/models/launch_autonomous_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/launch_db_system_base.py b/src/oci/database/models/launch_db_system_base.py index 04a23eebdc..644bb9e2d3 100644 --- a/src/oci/database/models/launch_db_system_base.py +++ b/src/oci/database/models/launch_db_system_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/launch_db_system_details.py b/src/oci/database/models/launch_db_system_details.py index 555d630af6..7f0d4f622e 100644 --- a/src/oci/database/models/launch_db_system_details.py +++ b/src/oci/database/models/launch_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .launch_db_system_base import LaunchDbSystemBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/launch_db_system_from_backup_details.py b/src/oci/database/models/launch_db_system_from_backup_details.py index 1f53473849..7591297b6a 100644 --- a/src/oci/database/models/launch_db_system_from_backup_details.py +++ b/src/oci/database/models/launch_db_system_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .launch_db_system_base import LaunchDbSystemBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/maintenance_run.py b/src/oci/database/models/maintenance_run.py index f2985c13e8..10e5420ff4 100644 --- a/src/oci/database/models/maintenance_run.py +++ b/src/oci/database/models/maintenance_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -36,6 +36,14 @@ class MaintenanceRun(object): #: This constant has a value of "UPDATING" LIFECYCLE_STATE_UPDATING = "UPDATING" + #: A constant which can be used with the lifecycle_state property of a MaintenanceRun. + #: This constant has a value of "DELETING" + LIFECYCLE_STATE_DELETING = "DELETING" + + #: A constant which can be used with the lifecycle_state property of a MaintenanceRun. + #: This constant has a value of "DELETED" + LIFECYCLE_STATE_DELETED = "DELETED" + #: A constant which can be used with the target_resource_type property of a MaintenanceRun. #: This constant has a value of "AUTONOMOUS_EXADATA_INFRASTRUCTURE" TARGET_RESOURCE_TYPE_AUTONOMOUS_EXADATA_INFRASTRUCTURE = "AUTONOMOUS_EXADATA_INFRASTRUCTURE" @@ -91,7 +99,7 @@ def __init__(self, **kwargs): :param lifecycle_state: The value to assign to the lifecycle_state property of this MaintenanceRun. - Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str @@ -282,7 +290,7 @@ def lifecycle_state(self): **[Required]** Gets the lifecycle_state of this MaintenanceRun. The current state of the Maintenance Run. - Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -301,7 +309,7 @@ def lifecycle_state(self, lifecycle_state): :param lifecycle_state: The lifecycle_state of this MaintenanceRun. :type: str """ - allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING"] + allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state diff --git a/src/oci/database/models/maintenance_run_summary.py b/src/oci/database/models/maintenance_run_summary.py index 4ed237cbd8..9d64e78e2b 100644 --- a/src/oci/database/models/maintenance_run_summary.py +++ b/src/oci/database/models/maintenance_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -36,6 +36,14 @@ class MaintenanceRunSummary(object): #: This constant has a value of "UPDATING" LIFECYCLE_STATE_UPDATING = "UPDATING" + #: A constant which can be used with the lifecycle_state property of a MaintenanceRunSummary. + #: This constant has a value of "DELETING" + LIFECYCLE_STATE_DELETING = "DELETING" + + #: A constant which can be used with the lifecycle_state property of a MaintenanceRunSummary. + #: This constant has a value of "DELETED" + LIFECYCLE_STATE_DELETED = "DELETED" + #: A constant which can be used with the target_resource_type property of a MaintenanceRunSummary. #: This constant has a value of "AUTONOMOUS_EXADATA_INFRASTRUCTURE" TARGET_RESOURCE_TYPE_AUTONOMOUS_EXADATA_INFRASTRUCTURE = "AUTONOMOUS_EXADATA_INFRASTRUCTURE" @@ -91,7 +99,7 @@ def __init__(self, **kwargs): :param lifecycle_state: The value to assign to the lifecycle_state property of this MaintenanceRunSummary. - Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str @@ -282,7 +290,7 @@ def lifecycle_state(self): **[Required]** Gets the lifecycle_state of this MaintenanceRunSummary. The current state of the Maintenance Run. - Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -301,7 +309,7 @@ def lifecycle_state(self, lifecycle_state): :param lifecycle_state: The lifecycle_state of this MaintenanceRunSummary. :type: str """ - allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING"] + allowed_values = ["SCHEDULED", "IN_PROGRESS", "SUCCEEDED", "SKIPPED", "FAILED", "UPDATING", "DELETING", "DELETED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state diff --git a/src/oci/database/models/maintenance_window.py b/src/oci/database/models/maintenance_window.py index a7f3759bf1..abbe89d7e1 100644 --- a/src/oci/database/models/maintenance_window.py +++ b/src/oci/database/models/maintenance_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/month.py b/src/oci/database/models/month.py index a351617db8..47c4d072c6 100644 --- a/src/oci/database/models/month.py +++ b/src/oci/database/models/month.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/node_details.py b/src/oci/database/models/node_details.py index 041f28e2d8..ebb7c1dedd 100644 --- a/src/oci/database/models/node_details.py +++ b/src/oci/database/models/node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -56,7 +56,7 @@ def __init__(self, **kwargs): @property def hostname(self): """ - Gets the hostname of this NodeDetails. + **[Required]** Gets the hostname of this NodeDetails. The node host name. diff --git a/src/oci/database/models/ocp_us.py b/src/oci/database/models/ocp_us.py index d9d7e59219..770ce64d60 100644 --- a/src/oci/database/models/ocp_us.py +++ b/src/oci/database/models/ocp_us.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/patch.py b/src/oci/database/models/patch.py index dfc214ccb7..58b35b1502 100644 --- a/src/oci/database/models/patch.py +++ b/src/oci/database/models/patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/patch_details.py b/src/oci/database/models/patch_details.py index 8841272782..f2e9f155f6 100644 --- a/src/oci/database/models/patch_details.py +++ b/src/oci/database/models/patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -11,7 +11,7 @@ class PatchDetails(object): """ The details about what actions to perform and using what patch to the specified target. This is part of an update request that is applied to a version field on the target such - as DB system, database home, etc. + as DB system, Database Home, etc. """ #: A constant which can be used with the action property of a PatchDetails. diff --git a/src/oci/database/models/patch_history_entry.py b/src/oci/database/models/patch_history_entry.py index 2357a83f85..6cbdd78693 100644 --- a/src/oci/database/models/patch_history_entry.py +++ b/src/oci/database/models/patch_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/patch_history_entry_summary.py b/src/oci/database/models/patch_history_entry_summary.py index 6526f8f1b5..a631969353 100644 --- a/src/oci/database/models/patch_history_entry_summary.py +++ b/src/oci/database/models/patch_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/patch_summary.py b/src/oci/database/models/patch_summary.py index 05b6d0e605..a1d1e1c888 100644 --- a/src/oci/database/models/patch_summary.py +++ b/src/oci/database/models/patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/reinstate_data_guard_association_details.py b/src/oci/database/models/reinstate_data_guard_association_details.py index 11df86b188..96f5bbdcc3 100644 --- a/src/oci/database/models/reinstate_data_guard_association_details.py +++ b/src/oci/database/models/reinstate_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/restore_autonomous_data_warehouse_details.py b/src/oci/database/models/restore_autonomous_data_warehouse_details.py index 098ac108da..c7f8237a30 100644 --- a/src/oci/database/models/restore_autonomous_data_warehouse_details.py +++ b/src/oci/database/models/restore_autonomous_data_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/restore_autonomous_database_details.py b/src/oci/database/models/restore_autonomous_database_details.py index b84d2b39a3..bfef7dbacf 100644 --- a/src/oci/database/models/restore_autonomous_database_details.py +++ b/src/oci/database/models/restore_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/restore_database_details.py b/src/oci/database/models/restore_database_details.py index 7109e813e3..41ea1b2e8f 100644 --- a/src/oci/database/models/restore_database_details.py +++ b/src/oci/database/models/restore_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/scan_details.py b/src/oci/database/models/scan_details.py index b61039ddf2..5b1d62b5f1 100644 --- a/src/oci/database/models/scan_details.py +++ b/src/oci/database/models/scan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/switchover_data_guard_association_details.py b/src/oci/database/models/switchover_data_guard_association_details.py index 1ded4d3e06..1867a87c67 100644 --- a/src/oci/database/models/switchover_data_guard_association_details.py +++ b/src/oci/database/models/switchover_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_autonomous_container_database_details.py b/src/oci/database/models/update_autonomous_container_database_details.py index 911d088ee9..39f543f578 100644 --- a/src/oci/database/models/update_autonomous_container_database_details.py +++ b/src/oci/database/models/update_autonomous_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -34,6 +34,10 @@ def __init__(self, **kwargs): Allowed values for this property are: "RELEASE_UPDATES", "RELEASE_UPDATE_REVISIONS" :type patch_model: str + :param maintenance_window_details: + The value to assign to the maintenance_window_details property of this UpdateAutonomousContainerDatabaseDetails. + :type maintenance_window_details: MaintenanceWindow + :param freeform_tags: The value to assign to the freeform_tags property of this UpdateAutonomousContainerDatabaseDetails. :type freeform_tags: dict(str, str) @@ -50,6 +54,7 @@ def __init__(self, **kwargs): self.swagger_types = { 'display_name': 'str', 'patch_model': 'str', + 'maintenance_window_details': 'MaintenanceWindow', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'backup_config': 'AutonomousContainerDatabaseBackupConfig' @@ -58,6 +63,7 @@ def __init__(self, **kwargs): self.attribute_map = { 'display_name': 'displayName', 'patch_model': 'patchModel', + 'maintenance_window_details': 'maintenanceWindowDetails', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'backup_config': 'backupConfig' @@ -65,6 +71,7 @@ def __init__(self, **kwargs): self._display_name = None self._patch_model = None + self._maintenance_window_details = None self._freeform_tags = None self._defined_tags = None self._backup_config = None @@ -125,6 +132,26 @@ def patch_model(self, patch_model): ) self._patch_model = patch_model + @property + def maintenance_window_details(self): + """ + Gets the maintenance_window_details of this UpdateAutonomousContainerDatabaseDetails. + + :return: The maintenance_window_details of this UpdateAutonomousContainerDatabaseDetails. + :rtype: MaintenanceWindow + """ + return self._maintenance_window_details + + @maintenance_window_details.setter + def maintenance_window_details(self, maintenance_window_details): + """ + Sets the maintenance_window_details of this UpdateAutonomousContainerDatabaseDetails. + + :param maintenance_window_details: The maintenance_window_details of this UpdateAutonomousContainerDatabaseDetails. + :type: MaintenanceWindow + """ + self._maintenance_window_details = maintenance_window_details + @property def freeform_tags(self): """ diff --git a/src/oci/database/models/update_autonomous_data_warehouse_details.py b/src/oci/database/models/update_autonomous_data_warehouse_details.py index 27243e218c..66438fedca 100644 --- a/src/oci/database/models/update_autonomous_data_warehouse_details.py +++ b/src/oci/database/models/update_autonomous_data_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_autonomous_database_details.py b/src/oci/database/models/update_autonomous_database_details.py index 247479c2fc..de6848c7bf 100644 --- a/src/oci/database/models/update_autonomous_database_details.py +++ b/src/oci/database/models/update_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_autonomous_database_wallet_details.py b/src/oci/database/models/update_autonomous_database_wallet_details.py index d9d7b6c78a..161488e3fc 100644 --- a/src/oci/database/models/update_autonomous_database_wallet_details.py +++ b/src/oci/database/models/update_autonomous_database_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_autonomous_exadata_infrastructure_details.py b/src/oci/database/models/update_autonomous_exadata_infrastructure_details.py index 5df5e791f9..d58e98ab8c 100644 --- a/src/oci/database/models/update_autonomous_exadata_infrastructure_details.py +++ b/src/oci/database/models/update_autonomous_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_backup_destination_details.py b/src/oci/database/models/update_backup_destination_details.py index 4eb3183eb7..e29886847d 100644 --- a/src/oci/database/models/update_backup_destination_details.py +++ b/src/oci/database/models/update_backup_destination_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_database_details.py b/src/oci/database/models/update_database_details.py index 97f8999a92..4ea011f9c4 100644 --- a/src/oci/database/models/update_database_details.py +++ b/src/oci/database/models/update_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_db_home_details.py b/src/oci/database/models/update_db_home_details.py index 0e5a10c48f..03643e6a5d 100644 --- a/src/oci/database/models/update_db_home_details.py +++ b/src/oci/database/models/update_db_home_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 @@ -9,7 +9,7 @@ @init_model_state_from_kwargs class UpdateDbHomeDetails(object): """ - Describes the modification parameters for the database home. + Describes the modification parameters for the Database Home. """ def __init__(self, **kwargs): diff --git a/src/oci/database/models/update_db_system_details.py b/src/oci/database/models/update_db_system_details.py index 8afa1e5e94..64028b719d 100644 --- a/src/oci/database/models/update_db_system_details.py +++ b/src/oci/database/models/update_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_exadata_infrastructure_details.py b/src/oci/database/models/update_exadata_infrastructure_details.py index 1e81e624cc..1109d32af4 100644 --- a/src/oci/database/models/update_exadata_infrastructure_details.py +++ b/src/oci/database/models/update_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_maintenance_run_details.py b/src/oci/database/models/update_maintenance_run_details.py index 16921b6e76..ecc2cee514 100644 --- a/src/oci/database/models/update_maintenance_run_details.py +++ b/src/oci/database/models/update_maintenance_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_vm_cluster_details.py b/src/oci/database/models/update_vm_cluster_details.py index 80530f8bc6..27cb862b44 100644 --- a/src/oci/database/models/update_vm_cluster_details.py +++ b/src/oci/database/models/update_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/update_vm_cluster_network_details.py b/src/oci/database/models/update_vm_cluster_network_details.py index dc3b7031b3..3bfce34b49 100644 --- a/src/oci/database/models/update_vm_cluster_network_details.py +++ b/src/oci/database/models/update_vm_cluster_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_cluster.py b/src/oci/database/models/vm_cluster.py index 7c8a6a75e3..780fd926b5 100644 --- a/src/oci/database/models/vm_cluster.py +++ b/src/oci/database/models/vm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_cluster_network.py b/src/oci/database/models/vm_cluster_network.py index a6bc930fca..53846d0564 100644 --- a/src/oci/database/models/vm_cluster_network.py +++ b/src/oci/database/models/vm_cluster_network.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_cluster_network_details.py b/src/oci/database/models/vm_cluster_network_details.py index 1deaf90e93..d3892b8de8 100644 --- a/src/oci/database/models/vm_cluster_network_details.py +++ b/src/oci/database/models/vm_cluster_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_cluster_network_summary.py b/src/oci/database/models/vm_cluster_network_summary.py index 459248a289..5c1b1086e0 100644 --- a/src/oci/database/models/vm_cluster_network_summary.py +++ b/src/oci/database/models/vm_cluster_network_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_cluster_summary.py b/src/oci/database/models/vm_cluster_summary.py index 76820f054b..aa68835817 100644 --- a/src/oci/database/models/vm_cluster_summary.py +++ b/src/oci/database/models/vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/vm_network_details.py b/src/oci/database/models/vm_network_details.py index 4202f98a14..1c5e9dedde 100644 --- a/src/oci/database/models/vm_network_details.py +++ b/src/oci/database/models/vm_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/database/models/workload_type.py b/src/oci/database/models/workload_type.py index 15b848dd92..4dda6631f5 100644 --- a/src/oci/database/models/workload_type.py +++ b/src/oci/database/models/workload_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/decorators.py b/src/oci/decorators.py index 31cb3532ef..eaa6e6e315 100644 --- a/src/oci/decorators.py +++ b/src/oci/decorators.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .util import Sentinel diff --git a/src/oci/dns/__init__.py b/src/oci/dns/__init__.py index c48fa530de..9d1b67927c 100644 --- a/src/oci/dns/__init__.py +++ b/src/oci/dns/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dns/dns_client.py b/src/oci/dns/dns_client.py index 9f031aef19..42629a0fb6 100644 --- a/src/oci/dns/dns_client.py +++ b/src/oci/dns/dns_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dns/dns_client_composite_operations.py b/src/oci/dns/dns_client_composite_operations.py index 1cc13e4f2b..a9bafac0bc 100644 --- a/src/oci/dns/dns_client_composite_operations.py +++ b/src/oci/dns/dns_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dns/models/__init__.py b/src/oci/dns/models/__init__.py index 454e8984bd..57c6a878aa 100644 --- a/src/oci/dns/models/__init__.py +++ b/src/oci/dns/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dns/models/change_steering_policy_compartment_details.py b/src/oci/dns/models/change_steering_policy_compartment_details.py index 5a9c568041..921eb6d9b5 100644 --- a/src/oci/dns/models/change_steering_policy_compartment_details.py +++ b/src/oci/dns/models/change_steering_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/change_tsig_key_compartment_details.py b/src/oci/dns/models/change_tsig_key_compartment_details.py index 917e277a0e..88bc762eb8 100644 --- a/src/oci/dns/models/change_tsig_key_compartment_details.py +++ b/src/oci/dns/models/change_tsig_key_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/change_zone_compartment_details.py b/src/oci/dns/models/change_zone_compartment_details.py index 89434cf197..262fc926f9 100644 --- a/src/oci/dns/models/change_zone_compartment_details.py +++ b/src/oci/dns/models/change_zone_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_migrated_dynect_zone_details.py b/src/oci/dns/models/create_migrated_dynect_zone_details.py index 6e04c963fc..d77b749088 100644 --- a/src/oci/dns/models/create_migrated_dynect_zone_details.py +++ b/src/oci/dns/models/create_migrated_dynect_zone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_zone_base_details import CreateZoneBaseDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_steering_policy_attachment_details.py b/src/oci/dns/models/create_steering_policy_attachment_details.py index e94184b97f..5d5ce2fad0 100644 --- a/src/oci/dns/models/create_steering_policy_attachment_details.py +++ b/src/oci/dns/models/create_steering_policy_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_steering_policy_details.py b/src/oci/dns/models/create_steering_policy_details.py index be5d25e222..015c11e1bb 100644 --- a/src/oci/dns/models/create_steering_policy_details.py +++ b/src/oci/dns/models/create_steering_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_tsig_key_details.py b/src/oci/dns/models/create_tsig_key_details.py index 4768f45aef..fbcc39f2e2 100644 --- a/src/oci/dns/models/create_tsig_key_details.py +++ b/src/oci/dns/models/create_tsig_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_zone_base_details.py b/src/oci/dns/models/create_zone_base_details.py index 20e71c069c..f109bc09e7 100644 --- a/src/oci/dns/models/create_zone_base_details.py +++ b/src/oci/dns/models/create_zone_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/create_zone_details.py b/src/oci/dns/models/create_zone_details.py index 00039de572..1b3e26955f 100644 --- a/src/oci/dns/models/create_zone_details.py +++ b/src/oci/dns/models/create_zone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_zone_base_details import CreateZoneBaseDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/dynect_migration_details.py b/src/oci/dns/models/dynect_migration_details.py index 5d467667ad..5466e85478 100644 --- a/src/oci/dns/models/dynect_migration_details.py +++ b/src/oci/dns/models/dynect_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/external_master.py b/src/oci/dns/models/external_master.py index d5cf9e45a6..81f5b27e1e 100644 --- a/src/oci/dns/models/external_master.py +++ b/src/oci/dns/models/external_master.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/migration_replacement.py b/src/oci/dns/models/migration_replacement.py index afd73cf7b0..643ee48ccb 100644 --- a/src/oci/dns/models/migration_replacement.py +++ b/src/oci/dns/models/migration_replacement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/nameserver.py b/src/oci/dns/models/nameserver.py index 4a2012afc1..2fadcb9b23 100644 --- a/src/oci/dns/models/nameserver.py +++ b/src/oci/dns/models/nameserver.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/patch_domain_records_details.py b/src/oci/dns/models/patch_domain_records_details.py index 54c2fd5862..e07bcdf120 100644 --- a/src/oci/dns/models/patch_domain_records_details.py +++ b/src/oci/dns/models/patch_domain_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/patch_rr_set_details.py b/src/oci/dns/models/patch_rr_set_details.py index b652018778..21df59a5f0 100644 --- a/src/oci/dns/models/patch_rr_set_details.py +++ b/src/oci/dns/models/patch_rr_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/patch_zone_records_details.py b/src/oci/dns/models/patch_zone_records_details.py index 1ba39ffb52..edfabc6106 100644 --- a/src/oci/dns/models/patch_zone_records_details.py +++ b/src/oci/dns/models/patch_zone_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/record.py b/src/oci/dns/models/record.py index 5d255ac456..b7bc7e07f6 100644 --- a/src/oci/dns/models/record.py +++ b/src/oci/dns/models/record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/record_collection.py b/src/oci/dns/models/record_collection.py index 5c5ead3adb..0331b3cde8 100644 --- a/src/oci/dns/models/record_collection.py +++ b/src/oci/dns/models/record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/record_details.py b/src/oci/dns/models/record_details.py index e1d5064889..c4da2fb1c2 100644 --- a/src/oci/dns/models/record_details.py +++ b/src/oci/dns/models/record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/record_operation.py b/src/oci/dns/models/record_operation.py index 4fdce0b93f..36d0c337b0 100644 --- a/src/oci/dns/models/record_operation.py +++ b/src/oci/dns/models/record_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/rr_set.py b/src/oci/dns/models/rr_set.py index d8990f773d..2db31e555b 100644 --- a/src/oci/dns/models/rr_set.py +++ b/src/oci/dns/models/rr_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy.py b/src/oci/dns/models/steering_policy.py index 9d658f01e3..68cae466bd 100644 --- a/src/oci/dns/models/steering_policy.py +++ b/src/oci/dns/models/steering_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_answer.py b/src/oci/dns/models/steering_policy_answer.py index 60e20b9441..7ffaccca79 100644 --- a/src/oci/dns/models/steering_policy_answer.py +++ b/src/oci/dns/models/steering_policy_answer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_attachment.py b/src/oci/dns/models/steering_policy_attachment.py index 0c5b8009fb..8ba59c0bd0 100644 --- a/src/oci/dns/models/steering_policy_attachment.py +++ b/src/oci/dns/models/steering_policy_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_attachment_summary.py b/src/oci/dns/models/steering_policy_attachment_summary.py index 95372f006d..81222a546a 100644 --- a/src/oci/dns/models/steering_policy_attachment_summary.py +++ b/src/oci/dns/models/steering_policy_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_filter_answer_data.py b/src/oci/dns/models/steering_policy_filter_answer_data.py index 7657fa5f0b..0919c27198 100644 --- a/src/oci/dns/models/steering_policy_filter_answer_data.py +++ b/src/oci/dns/models/steering_policy_filter_answer_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_filter_rule.py b/src/oci/dns/models/steering_policy_filter_rule.py index 2070b29e00..8d33a0f688 100644 --- a/src/oci/dns/models/steering_policy_filter_rule.py +++ b/src/oci/dns/models/steering_policy_filter_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .steering_policy_rule import SteeringPolicyRule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_filter_rule_case.py b/src/oci/dns/models/steering_policy_filter_rule_case.py index 7da4780fcb..9291995b08 100644 --- a/src/oci/dns/models/steering_policy_filter_rule_case.py +++ b/src/oci/dns/models/steering_policy_filter_rule_case.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_health_rule.py b/src/oci/dns/models/steering_policy_health_rule.py index d6645dc597..96cb1c96e2 100644 --- a/src/oci/dns/models/steering_policy_health_rule.py +++ b/src/oci/dns/models/steering_policy_health_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .steering_policy_rule import SteeringPolicyRule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_health_rule_case.py b/src/oci/dns/models/steering_policy_health_rule_case.py index c0e866826c..bf223aba16 100644 --- a/src/oci/dns/models/steering_policy_health_rule_case.py +++ b/src/oci/dns/models/steering_policy_health_rule_case.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_limit_rule.py b/src/oci/dns/models/steering_policy_limit_rule.py index fced8481d5..e1da4b8a5d 100644 --- a/src/oci/dns/models/steering_policy_limit_rule.py +++ b/src/oci/dns/models/steering_policy_limit_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .steering_policy_rule import SteeringPolicyRule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_limit_rule_case.py b/src/oci/dns/models/steering_policy_limit_rule_case.py index 052f99cfcf..f9091656f4 100644 --- a/src/oci/dns/models/steering_policy_limit_rule_case.py +++ b/src/oci/dns/models/steering_policy_limit_rule_case.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_priority_answer_data.py b/src/oci/dns/models/steering_policy_priority_answer_data.py index d576ddad17..7cc78c3767 100644 --- a/src/oci/dns/models/steering_policy_priority_answer_data.py +++ b/src/oci/dns/models/steering_policy_priority_answer_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_priority_rule.py b/src/oci/dns/models/steering_policy_priority_rule.py index 92a3fc9150..fb60ee64a0 100644 --- a/src/oci/dns/models/steering_policy_priority_rule.py +++ b/src/oci/dns/models/steering_policy_priority_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .steering_policy_rule import SteeringPolicyRule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_priority_rule_case.py b/src/oci/dns/models/steering_policy_priority_rule_case.py index 1e350952aa..dfc2842d8f 100644 --- a/src/oci/dns/models/steering_policy_priority_rule_case.py +++ b/src/oci/dns/models/steering_policy_priority_rule_case.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_rule.py b/src/oci/dns/models/steering_policy_rule.py index 69698604a1..13d78b5b25 100644 --- a/src/oci/dns/models/steering_policy_rule.py +++ b/src/oci/dns/models/steering_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_summary.py b/src/oci/dns/models/steering_policy_summary.py index c6454b8421..48a7bfd184 100644 --- a/src/oci/dns/models/steering_policy_summary.py +++ b/src/oci/dns/models/steering_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_weighted_answer_data.py b/src/oci/dns/models/steering_policy_weighted_answer_data.py index e5fb4d63c2..58759c959f 100644 --- a/src/oci/dns/models/steering_policy_weighted_answer_data.py +++ b/src/oci/dns/models/steering_policy_weighted_answer_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_weighted_rule.py b/src/oci/dns/models/steering_policy_weighted_rule.py index f694b1a09c..4b3e938c47 100644 --- a/src/oci/dns/models/steering_policy_weighted_rule.py +++ b/src/oci/dns/models/steering_policy_weighted_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .steering_policy_rule import SteeringPolicyRule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/steering_policy_weighted_rule_case.py b/src/oci/dns/models/steering_policy_weighted_rule_case.py index 2fd5809114..511925a8eb 100644 --- a/src/oci/dns/models/steering_policy_weighted_rule_case.py +++ b/src/oci/dns/models/steering_policy_weighted_rule_case.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/tsig.py b/src/oci/dns/models/tsig.py index 8d51d7efeb..f574641eba 100644 --- a/src/oci/dns/models/tsig.py +++ b/src/oci/dns/models/tsig.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/tsig_key.py b/src/oci/dns/models/tsig_key.py index 93258822e2..2d9de7c1eb 100644 --- a/src/oci/dns/models/tsig_key.py +++ b/src/oci/dns/models/tsig_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/tsig_key_summary.py b/src/oci/dns/models/tsig_key_summary.py index 79d1477892..3bf51c9066 100644 --- a/src/oci/dns/models/tsig_key_summary.py +++ b/src/oci/dns/models/tsig_key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_domain_records_details.py b/src/oci/dns/models/update_domain_records_details.py index ee1a144d2d..6cf1f47a0b 100644 --- a/src/oci/dns/models/update_domain_records_details.py +++ b/src/oci/dns/models/update_domain_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_rr_set_details.py b/src/oci/dns/models/update_rr_set_details.py index e99c5628f3..f586f1b946 100644 --- a/src/oci/dns/models/update_rr_set_details.py +++ b/src/oci/dns/models/update_rr_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_steering_policy_attachment_details.py b/src/oci/dns/models/update_steering_policy_attachment_details.py index 115e027393..9d0e26579a 100644 --- a/src/oci/dns/models/update_steering_policy_attachment_details.py +++ b/src/oci/dns/models/update_steering_policy_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_steering_policy_details.py b/src/oci/dns/models/update_steering_policy_details.py index 80c94aa7b0..58dcd4cd49 100644 --- a/src/oci/dns/models/update_steering_policy_details.py +++ b/src/oci/dns/models/update_steering_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_tsig_key_details.py b/src/oci/dns/models/update_tsig_key_details.py index 4c03640eee..5c4b022255 100644 --- a/src/oci/dns/models/update_tsig_key_details.py +++ b/src/oci/dns/models/update_tsig_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_zone_details.py b/src/oci/dns/models/update_zone_details.py index 9b84a63fc9..0dbbc9c224 100644 --- a/src/oci/dns/models/update_zone_details.py +++ b/src/oci/dns/models/update_zone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/update_zone_records_details.py b/src/oci/dns/models/update_zone_records_details.py index 8900b1111b..c98bdae201 100644 --- a/src/oci/dns/models/update_zone_records_details.py +++ b/src/oci/dns/models/update_zone_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/zone.py b/src/oci/dns/models/zone.py index 5624ea4322..c8603bf30a 100644 --- a/src/oci/dns/models/zone.py +++ b/src/oci/dns/models/zone.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dns/models/zone_summary.py b/src/oci/dns/models/zone_summary.py index 64529c1085..2de25b8f89 100644 --- a/src/oci/dns/models/zone_summary.py +++ b/src/oci/dns/models/zone_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/__init__.py b/src/oci/dts/__init__.py index 68d7ae4c86..23e063724d 100644 --- a/src/oci/dts/__init__.py +++ b/src/oci/dts/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/models/__init__.py b/src/oci/dts/models/__init__.py index 60f5a1b0b7..92d666b068 100644 --- a/src/oci/dts/models/__init__.py +++ b/src/oci/dts/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/models/attach_devices_details.py b/src/oci/dts/models/attach_devices_details.py index 11cbabb29a..1b07d72dcb 100644 --- a/src/oci/dts/models/attach_devices_details.py +++ b/src/oci/dts/models/attach_devices_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/change_transfer_job_compartment_details.py b/src/oci/dts/models/change_transfer_job_compartment_details.py index cc2c8f8d0e..82a3d1d4cf 100644 --- a/src/oci/dts/models/change_transfer_job_compartment_details.py +++ b/src/oci/dts/models/change_transfer_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/create_transfer_appliance_details.py b/src/oci/dts/models/create_transfer_appliance_details.py index b2ace1dc81..4811cede45 100644 --- a/src/oci/dts/models/create_transfer_appliance_details.py +++ b/src/oci/dts/models/create_transfer_appliance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/create_transfer_appliance_entitlement_details.py b/src/oci/dts/models/create_transfer_appliance_entitlement_details.py index 105a1b0529..ba5e66ffe7 100644 --- a/src/oci/dts/models/create_transfer_appliance_entitlement_details.py +++ b/src/oci/dts/models/create_transfer_appliance_entitlement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/create_transfer_device_details.py b/src/oci/dts/models/create_transfer_device_details.py index c679a53f7a..1e36d0da32 100644 --- a/src/oci/dts/models/create_transfer_device_details.py +++ b/src/oci/dts/models/create_transfer_device_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/create_transfer_job_details.py b/src/oci/dts/models/create_transfer_job_details.py index d7a5919535..246b8219e8 100644 --- a/src/oci/dts/models/create_transfer_job_details.py +++ b/src/oci/dts/models/create_transfer_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/create_transfer_package_details.py b/src/oci/dts/models/create_transfer_package_details.py index 547458ff65..324b53d324 100644 --- a/src/oci/dts/models/create_transfer_package_details.py +++ b/src/oci/dts/models/create_transfer_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/detach_devices_details.py b/src/oci/dts/models/detach_devices_details.py index dfabdf6f86..af7b26a20b 100644 --- a/src/oci/dts/models/detach_devices_details.py +++ b/src/oci/dts/models/detach_devices_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/multiple_transfer_appliances.py b/src/oci/dts/models/multiple_transfer_appliances.py index 0b0b3477fe..4efbfbb7aa 100644 --- a/src/oci/dts/models/multiple_transfer_appliances.py +++ b/src/oci/dts/models/multiple_transfer_appliances.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/multiple_transfer_devices.py b/src/oci/dts/models/multiple_transfer_devices.py index 325ab5c6ef..03d7bc4489 100644 --- a/src/oci/dts/models/multiple_transfer_devices.py +++ b/src/oci/dts/models/multiple_transfer_devices.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/multiple_transfer_packages.py b/src/oci/dts/models/multiple_transfer_packages.py index cdb4fbe783..3756b62f01 100644 --- a/src/oci/dts/models/multiple_transfer_packages.py +++ b/src/oci/dts/models/multiple_transfer_packages.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/new_transfer_device.py b/src/oci/dts/models/new_transfer_device.py index 9da710e85f..1f77c2e9a2 100644 --- a/src/oci/dts/models/new_transfer_device.py +++ b/src/oci/dts/models/new_transfer_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/shipping_address.py b/src/oci/dts/models/shipping_address.py index 351b7b3177..0a925705ab 100644 --- a/src/oci/dts/models/shipping_address.py +++ b/src/oci/dts/models/shipping_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/shipping_vendors.py b/src/oci/dts/models/shipping_vendors.py index 132b3ad4ae..2b2fb56dde 100644 --- a/src/oci/dts/models/shipping_vendors.py +++ b/src/oci/dts/models/shipping_vendors.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance.py b/src/oci/dts/models/transfer_appliance.py index e156815e03..cf766ca972 100644 --- a/src/oci/dts/models/transfer_appliance.py +++ b/src/oci/dts/models/transfer_appliance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_certificate.py b/src/oci/dts/models/transfer_appliance_certificate.py index 13296366be..6242a7a5c6 100644 --- a/src/oci/dts/models/transfer_appliance_certificate.py +++ b/src/oci/dts/models/transfer_appliance_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_encryption_passphrase.py b/src/oci/dts/models/transfer_appliance_encryption_passphrase.py index d55828a108..bb19488683 100644 --- a/src/oci/dts/models/transfer_appliance_encryption_passphrase.py +++ b/src/oci/dts/models/transfer_appliance_encryption_passphrase.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_entitlement.py b/src/oci/dts/models/transfer_appliance_entitlement.py index db095d9db9..ad9a2ae3e6 100644 --- a/src/oci/dts/models/transfer_appliance_entitlement.py +++ b/src/oci/dts/models/transfer_appliance_entitlement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_entitlement_summary.py b/src/oci/dts/models/transfer_appliance_entitlement_summary.py index dd170e0aaa..a1b6b20c5a 100644 --- a/src/oci/dts/models/transfer_appliance_entitlement_summary.py +++ b/src/oci/dts/models/transfer_appliance_entitlement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_public_key.py b/src/oci/dts/models/transfer_appliance_public_key.py index 3024e040c3..d6c319f579 100644 --- a/src/oci/dts/models/transfer_appliance_public_key.py +++ b/src/oci/dts/models/transfer_appliance_public_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_appliance_summary.py b/src/oci/dts/models/transfer_appliance_summary.py index 08a81287e4..30e5157048 100644 --- a/src/oci/dts/models/transfer_appliance_summary.py +++ b/src/oci/dts/models/transfer_appliance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_device.py b/src/oci/dts/models/transfer_device.py index 837400574c..074cb59625 100644 --- a/src/oci/dts/models/transfer_device.py +++ b/src/oci/dts/models/transfer_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_device_summary.py b/src/oci/dts/models/transfer_device_summary.py index fec4ecb1af..b427ab3105 100644 --- a/src/oci/dts/models/transfer_device_summary.py +++ b/src/oci/dts/models/transfer_device_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_job.py b/src/oci/dts/models/transfer_job.py index e7834a897e..0a26699d71 100644 --- a/src/oci/dts/models/transfer_job.py +++ b/src/oci/dts/models/transfer_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_job_summary.py b/src/oci/dts/models/transfer_job_summary.py index 3cb6ec0c8b..a57fae2837 100644 --- a/src/oci/dts/models/transfer_job_summary.py +++ b/src/oci/dts/models/transfer_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_package.py b/src/oci/dts/models/transfer_package.py index 9a6ca101b8..210788f024 100644 --- a/src/oci/dts/models/transfer_package.py +++ b/src/oci/dts/models/transfer_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/transfer_package_summary.py b/src/oci/dts/models/transfer_package_summary.py index 82b9cb115b..ecfa0fb6d2 100644 --- a/src/oci/dts/models/transfer_package_summary.py +++ b/src/oci/dts/models/transfer_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/update_transfer_appliance_details.py b/src/oci/dts/models/update_transfer_appliance_details.py index 83dd767624..0e8db55531 100644 --- a/src/oci/dts/models/update_transfer_appliance_details.py +++ b/src/oci/dts/models/update_transfer_appliance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/update_transfer_device_details.py b/src/oci/dts/models/update_transfer_device_details.py index 2950da1602..9cc64bd1f5 100644 --- a/src/oci/dts/models/update_transfer_device_details.py +++ b/src/oci/dts/models/update_transfer_device_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/update_transfer_job_details.py b/src/oci/dts/models/update_transfer_job_details.py index e8d9bc9e25..0e38f56d3e 100644 --- a/src/oci/dts/models/update_transfer_job_details.py +++ b/src/oci/dts/models/update_transfer_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/models/update_transfer_package_details.py b/src/oci/dts/models/update_transfer_package_details.py index 21b5619155..2bf3d70848 100644 --- a/src/oci/dts/models/update_transfer_package_details.py +++ b/src/oci/dts/models/update_transfer_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/dts/shipping_vendors_client.py b/src/oci/dts/shipping_vendors_client.py index f4e83e89cc..6ae3e51bf8 100644 --- a/src/oci/dts/shipping_vendors_client.py +++ b/src/oci/dts/shipping_vendors_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/shipping_vendors_client_composite_operations.py b/src/oci/dts/shipping_vendors_client_composite_operations.py index b7e9563e27..689523e64a 100644 --- a/src/oci/dts/shipping_vendors_client_composite_operations.py +++ b/src/oci/dts/shipping_vendors_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dts/transfer_appliance_client.py b/src/oci/dts/transfer_appliance_client.py index 4381e989d1..5eb500543c 100644 --- a/src/oci/dts/transfer_appliance_client.py +++ b/src/oci/dts/transfer_appliance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/transfer_appliance_client_composite_operations.py b/src/oci/dts/transfer_appliance_client_composite_operations.py index a504fea016..6eb58f7719 100644 --- a/src/oci/dts/transfer_appliance_client_composite_operations.py +++ b/src/oci/dts/transfer_appliance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dts/transfer_appliance_entitlement_client.py b/src/oci/dts/transfer_appliance_entitlement_client.py index 622721ddaa..87c9089450 100644 --- a/src/oci/dts/transfer_appliance_entitlement_client.py +++ b/src/oci/dts/transfer_appliance_entitlement_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/transfer_appliance_entitlement_client_composite_operations.py b/src/oci/dts/transfer_appliance_entitlement_client_composite_operations.py index d5cb27d9ce..5515da51f6 100644 --- a/src/oci/dts/transfer_appliance_entitlement_client_composite_operations.py +++ b/src/oci/dts/transfer_appliance_entitlement_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dts/transfer_device_client.py b/src/oci/dts/transfer_device_client.py index 1851d63c1b..526d5fe127 100644 --- a/src/oci/dts/transfer_device_client.py +++ b/src/oci/dts/transfer_device_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/transfer_device_client_composite_operations.py b/src/oci/dts/transfer_device_client_composite_operations.py index d8f2ecbf2f..8e525c152f 100644 --- a/src/oci/dts/transfer_device_client_composite_operations.py +++ b/src/oci/dts/transfer_device_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dts/transfer_job_client.py b/src/oci/dts/transfer_job_client.py index 62c20687c7..4212096f98 100644 --- a/src/oci/dts/transfer_job_client.py +++ b/src/oci/dts/transfer_job_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/transfer_job_client_composite_operations.py b/src/oci/dts/transfer_job_client_composite_operations.py index 71b4b83745..5f78822c34 100644 --- a/src/oci/dts/transfer_job_client_composite_operations.py +++ b/src/oci/dts/transfer_job_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/dts/transfer_package_client.py b/src/oci/dts/transfer_package_client.py index 6f51615254..2179f506b0 100644 --- a/src/oci/dts/transfer_package_client.py +++ b/src/oci/dts/transfer_package_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/dts/transfer_package_client_composite_operations.py b/src/oci/dts/transfer_package_client_composite_operations.py index c8e724ce37..ede5c76cc0 100644 --- a/src/oci/dts/transfer_package_client_composite_operations.py +++ b/src/oci/dts/transfer_package_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/email/__init__.py b/src/oci/email/__init__.py index 9904057aee..79774e4c8c 100644 --- a/src/oci/email/__init__.py +++ b/src/oci/email/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/email/email_client.py b/src/oci/email/email_client.py index 467431efbf..9fd507a877 100644 --- a/src/oci/email/email_client.py +++ b/src/oci/email/email_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/email/email_client_composite_operations.py b/src/oci/email/email_client_composite_operations.py index 19e2e229fe..5a3ab55e33 100644 --- a/src/oci/email/email_client_composite_operations.py +++ b/src/oci/email/email_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/email/models/__init__.py b/src/oci/email/models/__init__.py index 6339bbc7c1..fda2c3c24a 100644 --- a/src/oci/email/models/__init__.py +++ b/src/oci/email/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/email/models/change_sender_compartment_details.py b/src/oci/email/models/change_sender_compartment_details.py index 70ba901049..722a715bec 100644 --- a/src/oci/email/models/change_sender_compartment_details.py +++ b/src/oci/email/models/change_sender_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/create_sender_details.py b/src/oci/email/models/create_sender_details.py index 5dfebdf59e..adfafb143b 100644 --- a/src/oci/email/models/create_sender_details.py +++ b/src/oci/email/models/create_sender_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/create_suppression_details.py b/src/oci/email/models/create_suppression_details.py index 8b58eeaaf2..b293d0a2d0 100644 --- a/src/oci/email/models/create_suppression_details.py +++ b/src/oci/email/models/create_suppression_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/sender.py b/src/oci/email/models/sender.py index 2f8fb312bb..7be88ee9da 100644 --- a/src/oci/email/models/sender.py +++ b/src/oci/email/models/sender.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/sender_summary.py b/src/oci/email/models/sender_summary.py index 423df01350..ddc3bef98d 100644 --- a/src/oci/email/models/sender_summary.py +++ b/src/oci/email/models/sender_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/suppression.py b/src/oci/email/models/suppression.py index 373bc456b3..c98caf291c 100644 --- a/src/oci/email/models/suppression.py +++ b/src/oci/email/models/suppression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/suppression_summary.py b/src/oci/email/models/suppression_summary.py index e0c648f545..6490678885 100644 --- a/src/oci/email/models/suppression_summary.py +++ b/src/oci/email/models/suppression_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/email/models/update_sender_details.py b/src/oci/email/models/update_sender_details.py index deb18197cf..4ea5a598b3 100644 --- a/src/oci/email/models/update_sender_details.py +++ b/src/oci/email/models/update_sender_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/__init__.py b/src/oci/events/__init__.py index 5de20280cc..b35df35337 100644 --- a/src/oci/events/__init__.py +++ b/src/oci/events/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/events/events_client.py b/src/oci/events/events_client.py index f715ceffde..1f4d8adb6e 100644 --- a/src/oci/events/events_client.py +++ b/src/oci/events/events_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/events/events_client_composite_operations.py b/src/oci/events/events_client_composite_operations.py index 3844649a16..f02ca72c09 100644 --- a/src/oci/events/events_client_composite_operations.py +++ b/src/oci/events/events_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/events/models/__init__.py b/src/oci/events/models/__init__.py index b08a43015f..de4fdd4738 100644 --- a/src/oci/events/models/__init__.py +++ b/src/oci/events/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/events/models/action.py b/src/oci/events/models/action.py index 0cac43f7c9..ceed211760 100644 --- a/src/oci/events/models/action.py +++ b/src/oci/events/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/action_details.py b/src/oci/events/models/action_details.py index 23877b3d46..efa0c73d3c 100644 --- a/src/oci/events/models/action_details.py +++ b/src/oci/events/models/action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/action_details_list.py b/src/oci/events/models/action_details_list.py index f0df703cc6..e35e1df3ee 100644 --- a/src/oci/events/models/action_details_list.py +++ b/src/oci/events/models/action_details_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/action_list.py b/src/oci/events/models/action_list.py index 6815b16ac9..9d2202c0b3 100644 --- a/src/oci/events/models/action_list.py +++ b/src/oci/events/models/action_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/change_rule_compartment_details.py b/src/oci/events/models/change_rule_compartment_details.py index 3d375c4675..60f9e23a45 100644 --- a/src/oci/events/models/change_rule_compartment_details.py +++ b/src/oci/events/models/change_rule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/create_faa_s_action_details.py b/src/oci/events/models/create_faa_s_action_details.py index ea4c05e06e..fd9a15acca 100644 --- a/src/oci/events/models/create_faa_s_action_details.py +++ b/src/oci/events/models/create_faa_s_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action_details import ActionDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/create_notification_service_action_details.py b/src/oci/events/models/create_notification_service_action_details.py index c27ce28187..f0cf86e76c 100644 --- a/src/oci/events/models/create_notification_service_action_details.py +++ b/src/oci/events/models/create_notification_service_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action_details import ActionDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/create_rule_details.py b/src/oci/events/models/create_rule_details.py index 8fe06470cb..f04ad0f145 100644 --- a/src/oci/events/models/create_rule_details.py +++ b/src/oci/events/models/create_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/create_streaming_service_action_details.py b/src/oci/events/models/create_streaming_service_action_details.py index 1dd6419f0f..7df64d20c7 100644 --- a/src/oci/events/models/create_streaming_service_action_details.py +++ b/src/oci/events/models/create_streaming_service_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action_details import ActionDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/faa_s_action.py b/src/oci/events/models/faa_s_action.py index 117f8c3bc5..09cc3db959 100644 --- a/src/oci/events/models/faa_s_action.py +++ b/src/oci/events/models/faa_s_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action import Action from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/notification_service_action.py b/src/oci/events/models/notification_service_action.py index cccdf318d0..f258626670 100644 --- a/src/oci/events/models/notification_service_action.py +++ b/src/oci/events/models/notification_service_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action import Action from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/rule.py b/src/oci/events/models/rule.py index d3cfedd295..ed22099f98 100644 --- a/src/oci/events/models/rule.py +++ b/src/oci/events/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/rule_summary.py b/src/oci/events/models/rule_summary.py index a912ce8805..3917f03098 100644 --- a/src/oci/events/models/rule_summary.py +++ b/src/oci/events/models/rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/streaming_service_action.py b/src/oci/events/models/streaming_service_action.py index 36331828a5..829c1f998a 100644 --- a/src/oci/events/models/streaming_service_action.py +++ b/src/oci/events/models/streaming_service_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .action import Action from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/events/models/update_rule_details.py b/src/oci/events/models/update_rule_details.py index 3c55ab6486..ab8601fce5 100644 --- a/src/oci/events/models/update_rule_details.py +++ b/src/oci/events/models/update_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/exceptions.py b/src/oci/exceptions.py index 13b99a90cc..e712974bb6 100644 --- a/src/oci/exceptions.py +++ b/src/oci/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci._vendor.requests.exceptions import RequestException as BaseRequestException from oci._vendor.requests.exceptions import ConnectTimeout as BaseConnectTimeout diff --git a/src/oci/file_storage/__init__.py b/src/oci/file_storage/__init__.py index be3f2ec5f6..85bed14684 100644 --- a/src/oci/file_storage/__init__.py +++ b/src/oci/file_storage/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/file_storage/file_storage_client.py b/src/oci/file_storage/file_storage_client.py index 4ae665b437..dca9c31c2e 100644 --- a/src/oci/file_storage/file_storage_client.py +++ b/src/oci/file_storage/file_storage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/file_storage/file_storage_client_composite_operations.py b/src/oci/file_storage/file_storage_client_composite_operations.py index 0a27b1b1fc..155a911ba4 100644 --- a/src/oci/file_storage/file_storage_client_composite_operations.py +++ b/src/oci/file_storage/file_storage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/file_storage/models/__init__.py b/src/oci/file_storage/models/__init__.py index 9c5f09cb3c..047b499c3c 100644 --- a/src/oci/file_storage/models/__init__.py +++ b/src/oci/file_storage/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/file_storage/models/change_file_system_compartment_details.py b/src/oci/file_storage/models/change_file_system_compartment_details.py index 8100ae35d0..8e10f63e36 100644 --- a/src/oci/file_storage/models/change_file_system_compartment_details.py +++ b/src/oci/file_storage/models/change_file_system_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/change_mount_target_compartment_details.py b/src/oci/file_storage/models/change_mount_target_compartment_details.py index a44938981f..26cc878599 100644 --- a/src/oci/file_storage/models/change_mount_target_compartment_details.py +++ b/src/oci/file_storage/models/change_mount_target_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/client_options.py b/src/oci/file_storage/models/client_options.py index 5ca70b6efd..87608dffe1 100644 --- a/src/oci/file_storage/models/client_options.py +++ b/src/oci/file_storage/models/client_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/create_export_details.py b/src/oci/file_storage/models/create_export_details.py index 2d81665f3a..6cbe44a91a 100644 --- a/src/oci/file_storage/models/create_export_details.py +++ b/src/oci/file_storage/models/create_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/create_file_system_details.py b/src/oci/file_storage/models/create_file_system_details.py index dbdc789373..aa0828143f 100644 --- a/src/oci/file_storage/models/create_file_system_details.py +++ b/src/oci/file_storage/models/create_file_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/create_mount_target_details.py b/src/oci/file_storage/models/create_mount_target_details.py index 53c6f916c8..88c480d249 100644 --- a/src/oci/file_storage/models/create_mount_target_details.py +++ b/src/oci/file_storage/models/create_mount_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/create_snapshot_details.py b/src/oci/file_storage/models/create_snapshot_details.py index 6d752b802f..cbae2e9c22 100644 --- a/src/oci/file_storage/models/create_snapshot_details.py +++ b/src/oci/file_storage/models/create_snapshot_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/export.py b/src/oci/file_storage/models/export.py index e1c835e3dd..8cc5d21d02 100644 --- a/src/oci/file_storage/models/export.py +++ b/src/oci/file_storage/models/export.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/export_set.py b/src/oci/file_storage/models/export_set.py index d0ff70f6bc..cb89349ea2 100644 --- a/src/oci/file_storage/models/export_set.py +++ b/src/oci/file_storage/models/export_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/export_set_summary.py b/src/oci/file_storage/models/export_set_summary.py index 245f40c268..bd26985fbb 100644 --- a/src/oci/file_storage/models/export_set_summary.py +++ b/src/oci/file_storage/models/export_set_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/export_summary.py b/src/oci/file_storage/models/export_summary.py index 63d313d90e..98c8a15302 100644 --- a/src/oci/file_storage/models/export_summary.py +++ b/src/oci/file_storage/models/export_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/file_system.py b/src/oci/file_storage/models/file_system.py index c41d7517c8..d528d2f905 100644 --- a/src/oci/file_storage/models/file_system.py +++ b/src/oci/file_storage/models/file_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/file_system_summary.py b/src/oci/file_storage/models/file_system_summary.py index 14134e414d..ab5169f925 100644 --- a/src/oci/file_storage/models/file_system_summary.py +++ b/src/oci/file_storage/models/file_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/mount_target.py b/src/oci/file_storage/models/mount_target.py index fc6505204e..7b6cbd2d74 100644 --- a/src/oci/file_storage/models/mount_target.py +++ b/src/oci/file_storage/models/mount_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/mount_target_summary.py b/src/oci/file_storage/models/mount_target_summary.py index 89d35ddfa7..05b761a924 100644 --- a/src/oci/file_storage/models/mount_target_summary.py +++ b/src/oci/file_storage/models/mount_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/snapshot.py b/src/oci/file_storage/models/snapshot.py index d58844848f..7b2dfc4093 100644 --- a/src/oci/file_storage/models/snapshot.py +++ b/src/oci/file_storage/models/snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/snapshot_summary.py b/src/oci/file_storage/models/snapshot_summary.py index 47d9e1caeb..564000d958 100644 --- a/src/oci/file_storage/models/snapshot_summary.py +++ b/src/oci/file_storage/models/snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/update_export_details.py b/src/oci/file_storage/models/update_export_details.py index 3b8f2ca822..2227e5648f 100644 --- a/src/oci/file_storage/models/update_export_details.py +++ b/src/oci/file_storage/models/update_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/update_export_set_details.py b/src/oci/file_storage/models/update_export_set_details.py index ae2a3de5ee..3deac8ba06 100644 --- a/src/oci/file_storage/models/update_export_set_details.py +++ b/src/oci/file_storage/models/update_export_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/update_file_system_details.py b/src/oci/file_storage/models/update_file_system_details.py index 983ddc6b5a..7f6e517b6d 100644 --- a/src/oci/file_storage/models/update_file_system_details.py +++ b/src/oci/file_storage/models/update_file_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/update_mount_target_details.py b/src/oci/file_storage/models/update_mount_target_details.py index 73f40cd76e..c32dcba231 100644 --- a/src/oci/file_storage/models/update_mount_target_details.py +++ b/src/oci/file_storage/models/update_mount_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/file_storage/models/update_snapshot_details.py b/src/oci/file_storage/models/update_snapshot_details.py index 9ea091c502..aa98d7f0b8 100644 --- a/src/oci/file_storage/models/update_snapshot_details.py +++ b/src/oci/file_storage/models/update_snapshot_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/fips.py b/src/oci/fips.py index 9c70af1786..48b4c02b86 100644 --- a/src/oci/fips.py +++ b/src/oci/fips.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import sys import ctypes diff --git a/src/oci/functions/__init__.py b/src/oci/functions/__init__.py index a113236349..667b77dfeb 100644 --- a/src/oci/functions/__init__.py +++ b/src/oci/functions/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/functions/functions_invoke_client.py b/src/oci/functions/functions_invoke_client.py index fb295b1f36..02c243dfc2 100644 --- a/src/oci/functions/functions_invoke_client.py +++ b/src/oci/functions/functions_invoke_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/functions/functions_invoke_client_composite_operations.py b/src/oci/functions/functions_invoke_client_composite_operations.py index 847c2f3b38..e49d0f15af 100644 --- a/src/oci/functions/functions_invoke_client_composite_operations.py +++ b/src/oci/functions/functions_invoke_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/functions/functions_management_client.py b/src/oci/functions/functions_management_client.py index 033a0678a5..49d642de87 100644 --- a/src/oci/functions/functions_management_client.py +++ b/src/oci/functions/functions_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/functions/functions_management_client_composite_operations.py b/src/oci/functions/functions_management_client_composite_operations.py index 365d1ab9ee..327a5074f3 100644 --- a/src/oci/functions/functions_management_client_composite_operations.py +++ b/src/oci/functions/functions_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/functions/models/__init__.py b/src/oci/functions/models/__init__.py index f879b61f62..b83be979aa 100644 --- a/src/oci/functions/models/__init__.py +++ b/src/oci/functions/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/functions/models/application.py b/src/oci/functions/models/application.py index 18d1ea0fd0..b8839d36ee 100644 --- a/src/oci/functions/models/application.py +++ b/src/oci/functions/models/application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/application_summary.py b/src/oci/functions/models/application_summary.py index a0d42376e3..b941171a01 100644 --- a/src/oci/functions/models/application_summary.py +++ b/src/oci/functions/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/change_application_compartment_details.py b/src/oci/functions/models/change_application_compartment_details.py index fda380c9d4..257afeab81 100644 --- a/src/oci/functions/models/change_application_compartment_details.py +++ b/src/oci/functions/models/change_application_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/create_application_details.py b/src/oci/functions/models/create_application_details.py index b0d7431609..b8dca43100 100644 --- a/src/oci/functions/models/create_application_details.py +++ b/src/oci/functions/models/create_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/create_function_details.py b/src/oci/functions/models/create_function_details.py index 02b8d6c7d7..29d2fcd878 100644 --- a/src/oci/functions/models/create_function_details.py +++ b/src/oci/functions/models/create_function_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/function.py b/src/oci/functions/models/function.py index 2679a1ed86..ecac4226da 100644 --- a/src/oci/functions/models/function.py +++ b/src/oci/functions/models/function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/function_summary.py b/src/oci/functions/models/function_summary.py index e3f125fc07..13666fb91f 100644 --- a/src/oci/functions/models/function_summary.py +++ b/src/oci/functions/models/function_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/update_application_details.py b/src/oci/functions/models/update_application_details.py index ed867ca40e..daa1e51c80 100644 --- a/src/oci/functions/models/update_application_details.py +++ b/src/oci/functions/models/update_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/functions/models/update_function_details.py b/src/oci/functions/models/update_function_details.py index f9fe0d96a9..4aeeb18c9d 100644 --- a/src/oci/functions/models/update_function_details.py +++ b/src/oci/functions/models/update_function_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/__init__.py b/src/oci/healthchecks/__init__.py index e992dc3d41..cc02fbee3e 100644 --- a/src/oci/healthchecks/__init__.py +++ b/src/oci/healthchecks/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/healthchecks/health_checks_client.py b/src/oci/healthchecks/health_checks_client.py index 89acae7307..f9256a6480 100644 --- a/src/oci/healthchecks/health_checks_client.py +++ b/src/oci/healthchecks/health_checks_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/healthchecks/health_checks_client_composite_operations.py b/src/oci/healthchecks/health_checks_client_composite_operations.py index d4b957c5d6..478eb136e4 100644 --- a/src/oci/healthchecks/health_checks_client_composite_operations.py +++ b/src/oci/healthchecks/health_checks_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/healthchecks/models/__init__.py b/src/oci/healthchecks/models/__init__.py index 4d324172ee..b066f04a4a 100644 --- a/src/oci/healthchecks/models/__init__.py +++ b/src/oci/healthchecks/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/healthchecks/models/change_http_monitor_compartment_details.py b/src/oci/healthchecks/models/change_http_monitor_compartment_details.py index 914aecd59b..6305065c0d 100644 --- a/src/oci/healthchecks/models/change_http_monitor_compartment_details.py +++ b/src/oci/healthchecks/models/change_http_monitor_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/change_ping_monitor_compartment_details.py b/src/oci/healthchecks/models/change_ping_monitor_compartment_details.py index 598be20977..3376d93e2a 100644 --- a/src/oci/healthchecks/models/change_ping_monitor_compartment_details.py +++ b/src/oci/healthchecks/models/change_ping_monitor_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/connection.py b/src/oci/healthchecks/models/connection.py index 1fddf95a17..4cc792c234 100644 --- a/src/oci/healthchecks/models/connection.py +++ b/src/oci/healthchecks/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/create_http_monitor_details.py b/src/oci/healthchecks/models/create_http_monitor_details.py index 58982caf06..e4b065cf21 100644 --- a/src/oci/healthchecks/models/create_http_monitor_details.py +++ b/src/oci/healthchecks/models/create_http_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/create_on_demand_http_probe_details.py b/src/oci/healthchecks/models/create_on_demand_http_probe_details.py index 3966e37964..aed7fb62be 100644 --- a/src/oci/healthchecks/models/create_on_demand_http_probe_details.py +++ b/src/oci/healthchecks/models/create_on_demand_http_probe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/create_on_demand_ping_probe_details.py b/src/oci/healthchecks/models/create_on_demand_ping_probe_details.py index eae0e420da..2932b39351 100644 --- a/src/oci/healthchecks/models/create_on_demand_ping_probe_details.py +++ b/src/oci/healthchecks/models/create_on_demand_ping_probe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/create_ping_monitor_details.py b/src/oci/healthchecks/models/create_ping_monitor_details.py index 30cdfba9b8..20949bc99f 100644 --- a/src/oci/healthchecks/models/create_ping_monitor_details.py +++ b/src/oci/healthchecks/models/create_ping_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/dns.py b/src/oci/healthchecks/models/dns.py index 2cebd6429f..37ed05a1dc 100644 --- a/src/oci/healthchecks/models/dns.py +++ b/src/oci/healthchecks/models/dns.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/geolocation.py b/src/oci/healthchecks/models/geolocation.py index a503cb6d0e..77cec7ea75 100644 --- a/src/oci/healthchecks/models/geolocation.py +++ b/src/oci/healthchecks/models/geolocation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/health_checks_vantage_point_summary.py b/src/oci/healthchecks/models/health_checks_vantage_point_summary.py index 6f0efb1cf5..90f068bb53 100644 --- a/src/oci/healthchecks/models/health_checks_vantage_point_summary.py +++ b/src/oci/healthchecks/models/health_checks_vantage_point_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/http_monitor.py b/src/oci/healthchecks/models/http_monitor.py index 2c480728c5..0861bcd7df 100644 --- a/src/oci/healthchecks/models/http_monitor.py +++ b/src/oci/healthchecks/models/http_monitor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/http_monitor_summary.py b/src/oci/healthchecks/models/http_monitor_summary.py index 3781dbf442..cb57be83d4 100644 --- a/src/oci/healthchecks/models/http_monitor_summary.py +++ b/src/oci/healthchecks/models/http_monitor_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/http_probe.py b/src/oci/healthchecks/models/http_probe.py index 98ac104a23..757f2da64a 100644 --- a/src/oci/healthchecks/models/http_probe.py +++ b/src/oci/healthchecks/models/http_probe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/http_probe_result_summary.py b/src/oci/healthchecks/models/http_probe_result_summary.py index b7b9505d21..2357d4a0ab 100644 --- a/src/oci/healthchecks/models/http_probe_result_summary.py +++ b/src/oci/healthchecks/models/http_probe_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/ping_monitor.py b/src/oci/healthchecks/models/ping_monitor.py index d387cf8eeb..8f4c6f1e86 100644 --- a/src/oci/healthchecks/models/ping_monitor.py +++ b/src/oci/healthchecks/models/ping_monitor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/ping_monitor_summary.py b/src/oci/healthchecks/models/ping_monitor_summary.py index f0f0447bd9..5a45f34190 100644 --- a/src/oci/healthchecks/models/ping_monitor_summary.py +++ b/src/oci/healthchecks/models/ping_monitor_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/ping_probe.py b/src/oci/healthchecks/models/ping_probe.py index db4951d992..d3893673ac 100644 --- a/src/oci/healthchecks/models/ping_probe.py +++ b/src/oci/healthchecks/models/ping_probe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/ping_probe_result_summary.py b/src/oci/healthchecks/models/ping_probe_result_summary.py index 0e80a7e5b2..0ea4a549ab 100644 --- a/src/oci/healthchecks/models/ping_probe_result_summary.py +++ b/src/oci/healthchecks/models/ping_probe_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/routing.py b/src/oci/healthchecks/models/routing.py index a1f421eb7a..e01d3aa4e7 100644 --- a/src/oci/healthchecks/models/routing.py +++ b/src/oci/healthchecks/models/routing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/tcp_connection.py b/src/oci/healthchecks/models/tcp_connection.py index 14ad11df4a..0eaff4ca20 100644 --- a/src/oci/healthchecks/models/tcp_connection.py +++ b/src/oci/healthchecks/models/tcp_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/update_http_monitor_details.py b/src/oci/healthchecks/models/update_http_monitor_details.py index 4ef5f413e9..e1f5160d6d 100644 --- a/src/oci/healthchecks/models/update_http_monitor_details.py +++ b/src/oci/healthchecks/models/update_http_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/healthchecks/models/update_ping_monitor_details.py b/src/oci/healthchecks/models/update_ping_monitor_details.py index e1f02223a0..c9ef6baf2f 100644 --- a/src/oci/healthchecks/models/update_ping_monitor_details.py +++ b/src/oci/healthchecks/models/update_ping_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/__init__.py b/src/oci/identity/__init__.py index d5949875d4..37772802ec 100644 --- a/src/oci/identity/__init__.py +++ b/src/oci/identity/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/identity/identity_client.py b/src/oci/identity/identity_client.py index 7d925a0306..140df5b6fe 100644 --- a/src/oci/identity/identity_client.py +++ b/src/oci/identity/identity_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/identity/identity_client_composite_operations.py b/src/oci/identity/identity_client_composite_operations.py index deb9b56204..bb9adec213 100644 --- a/src/oci/identity/identity_client_composite_operations.py +++ b/src/oci/identity/identity_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/identity/models/__init__.py b/src/oci/identity/models/__init__.py index f1aafb27df..d173a1f970 100644 --- a/src/oci/identity/models/__init__.py +++ b/src/oci/identity/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/identity/models/add_user_to_group_details.py b/src/oci/identity/models/add_user_to_group_details.py index 93508bacbf..068cde940a 100644 --- a/src/oci/identity/models/add_user_to_group_details.py +++ b/src/oci/identity/models/add_user_to_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/api_key.py b/src/oci/identity/models/api_key.py index a1c41fc07f..839d2361e0 100644 --- a/src/oci/identity/models/api_key.py +++ b/src/oci/identity/models/api_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/auth_token.py b/src/oci/identity/models/auth_token.py index 1db3e1a1d1..c58a1595b3 100644 --- a/src/oci/identity/models/auth_token.py +++ b/src/oci/identity/models/auth_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/authentication_policy.py b/src/oci/identity/models/authentication_policy.py index 72e0e100fa..51999b017d 100644 --- a/src/oci/identity/models/authentication_policy.py +++ b/src/oci/identity/models/authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/availability_domain.py b/src/oci/identity/models/availability_domain.py index 57ac5ebc35..d929a81dc4 100644 --- a/src/oci/identity/models/availability_domain.py +++ b/src/oci/identity/models/availability_domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/base_tag_definition_validator.py b/src/oci/identity/models/base_tag_definition_validator.py index ff977ca2d0..5cc4ad01e9 100644 --- a/src/oci/identity/models/base_tag_definition_validator.py +++ b/src/oci/identity/models/base_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/change_tag_namespace_compartment_detail.py b/src/oci/identity/models/change_tag_namespace_compartment_detail.py index d09e842e1f..cded3da815 100644 --- a/src/oci/identity/models/change_tag_namespace_compartment_detail.py +++ b/src/oci/identity/models/change_tag_namespace_compartment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/compartment.py b/src/oci/identity/models/compartment.py index c568651e5a..16830f2f50 100644 --- a/src/oci/identity/models/compartment.py +++ b/src/oci/identity/models/compartment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_api_key_details.py b/src/oci/identity/models/create_api_key_details.py index 46930077be..89ff19f32b 100644 --- a/src/oci/identity/models/create_api_key_details.py +++ b/src/oci/identity/models/create_api_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_auth_token_details.py b/src/oci/identity/models/create_auth_token_details.py index aba060b1dc..e63ddfb8b5 100644 --- a/src/oci/identity/models/create_auth_token_details.py +++ b/src/oci/identity/models/create_auth_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_compartment_details.py b/src/oci/identity/models/create_compartment_details.py index 79f801087a..14aa3e8d44 100644 --- a/src/oci/identity/models/create_compartment_details.py +++ b/src/oci/identity/models/create_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_customer_secret_key_details.py b/src/oci/identity/models/create_customer_secret_key_details.py index 573fc0b9bb..b6134feaf1 100644 --- a/src/oci/identity/models/create_customer_secret_key_details.py +++ b/src/oci/identity/models/create_customer_secret_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_dynamic_group_details.py b/src/oci/identity/models/create_dynamic_group_details.py index 69e9cb0c2d..bab2167f9c 100644 --- a/src/oci/identity/models/create_dynamic_group_details.py +++ b/src/oci/identity/models/create_dynamic_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_group_details.py b/src/oci/identity/models/create_group_details.py index 11dd564b05..b4e68abc7b 100644 --- a/src/oci/identity/models/create_group_details.py +++ b/src/oci/identity/models/create_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_identity_provider_details.py b/src/oci/identity/models/create_identity_provider_details.py index 034162e7cd..2b65e619d2 100644 --- a/src/oci/identity/models/create_identity_provider_details.py +++ b/src/oci/identity/models/create_identity_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_idp_group_mapping_details.py b/src/oci/identity/models/create_idp_group_mapping_details.py index 9fac79f7a8..c6084ad55b 100644 --- a/src/oci/identity/models/create_idp_group_mapping_details.py +++ b/src/oci/identity/models/create_idp_group_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_policy_details.py b/src/oci/identity/models/create_policy_details.py index 681e35660e..b18d3f9d1b 100644 --- a/src/oci/identity/models/create_policy_details.py +++ b/src/oci/identity/models/create_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_region_subscription_details.py b/src/oci/identity/models/create_region_subscription_details.py index 953493a223..4374dce254 100644 --- a/src/oci/identity/models/create_region_subscription_details.py +++ b/src/oci/identity/models/create_region_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_saml2_identity_provider_details.py b/src/oci/identity/models/create_saml2_identity_provider_details.py index 3791ec1e9d..1f564ba8dd 100644 --- a/src/oci/identity/models/create_saml2_identity_provider_details.py +++ b/src/oci/identity/models/create_saml2_identity_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_identity_provider_details import CreateIdentityProviderDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_smtp_credential_details.py b/src/oci/identity/models/create_smtp_credential_details.py index fbb6f9cab7..0a94cbbe16 100644 --- a/src/oci/identity/models/create_smtp_credential_details.py +++ b/src/oci/identity/models/create_smtp_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_swift_password_details.py b/src/oci/identity/models/create_swift_password_details.py index 422f93faf6..4a55478a5a 100644 --- a/src/oci/identity/models/create_swift_password_details.py +++ b/src/oci/identity/models/create_swift_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_tag_default_details.py b/src/oci/identity/models/create_tag_default_details.py index e22b2e124f..5be6a2ed00 100644 --- a/src/oci/identity/models/create_tag_default_details.py +++ b/src/oci/identity/models/create_tag_default_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_tag_details.py b/src/oci/identity/models/create_tag_details.py index d362afe798..cc86ce9ebd 100644 --- a/src/oci/identity/models/create_tag_details.py +++ b/src/oci/identity/models/create_tag_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_tag_namespace_details.py b/src/oci/identity/models/create_tag_namespace_details.py index 60e49e0ede..703dfad2b3 100644 --- a/src/oci/identity/models/create_tag_namespace_details.py +++ b/src/oci/identity/models/create_tag_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/create_user_details.py b/src/oci/identity/models/create_user_details.py index bd40b5d175..1a84b95518 100644 --- a/src/oci/identity/models/create_user_details.py +++ b/src/oci/identity/models/create_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/customer_secret_key.py b/src/oci/identity/models/customer_secret_key.py index f674396aee..e56af685eb 100644 --- a/src/oci/identity/models/customer_secret_key.py +++ b/src/oci/identity/models/customer_secret_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/customer_secret_key_summary.py b/src/oci/identity/models/customer_secret_key_summary.py index aedccb8d5f..b65e0498d2 100644 --- a/src/oci/identity/models/customer_secret_key_summary.py +++ b/src/oci/identity/models/customer_secret_key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/default_tag_definition_validator.py b/src/oci/identity/models/default_tag_definition_validator.py index abac980915..d922758121 100644 --- a/src/oci/identity/models/default_tag_definition_validator.py +++ b/src/oci/identity/models/default_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .base_tag_definition_validator import BaseTagDefinitionValidator from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/dynamic_group.py b/src/oci/identity/models/dynamic_group.py index 2fae4a6fac..97d45f3986 100644 --- a/src/oci/identity/models/dynamic_group.py +++ b/src/oci/identity/models/dynamic_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/enum_tag_definition_validator.py b/src/oci/identity/models/enum_tag_definition_validator.py index 0a7871a24a..1f625cd34c 100644 --- a/src/oci/identity/models/enum_tag_definition_validator.py +++ b/src/oci/identity/models/enum_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .base_tag_definition_validator import BaseTagDefinitionValidator from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/fault_domain.py b/src/oci/identity/models/fault_domain.py index 33bcd1bd20..f1e4469a04 100644 --- a/src/oci/identity/models/fault_domain.py +++ b/src/oci/identity/models/fault_domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/group.py b/src/oci/identity/models/group.py index c27dcf9d17..032a60ba01 100644 --- a/src/oci/identity/models/group.py +++ b/src/oci/identity/models/group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/identity_provider.py b/src/oci/identity/models/identity_provider.py index f50bfcaf11..2ac66fd59f 100644 --- a/src/oci/identity/models/identity_provider.py +++ b/src/oci/identity/models/identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/identity_provider_group_summary.py b/src/oci/identity/models/identity_provider_group_summary.py index 29cd2bf3b0..47884a9afe 100644 --- a/src/oci/identity/models/identity_provider_group_summary.py +++ b/src/oci/identity/models/identity_provider_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/idp_group_mapping.py b/src/oci/identity/models/idp_group_mapping.py index 4a52ff8656..b44cf5614f 100644 --- a/src/oci/identity/models/idp_group_mapping.py +++ b/src/oci/identity/models/idp_group_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/mfa_totp_device.py b/src/oci/identity/models/mfa_totp_device.py index aba6829cba..fb250b42ae 100644 --- a/src/oci/identity/models/mfa_totp_device.py +++ b/src/oci/identity/models/mfa_totp_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/mfa_totp_device_summary.py b/src/oci/identity/models/mfa_totp_device_summary.py index b63412b746..7e974097d2 100644 --- a/src/oci/identity/models/mfa_totp_device_summary.py +++ b/src/oci/identity/models/mfa_totp_device_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/mfa_totp_token.py b/src/oci/identity/models/mfa_totp_token.py index ca5ca0b33b..a0616e3cf4 100644 --- a/src/oci/identity/models/mfa_totp_token.py +++ b/src/oci/identity/models/mfa_totp_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/move_compartment_details.py b/src/oci/identity/models/move_compartment_details.py index c3452ea45b..660d28a57d 100644 --- a/src/oci/identity/models/move_compartment_details.py +++ b/src/oci/identity/models/move_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/password_policy.py b/src/oci/identity/models/password_policy.py index 6e19f43331..1bc7838c67 100644 --- a/src/oci/identity/models/password_policy.py +++ b/src/oci/identity/models/password_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/policy.py b/src/oci/identity/models/policy.py index 5461a06846..efd0053cf2 100644 --- a/src/oci/identity/models/policy.py +++ b/src/oci/identity/models/policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/region.py b/src/oci/identity/models/region.py index f5d07d4138..30cc084767 100644 --- a/src/oci/identity/models/region.py +++ b/src/oci/identity/models/region.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/region_subscription.py b/src/oci/identity/models/region_subscription.py index a4c801ad7e..5c0ce1db47 100644 --- a/src/oci/identity/models/region_subscription.py +++ b/src/oci/identity/models/region_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/saml2_identity_provider.py b/src/oci/identity/models/saml2_identity_provider.py index 4142929f3f..4d04060c41 100644 --- a/src/oci/identity/models/saml2_identity_provider.py +++ b/src/oci/identity/models/saml2_identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .identity_provider import IdentityProvider from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/scim_client_credentials.py b/src/oci/identity/models/scim_client_credentials.py index 9bcfa38fca..8a11452db5 100644 --- a/src/oci/identity/models/scim_client_credentials.py +++ b/src/oci/identity/models/scim_client_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/smtp_credential.py b/src/oci/identity/models/smtp_credential.py index 7476555d15..69b95e4ac9 100644 --- a/src/oci/identity/models/smtp_credential.py +++ b/src/oci/identity/models/smtp_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/smtp_credential_summary.py b/src/oci/identity/models/smtp_credential_summary.py index 60de9d4288..d2418a1020 100644 --- a/src/oci/identity/models/smtp_credential_summary.py +++ b/src/oci/identity/models/smtp_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/swift_password.py b/src/oci/identity/models/swift_password.py index ccc304d08f..b0ec9663c6 100644 --- a/src/oci/identity/models/swift_password.py +++ b/src/oci/identity/models/swift_password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag.py b/src/oci/identity/models/tag.py index 907c939f61..af254f5945 100644 --- a/src/oci/identity/models/tag.py +++ b/src/oci/identity/models/tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag_default.py b/src/oci/identity/models/tag_default.py index aeebd20259..03e75c8b7f 100644 --- a/src/oci/identity/models/tag_default.py +++ b/src/oci/identity/models/tag_default.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag_default_summary.py b/src/oci/identity/models/tag_default_summary.py index eefde9c8a9..738ba7ffd5 100644 --- a/src/oci/identity/models/tag_default_summary.py +++ b/src/oci/identity/models/tag_default_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag_namespace.py b/src/oci/identity/models/tag_namespace.py index 5711386978..267fd6a890 100644 --- a/src/oci/identity/models/tag_namespace.py +++ b/src/oci/identity/models/tag_namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag_namespace_summary.py b/src/oci/identity/models/tag_namespace_summary.py index f95423c460..f11221913b 100644 --- a/src/oci/identity/models/tag_namespace_summary.py +++ b/src/oci/identity/models/tag_namespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tag_summary.py b/src/oci/identity/models/tag_summary.py index 676d810987..3606858846 100644 --- a/src/oci/identity/models/tag_summary.py +++ b/src/oci/identity/models/tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tagging_work_request.py b/src/oci/identity/models/tagging_work_request.py index 12d64c849a..ea3373770b 100644 --- a/src/oci/identity/models/tagging_work_request.py +++ b/src/oci/identity/models/tagging_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tagging_work_request_error_summary.py b/src/oci/identity/models/tagging_work_request_error_summary.py index a74a28051f..86ba2f9098 100644 --- a/src/oci/identity/models/tagging_work_request_error_summary.py +++ b/src/oci/identity/models/tagging_work_request_error_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tagging_work_request_log_summary.py b/src/oci/identity/models/tagging_work_request_log_summary.py index 3a493d9d28..51921a8449 100644 --- a/src/oci/identity/models/tagging_work_request_log_summary.py +++ b/src/oci/identity/models/tagging_work_request_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tagging_work_request_summary.py b/src/oci/identity/models/tagging_work_request_summary.py index bb5a1caa68..c07d806be8 100644 --- a/src/oci/identity/models/tagging_work_request_summary.py +++ b/src/oci/identity/models/tagging_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/tenancy.py b/src/oci/identity/models/tenancy.py index 693e490dd5..2d5de569cc 100644 --- a/src/oci/identity/models/tenancy.py +++ b/src/oci/identity/models/tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/ui_password.py b/src/oci/identity/models/ui_password.py index 99224f354e..3f46328a66 100644 --- a/src/oci/identity/models/ui_password.py +++ b/src/oci/identity/models/ui_password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/ui_password_information.py b/src/oci/identity/models/ui_password_information.py index 17a4b5a561..58893b0a64 100644 --- a/src/oci/identity/models/ui_password_information.py +++ b/src/oci/identity/models/ui_password_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_auth_token_details.py b/src/oci/identity/models/update_auth_token_details.py index e732014d9a..3877fc41db 100644 --- a/src/oci/identity/models/update_auth_token_details.py +++ b/src/oci/identity/models/update_auth_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_authentication_policy_details.py b/src/oci/identity/models/update_authentication_policy_details.py index 95344ed711..bb41858344 100644 --- a/src/oci/identity/models/update_authentication_policy_details.py +++ b/src/oci/identity/models/update_authentication_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_compartment_details.py b/src/oci/identity/models/update_compartment_details.py index 3899766066..8201252e6e 100644 --- a/src/oci/identity/models/update_compartment_details.py +++ b/src/oci/identity/models/update_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_customer_secret_key_details.py b/src/oci/identity/models/update_customer_secret_key_details.py index 78c19e5725..6141ccac20 100644 --- a/src/oci/identity/models/update_customer_secret_key_details.py +++ b/src/oci/identity/models/update_customer_secret_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_dynamic_group_details.py b/src/oci/identity/models/update_dynamic_group_details.py index 8955679b9c..cb43978260 100644 --- a/src/oci/identity/models/update_dynamic_group_details.py +++ b/src/oci/identity/models/update_dynamic_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_group_details.py b/src/oci/identity/models/update_group_details.py index 272873357c..bf39180aa5 100644 --- a/src/oci/identity/models/update_group_details.py +++ b/src/oci/identity/models/update_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_identity_provider_details.py b/src/oci/identity/models/update_identity_provider_details.py index b30da07159..e47fa763c9 100644 --- a/src/oci/identity/models/update_identity_provider_details.py +++ b/src/oci/identity/models/update_identity_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_idp_group_mapping_details.py b/src/oci/identity/models/update_idp_group_mapping_details.py index b48abbb227..f3173472db 100644 --- a/src/oci/identity/models/update_idp_group_mapping_details.py +++ b/src/oci/identity/models/update_idp_group_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_policy_details.py b/src/oci/identity/models/update_policy_details.py index 3a19021a90..35ca97ba9d 100644 --- a/src/oci/identity/models/update_policy_details.py +++ b/src/oci/identity/models/update_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_saml2_identity_provider_details.py b/src/oci/identity/models/update_saml2_identity_provider_details.py index 1ba754dd10..657835d485 100644 --- a/src/oci/identity/models/update_saml2_identity_provider_details.py +++ b/src/oci/identity/models/update_saml2_identity_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .update_identity_provider_details import UpdateIdentityProviderDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_smtp_credential_details.py b/src/oci/identity/models/update_smtp_credential_details.py index ab2246bbb7..80eb07434e 100644 --- a/src/oci/identity/models/update_smtp_credential_details.py +++ b/src/oci/identity/models/update_smtp_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_state_details.py b/src/oci/identity/models/update_state_details.py index 5b3cb8560e..6af9661251 100644 --- a/src/oci/identity/models/update_state_details.py +++ b/src/oci/identity/models/update_state_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_swift_password_details.py b/src/oci/identity/models/update_swift_password_details.py index a77e448fea..8eaca1a167 100644 --- a/src/oci/identity/models/update_swift_password_details.py +++ b/src/oci/identity/models/update_swift_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_tag_default_details.py b/src/oci/identity/models/update_tag_default_details.py index 0aafe999a9..4a54678c1c 100644 --- a/src/oci/identity/models/update_tag_default_details.py +++ b/src/oci/identity/models/update_tag_default_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_tag_details.py b/src/oci/identity/models/update_tag_details.py index 0117ad45b0..21a2093a4c 100644 --- a/src/oci/identity/models/update_tag_details.py +++ b/src/oci/identity/models/update_tag_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_tag_namespace_details.py b/src/oci/identity/models/update_tag_namespace_details.py index fb6a614e74..201529389c 100644 --- a/src/oci/identity/models/update_tag_namespace_details.py +++ b/src/oci/identity/models/update_tag_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_user_capabilities_details.py b/src/oci/identity/models/update_user_capabilities_details.py index cad52bccf5..a6fb5c9bd3 100644 --- a/src/oci/identity/models/update_user_capabilities_details.py +++ b/src/oci/identity/models/update_user_capabilities_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/update_user_details.py b/src/oci/identity/models/update_user_details.py index 75248b5d9c..b8c0321567 100644 --- a/src/oci/identity/models/update_user_details.py +++ b/src/oci/identity/models/update_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/user.py b/src/oci/identity/models/user.py index 0a5c7f5ad0..cdc1104bf5 100644 --- a/src/oci/identity/models/user.py +++ b/src/oci/identity/models/user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/user_capabilities.py b/src/oci/identity/models/user_capabilities.py index 4194654734..b506b9216c 100644 --- a/src/oci/identity/models/user_capabilities.py +++ b/src/oci/identity/models/user_capabilities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/user_group_membership.py b/src/oci/identity/models/user_group_membership.py index 64d5d4b2df..d90bfd33d1 100644 --- a/src/oci/identity/models/user_group_membership.py +++ b/src/oci/identity/models/user_group_membership.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/work_request.py b/src/oci/identity/models/work_request.py index c9a44c3d05..404b1e9d09 100644 --- a/src/oci/identity/models/work_request.py +++ b/src/oci/identity/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/work_request_error.py b/src/oci/identity/models/work_request_error.py index c4c7ab9439..3e17027363 100644 --- a/src/oci/identity/models/work_request_error.py +++ b/src/oci/identity/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/work_request_log_entry.py b/src/oci/identity/models/work_request_log_entry.py index ef2fbb493c..a59e6fc3ad 100644 --- a/src/oci/identity/models/work_request_log_entry.py +++ b/src/oci/identity/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/work_request_resource.py b/src/oci/identity/models/work_request_resource.py index 67a804427e..2035da765c 100644 --- a/src/oci/identity/models/work_request_resource.py +++ b/src/oci/identity/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/identity/models/work_request_summary.py b/src/oci/identity/models/work_request_summary.py index a895f5a191..b6e48997c8 100644 --- a/src/oci/identity/models/work_request_summary.py +++ b/src/oci/identity/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/__init__.py b/src/oci/integration/__init__.py index b4301e7656..14127761df 100644 --- a/src/oci/integration/__init__.py +++ b/src/oci/integration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/integration/integration_instance_client.py b/src/oci/integration/integration_instance_client.py index 6a2b8b8271..445b689f3c 100644 --- a/src/oci/integration/integration_instance_client.py +++ b/src/oci/integration/integration_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/integration/integration_instance_client_composite_operations.py b/src/oci/integration/integration_instance_client_composite_operations.py index b476c3e0e7..3ba0d543ab 100644 --- a/src/oci/integration/integration_instance_client_composite_operations.py +++ b/src/oci/integration/integration_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/integration/models/__init__.py b/src/oci/integration/models/__init__.py index adf217a4c2..b2a56f03f1 100644 --- a/src/oci/integration/models/__init__.py +++ b/src/oci/integration/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/integration/models/change_integration_instance_compartment_details.py b/src/oci/integration/models/change_integration_instance_compartment_details.py index 5de03e61ed..ba67d7ec8e 100644 --- a/src/oci/integration/models/change_integration_instance_compartment_details.py +++ b/src/oci/integration/models/change_integration_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/create_integration_instance_details.py b/src/oci/integration/models/create_integration_instance_details.py index c6f43bd45f..a88cfc8443 100644 --- a/src/oci/integration/models/create_integration_instance_details.py +++ b/src/oci/integration/models/create_integration_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/integration_instance.py b/src/oci/integration/models/integration_instance.py index 9182ea18fd..04cf26aac5 100644 --- a/src/oci/integration/models/integration_instance.py +++ b/src/oci/integration/models/integration_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/integration_instance_summary.py b/src/oci/integration/models/integration_instance_summary.py index b76f93a525..b0a240a24f 100644 --- a/src/oci/integration/models/integration_instance_summary.py +++ b/src/oci/integration/models/integration_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/update_integration_instance_details.py b/src/oci/integration/models/update_integration_instance_details.py index c60afa4339..c1adef9f5b 100644 --- a/src/oci/integration/models/update_integration_instance_details.py +++ b/src/oci/integration/models/update_integration_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/work_request.py b/src/oci/integration/models/work_request.py index 8175362e44..e6ff339508 100644 --- a/src/oci/integration/models/work_request.py +++ b/src/oci/integration/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/work_request_error.py b/src/oci/integration/models/work_request_error.py index 3efa09ab87..23e6e07ac2 100644 --- a/src/oci/integration/models/work_request_error.py +++ b/src/oci/integration/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/work_request_log_entry.py b/src/oci/integration/models/work_request_log_entry.py index 855ce2f3db..5d87dd440d 100644 --- a/src/oci/integration/models/work_request_log_entry.py +++ b/src/oci/integration/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/work_request_resource.py b/src/oci/integration/models/work_request_resource.py index 74de1c35ab..34e52bf5a9 100644 --- a/src/oci/integration/models/work_request_resource.py +++ b/src/oci/integration/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/integration/models/work_request_summary.py b/src/oci/integration/models/work_request_summary.py index adf2d5ccec..0f359b1145 100644 --- a/src/oci/integration/models/work_request_summary.py +++ b/src/oci/integration/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/__init__.py b/src/oci/key_management/__init__.py index e2f4294b86..f9bb9d6173 100644 --- a/src/oci/key_management/__init__.py +++ b/src/oci/key_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/key_management/kms_crypto_client.py b/src/oci/key_management/kms_crypto_client.py index 52bb311ec3..79d7a0b85e 100644 --- a/src/oci/key_management/kms_crypto_client.py +++ b/src/oci/key_management/kms_crypto_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/key_management/kms_crypto_client_composite_operations.py b/src/oci/key_management/kms_crypto_client_composite_operations.py index a8f6a54488..402e7f3a81 100644 --- a/src/oci/key_management/kms_crypto_client_composite_operations.py +++ b/src/oci/key_management/kms_crypto_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/key_management/kms_management_client.py b/src/oci/key_management/kms_management_client.py index 92dfaeb416..f1f5fa3c3e 100644 --- a/src/oci/key_management/kms_management_client.py +++ b/src/oci/key_management/kms_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/key_management/kms_management_client_composite_operations.py b/src/oci/key_management/kms_management_client_composite_operations.py index e1dbbad2b7..354b34df75 100644 --- a/src/oci/key_management/kms_management_client_composite_operations.py +++ b/src/oci/key_management/kms_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/key_management/kms_vault_client.py b/src/oci/key_management/kms_vault_client.py index 9f592a06e1..e1d7317963 100644 --- a/src/oci/key_management/kms_vault_client.py +++ b/src/oci/key_management/kms_vault_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/key_management/kms_vault_client_composite_operations.py b/src/oci/key_management/kms_vault_client_composite_operations.py index 93ce877558..902d47dc32 100644 --- a/src/oci/key_management/kms_vault_client_composite_operations.py +++ b/src/oci/key_management/kms_vault_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/key_management/models/__init__.py b/src/oci/key_management/models/__init__.py index 9c6b6cd259..cb87777c15 100644 --- a/src/oci/key_management/models/__init__.py +++ b/src/oci/key_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/key_management/models/change_key_compartment_details.py b/src/oci/key_management/models/change_key_compartment_details.py index b5503dd21f..d45e6edd77 100644 --- a/src/oci/key_management/models/change_key_compartment_details.py +++ b/src/oci/key_management/models/change_key_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/change_vault_compartment_details.py b/src/oci/key_management/models/change_vault_compartment_details.py index 55b36c0e8c..855c870670 100644 --- a/src/oci/key_management/models/change_vault_compartment_details.py +++ b/src/oci/key_management/models/change_vault_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/create_key_details.py b/src/oci/key_management/models/create_key_details.py index fd7a655db9..8dd7f38818 100644 --- a/src/oci/key_management/models/create_key_details.py +++ b/src/oci/key_management/models/create_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/create_vault_details.py b/src/oci/key_management/models/create_vault_details.py index 20e830b7e7..3f97b185d5 100644 --- a/src/oci/key_management/models/create_vault_details.py +++ b/src/oci/key_management/models/create_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/decrypt_data_details.py b/src/oci/key_management/models/decrypt_data_details.py index ff36d03ff0..a8eedb0a29 100644 --- a/src/oci/key_management/models/decrypt_data_details.py +++ b/src/oci/key_management/models/decrypt_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/decrypted_data.py b/src/oci/key_management/models/decrypted_data.py index f32251d26a..7a8f71c2de 100644 --- a/src/oci/key_management/models/decrypted_data.py +++ b/src/oci/key_management/models/decrypted_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/encrypt_data_details.py b/src/oci/key_management/models/encrypt_data_details.py index 0da10b2207..41a9d728ce 100644 --- a/src/oci/key_management/models/encrypt_data_details.py +++ b/src/oci/key_management/models/encrypt_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/encrypted_data.py b/src/oci/key_management/models/encrypted_data.py index a32f10f1e2..5e470cce42 100644 --- a/src/oci/key_management/models/encrypted_data.py +++ b/src/oci/key_management/models/encrypted_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/generate_key_details.py b/src/oci/key_management/models/generate_key_details.py index 81f551d3f4..3b9692b4e0 100644 --- a/src/oci/key_management/models/generate_key_details.py +++ b/src/oci/key_management/models/generate_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/generated_key.py b/src/oci/key_management/models/generated_key.py index 6f12ae21ba..3a45082d30 100644 --- a/src/oci/key_management/models/generated_key.py +++ b/src/oci/key_management/models/generated_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/import_key_details.py b/src/oci/key_management/models/import_key_details.py index 5041c33dca..02869219e6 100644 --- a/src/oci/key_management/models/import_key_details.py +++ b/src/oci/key_management/models/import_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/import_key_version_details.py b/src/oci/key_management/models/import_key_version_details.py index 1823889445..07aab21ded 100644 --- a/src/oci/key_management/models/import_key_version_details.py +++ b/src/oci/key_management/models/import_key_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/key.py b/src/oci/key_management/models/key.py index b958be9ddc..6759886977 100644 --- a/src/oci/key_management/models/key.py +++ b/src/oci/key_management/models/key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/key_shape.py b/src/oci/key_management/models/key_shape.py index 8c13e2395c..ee6f88c636 100644 --- a/src/oci/key_management/models/key_shape.py +++ b/src/oci/key_management/models/key_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/key_summary.py b/src/oci/key_management/models/key_summary.py index c7adac42cc..518cc91c20 100644 --- a/src/oci/key_management/models/key_summary.py +++ b/src/oci/key_management/models/key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/key_version.py b/src/oci/key_management/models/key_version.py index 04f2ae69ef..5b52f7efbd 100644 --- a/src/oci/key_management/models/key_version.py +++ b/src/oci/key_management/models/key_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/key_version_summary.py b/src/oci/key_management/models/key_version_summary.py index 597617c301..3657b99832 100644 --- a/src/oci/key_management/models/key_version_summary.py +++ b/src/oci/key_management/models/key_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/schedule_key_deletion_details.py b/src/oci/key_management/models/schedule_key_deletion_details.py index c44b006c11..c706d4f469 100644 --- a/src/oci/key_management/models/schedule_key_deletion_details.py +++ b/src/oci/key_management/models/schedule_key_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/schedule_key_version_deletion_details.py b/src/oci/key_management/models/schedule_key_version_deletion_details.py index 8838e7478f..4a3ec77f31 100644 --- a/src/oci/key_management/models/schedule_key_version_deletion_details.py +++ b/src/oci/key_management/models/schedule_key_version_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/schedule_vault_deletion_details.py b/src/oci/key_management/models/schedule_vault_deletion_details.py index e269adfcde..641b3edeb2 100644 --- a/src/oci/key_management/models/schedule_vault_deletion_details.py +++ b/src/oci/key_management/models/schedule_vault_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/update_key_details.py b/src/oci/key_management/models/update_key_details.py index e0a8e22428..b8c6c19f5f 100644 --- a/src/oci/key_management/models/update_key_details.py +++ b/src/oci/key_management/models/update_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/update_vault_details.py b/src/oci/key_management/models/update_vault_details.py index 11754f2dc6..5b997c7bde 100644 --- a/src/oci/key_management/models/update_vault_details.py +++ b/src/oci/key_management/models/update_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/vault.py b/src/oci/key_management/models/vault.py index be81b3ed36..352fb8d7ba 100644 --- a/src/oci/key_management/models/vault.py +++ b/src/oci/key_management/models/vault.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/vault_summary.py b/src/oci/key_management/models/vault_summary.py index 8807726da3..e8a53c82d9 100644 --- a/src/oci/key_management/models/vault_summary.py +++ b/src/oci/key_management/models/vault_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/wrapped_import_key.py b/src/oci/key_management/models/wrapped_import_key.py index eade0440a0..00f2525a80 100644 --- a/src/oci/key_management/models/wrapped_import_key.py +++ b/src/oci/key_management/models/wrapped_import_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/key_management/models/wrapping_key.py b/src/oci/key_management/models/wrapping_key.py index f051703262..454e385d9f 100644 --- a/src/oci/key_management/models/wrapping_key.py +++ b/src/oci/key_management/models/wrapping_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/__init__.py b/src/oci/limits/__init__.py index 0e43368cba..a28074fffc 100644 --- a/src/oci/limits/__init__.py +++ b/src/oci/limits/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/limits/limits_client.py b/src/oci/limits/limits_client.py index 017b353499..38c6f919ec 100644 --- a/src/oci/limits/limits_client.py +++ b/src/oci/limits/limits_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/limits/limits_client_composite_operations.py b/src/oci/limits/limits_client_composite_operations.py index 736628bfa9..27ae016791 100644 --- a/src/oci/limits/limits_client_composite_operations.py +++ b/src/oci/limits/limits_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/limits/models/__init__.py b/src/oci/limits/models/__init__.py index 4ab8f92845..32224a7f50 100644 --- a/src/oci/limits/models/__init__.py +++ b/src/oci/limits/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/limits/models/create_quota_details.py b/src/oci/limits/models/create_quota_details.py index 9a632b5eec..4e54b05244 100644 --- a/src/oci/limits/models/create_quota_details.py +++ b/src/oci/limits/models/create_quota_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/limit_definition_summary.py b/src/oci/limits/models/limit_definition_summary.py index 6aadea1319..500e16fe5c 100644 --- a/src/oci/limits/models/limit_definition_summary.py +++ b/src/oci/limits/models/limit_definition_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/limit_value_summary.py b/src/oci/limits/models/limit_value_summary.py index 31f49ee8d5..9daa06cf1b 100644 --- a/src/oci/limits/models/limit_value_summary.py +++ b/src/oci/limits/models/limit_value_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/quota.py b/src/oci/limits/models/quota.py index f93c3aea7e..4557b6e7bf 100644 --- a/src/oci/limits/models/quota.py +++ b/src/oci/limits/models/quota.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/quota_summary.py b/src/oci/limits/models/quota_summary.py index 6f0efb2359..b3c5762d01 100644 --- a/src/oci/limits/models/quota_summary.py +++ b/src/oci/limits/models/quota_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/resource_availability.py b/src/oci/limits/models/resource_availability.py index 2b6764e029..d8aebecf78 100644 --- a/src/oci/limits/models/resource_availability.py +++ b/src/oci/limits/models/resource_availability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/service_summary.py b/src/oci/limits/models/service_summary.py index 0bddb20180..d3dcf87d7e 100644 --- a/src/oci/limits/models/service_summary.py +++ b/src/oci/limits/models/service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/models/update_quota_details.py b/src/oci/limits/models/update_quota_details.py index 7089ec11c0..cc9591acd0 100644 --- a/src/oci/limits/models/update_quota_details.py +++ b/src/oci/limits/models/update_quota_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/limits/quotas_client.py b/src/oci/limits/quotas_client.py index 24e247c59a..ac4be42045 100644 --- a/src/oci/limits/quotas_client.py +++ b/src/oci/limits/quotas_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/limits/quotas_client_composite_operations.py b/src/oci/limits/quotas_client_composite_operations.py index 93e13d2afb..a26e5f9488 100644 --- a/src/oci/limits/quotas_client_composite_operations.py +++ b/src/oci/limits/quotas_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/load_balancer/__init__.py b/src/oci/load_balancer/__init__.py index ceef91a5bf..ff296e2223 100644 --- a/src/oci/load_balancer/__init__.py +++ b/src/oci/load_balancer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/load_balancer/load_balancer_client.py b/src/oci/load_balancer/load_balancer_client.py index 038f94ca3e..ab8141c405 100644 --- a/src/oci/load_balancer/load_balancer_client.py +++ b/src/oci/load_balancer/load_balancer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/load_balancer/load_balancer_client_composite_operations.py b/src/oci/load_balancer/load_balancer_client_composite_operations.py index 493177c36c..e313ce0d30 100644 --- a/src/oci/load_balancer/load_balancer_client_composite_operations.py +++ b/src/oci/load_balancer/load_balancer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/load_balancer/models/__init__.py b/src/oci/load_balancer/models/__init__.py index bffd1245da..5df2c970ba 100644 --- a/src/oci/load_balancer/models/__init__.py +++ b/src/oci/load_balancer/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/load_balancer/models/add_http_request_header_rule.py b/src/oci/load_balancer/models/add_http_request_header_rule.py index 714cc8c754..102d66c7f0 100644 --- a/src/oci/load_balancer/models/add_http_request_header_rule.py +++ b/src/oci/load_balancer/models/add_http_request_header_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/add_http_response_header_rule.py b/src/oci/load_balancer/models/add_http_response_header_rule.py index 82aacf3ea3..f23a5a58ce 100644 --- a/src/oci/load_balancer/models/add_http_response_header_rule.py +++ b/src/oci/load_balancer/models/add_http_response_header_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/allow_rule.py b/src/oci/load_balancer/models/allow_rule.py index 9b16c6414c..f308892a9b 100644 --- a/src/oci/load_balancer/models/allow_rule.py +++ b/src/oci/load_balancer/models/allow_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend.py b/src/oci/load_balancer/models/backend.py index 1343a0b61e..f9d0819d8e 100644 --- a/src/oci/load_balancer/models/backend.py +++ b/src/oci/load_balancer/models/backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend_details.py b/src/oci/load_balancer/models/backend_details.py index 801fba7c34..5bf6623e6b 100644 --- a/src/oci/load_balancer/models/backend_details.py +++ b/src/oci/load_balancer/models/backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend_health.py b/src/oci/load_balancer/models/backend_health.py index ff7d5dab54..b1a406d8da 100644 --- a/src/oci/load_balancer/models/backend_health.py +++ b/src/oci/load_balancer/models/backend_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend_set.py b/src/oci/load_balancer/models/backend_set.py index 0af92a134f..963809e642 100644 --- a/src/oci/load_balancer/models/backend_set.py +++ b/src/oci/load_balancer/models/backend_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend_set_details.py b/src/oci/load_balancer/models/backend_set_details.py index 8a17a72a0c..b34529f6e2 100644 --- a/src/oci/load_balancer/models/backend_set_details.py +++ b/src/oci/load_balancer/models/backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/backend_set_health.py b/src/oci/load_balancer/models/backend_set_health.py index cc9e1930fa..b1a07d9b43 100644 --- a/src/oci/load_balancer/models/backend_set_health.py +++ b/src/oci/load_balancer/models/backend_set_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/certificate.py b/src/oci/load_balancer/models/certificate.py index 7be6ecef6b..8e59bbe1c3 100644 --- a/src/oci/load_balancer/models/certificate.py +++ b/src/oci/load_balancer/models/certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/certificate_details.py b/src/oci/load_balancer/models/certificate_details.py index 41e02eb036..d5d7451a05 100644 --- a/src/oci/load_balancer/models/certificate_details.py +++ b/src/oci/load_balancer/models/certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/change_load_balancer_compartment_details.py b/src/oci/load_balancer/models/change_load_balancer_compartment_details.py index 9a36f383d3..060d81c7cb 100644 --- a/src/oci/load_balancer/models/change_load_balancer_compartment_details.py +++ b/src/oci/load_balancer/models/change_load_balancer_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/connection_configuration.py b/src/oci/load_balancer/models/connection_configuration.py index c7c248d8c0..6b2f83fbbc 100644 --- a/src/oci/load_balancer/models/connection_configuration.py +++ b/src/oci/load_balancer/models/connection_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/control_access_using_http_methods_rule.py b/src/oci/load_balancer/models/control_access_using_http_methods_rule.py index a85b1ceeb0..c91b60a50a 100644 --- a/src/oci/load_balancer/models/control_access_using_http_methods_rule.py +++ b/src/oci/load_balancer/models/control_access_using_http_methods_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_backend_details.py b/src/oci/load_balancer/models/create_backend_details.py index 93e82cb846..3a718220f2 100644 --- a/src/oci/load_balancer/models/create_backend_details.py +++ b/src/oci/load_balancer/models/create_backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_backend_set_details.py b/src/oci/load_balancer/models/create_backend_set_details.py index 7a899a9b6e..84e2da3328 100644 --- a/src/oci/load_balancer/models/create_backend_set_details.py +++ b/src/oci/load_balancer/models/create_backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_certificate_details.py b/src/oci/load_balancer/models/create_certificate_details.py index 8ab65130dd..fb55a5e162 100644 --- a/src/oci/load_balancer/models/create_certificate_details.py +++ b/src/oci/load_balancer/models/create_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_hostname_details.py b/src/oci/load_balancer/models/create_hostname_details.py index e8f5d65ac8..1c0a3d2a93 100644 --- a/src/oci/load_balancer/models/create_hostname_details.py +++ b/src/oci/load_balancer/models/create_hostname_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_listener_details.py b/src/oci/load_balancer/models/create_listener_details.py index f7c9abdc14..c6115f889d 100644 --- a/src/oci/load_balancer/models/create_listener_details.py +++ b/src/oci/load_balancer/models/create_listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_load_balancer_details.py b/src/oci/load_balancer/models/create_load_balancer_details.py index 9b249ef51a..0b7bf5fbd5 100644 --- a/src/oci/load_balancer/models/create_load_balancer_details.py +++ b/src/oci/load_balancer/models/create_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_path_route_set_details.py b/src/oci/load_balancer/models/create_path_route_set_details.py index 1f115d28d5..3443b8c67d 100644 --- a/src/oci/load_balancer/models/create_path_route_set_details.py +++ b/src/oci/load_balancer/models/create_path_route_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/create_rule_set_details.py b/src/oci/load_balancer/models/create_rule_set_details.py index 38406cf59c..a5ff93b1ec 100644 --- a/src/oci/load_balancer/models/create_rule_set_details.py +++ b/src/oci/load_balancer/models/create_rule_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/extend_http_request_header_value_rule.py b/src/oci/load_balancer/models/extend_http_request_header_value_rule.py index bd4ca3b19c..d3e45c5418 100644 --- a/src/oci/load_balancer/models/extend_http_request_header_value_rule.py +++ b/src/oci/load_balancer/models/extend_http_request_header_value_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/extend_http_response_header_value_rule.py b/src/oci/load_balancer/models/extend_http_response_header_value_rule.py index 3c7b7d54e2..7366243f98 100644 --- a/src/oci/load_balancer/models/extend_http_response_header_value_rule.py +++ b/src/oci/load_balancer/models/extend_http_response_header_value_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/health_check_result.py b/src/oci/load_balancer/models/health_check_result.py index 8a7d782b63..03b3ba9203 100644 --- a/src/oci/load_balancer/models/health_check_result.py +++ b/src/oci/load_balancer/models/health_check_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/health_checker.py b/src/oci/load_balancer/models/health_checker.py index e24bfda74e..40f7773824 100644 --- a/src/oci/load_balancer/models/health_checker.py +++ b/src/oci/load_balancer/models/health_checker.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/health_checker_details.py b/src/oci/load_balancer/models/health_checker_details.py index 3f969d4de3..bea1568423 100644 --- a/src/oci/load_balancer/models/health_checker_details.py +++ b/src/oci/load_balancer/models/health_checker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/hostname.py b/src/oci/load_balancer/models/hostname.py index 2ceb3f049e..1b0d25230c 100644 --- a/src/oci/load_balancer/models/hostname.py +++ b/src/oci/load_balancer/models/hostname.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/hostname_details.py b/src/oci/load_balancer/models/hostname_details.py index c1499bfe25..5b3ce7debc 100644 --- a/src/oci/load_balancer/models/hostname_details.py +++ b/src/oci/load_balancer/models/hostname_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/ip_address.py b/src/oci/load_balancer/models/ip_address.py index 17035b2fd4..110b3544ca 100644 --- a/src/oci/load_balancer/models/ip_address.py +++ b/src/oci/load_balancer/models/ip_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py b/src/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py index 68371145bc..e3b7cf34f6 100644 --- a/src/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py +++ b/src/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/listener.py b/src/oci/load_balancer/models/listener.py index 33870384e8..cce5af673c 100644 --- a/src/oci/load_balancer/models/listener.py +++ b/src/oci/load_balancer/models/listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/listener_details.py b/src/oci/load_balancer/models/listener_details.py index 93d0c7c078..b853c7e259 100644 --- a/src/oci/load_balancer/models/listener_details.py +++ b/src/oci/load_balancer/models/listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/listener_rule_summary.py b/src/oci/load_balancer/models/listener_rule_summary.py index 9e418fa493..39f688c232 100644 --- a/src/oci/load_balancer/models/listener_rule_summary.py +++ b/src/oci/load_balancer/models/listener_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer.py b/src/oci/load_balancer/models/load_balancer.py index 3adb031fcb..567d9f1034 100644 --- a/src/oci/load_balancer/models/load_balancer.py +++ b/src/oci/load_balancer/models/load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer_health.py b/src/oci/load_balancer/models/load_balancer_health.py index 217e7a5ecb..3c663c095e 100644 --- a/src/oci/load_balancer/models/load_balancer_health.py +++ b/src/oci/load_balancer/models/load_balancer_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer_health_summary.py b/src/oci/load_balancer/models/load_balancer_health_summary.py index 40b0fbe8c7..3bdf4837c8 100644 --- a/src/oci/load_balancer/models/load_balancer_health_summary.py +++ b/src/oci/load_balancer/models/load_balancer_health_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer_policy.py b/src/oci/load_balancer/models/load_balancer_policy.py index 274f435a7b..2e6a831ec2 100644 --- a/src/oci/load_balancer/models/load_balancer_policy.py +++ b/src/oci/load_balancer/models/load_balancer_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer_protocol.py b/src/oci/load_balancer/models/load_balancer_protocol.py index e86e969d2c..9dc4597176 100644 --- a/src/oci/load_balancer/models/load_balancer_protocol.py +++ b/src/oci/load_balancer/models/load_balancer_protocol.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/load_balancer_shape.py b/src/oci/load_balancer/models/load_balancer_shape.py index 39d2f65077..09cb9590ba 100644 --- a/src/oci/load_balancer/models/load_balancer_shape.py +++ b/src/oci/load_balancer/models/load_balancer_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/path_match_condition.py b/src/oci/load_balancer/models/path_match_condition.py index f05197f6f5..5cccb417b3 100644 --- a/src/oci/load_balancer/models/path_match_condition.py +++ b/src/oci/load_balancer/models/path_match_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule_condition import RuleCondition from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/path_match_type.py b/src/oci/load_balancer/models/path_match_type.py index d27350664f..b986df2f3f 100644 --- a/src/oci/load_balancer/models/path_match_type.py +++ b/src/oci/load_balancer/models/path_match_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/path_route.py b/src/oci/load_balancer/models/path_route.py index c3a7f2c5ad..366c450621 100644 --- a/src/oci/load_balancer/models/path_route.py +++ b/src/oci/load_balancer/models/path_route.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/path_route_set.py b/src/oci/load_balancer/models/path_route_set.py index 847b295a0d..e89803265c 100644 --- a/src/oci/load_balancer/models/path_route_set.py +++ b/src/oci/load_balancer/models/path_route_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/path_route_set_details.py b/src/oci/load_balancer/models/path_route_set_details.py index ed91a55db8..b392c9ea82 100644 --- a/src/oci/load_balancer/models/path_route_set_details.py +++ b/src/oci/load_balancer/models/path_route_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/redirect_rule.py b/src/oci/load_balancer/models/redirect_rule.py index 9b822563a1..37b7b1542c 100644 --- a/src/oci/load_balancer/models/redirect_rule.py +++ b/src/oci/load_balancer/models/redirect_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/redirect_uri.py b/src/oci/load_balancer/models/redirect_uri.py index 2e578e3309..981f7d2c0a 100644 --- a/src/oci/load_balancer/models/redirect_uri.py +++ b/src/oci/load_balancer/models/redirect_uri.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/remove_http_request_header_rule.py b/src/oci/load_balancer/models/remove_http_request_header_rule.py index 118352f399..c3b7bf1d4d 100644 --- a/src/oci/load_balancer/models/remove_http_request_header_rule.py +++ b/src/oci/load_balancer/models/remove_http_request_header_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/remove_http_response_header_rule.py b/src/oci/load_balancer/models/remove_http_response_header_rule.py index 2b8270b547..e5b496b1d9 100644 --- a/src/oci/load_balancer/models/remove_http_response_header_rule.py +++ b/src/oci/load_balancer/models/remove_http_response_header_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule import Rule from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/rule.py b/src/oci/load_balancer/models/rule.py index fc21bc1130..b519262431 100644 --- a/src/oci/load_balancer/models/rule.py +++ b/src/oci/load_balancer/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/rule_condition.py b/src/oci/load_balancer/models/rule_condition.py index d78ceb5d50..bce1c233a1 100644 --- a/src/oci/load_balancer/models/rule_condition.py +++ b/src/oci/load_balancer/models/rule_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/rule_set.py b/src/oci/load_balancer/models/rule_set.py index 58862ab955..ebc25ea96e 100644 --- a/src/oci/load_balancer/models/rule_set.py +++ b/src/oci/load_balancer/models/rule_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/rule_set_details.py b/src/oci/load_balancer/models/rule_set_details.py index dd61b3df11..828c240cfc 100644 --- a/src/oci/load_balancer/models/rule_set_details.py +++ b/src/oci/load_balancer/models/rule_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/session_persistence_configuration_details.py b/src/oci/load_balancer/models/session_persistence_configuration_details.py index 7b77f3e5f4..59cd0ed620 100644 --- a/src/oci/load_balancer/models/session_persistence_configuration_details.py +++ b/src/oci/load_balancer/models/session_persistence_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/source_ip_address_condition.py b/src/oci/load_balancer/models/source_ip_address_condition.py index 7c432d6244..99ea8232ba 100644 --- a/src/oci/load_balancer/models/source_ip_address_condition.py +++ b/src/oci/load_balancer/models/source_ip_address_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule_condition import RuleCondition from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/source_vcn_id_condition.py b/src/oci/load_balancer/models/source_vcn_id_condition.py index 0c79c76e7d..e19340583f 100644 --- a/src/oci/load_balancer/models/source_vcn_id_condition.py +++ b/src/oci/load_balancer/models/source_vcn_id_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule_condition import RuleCondition from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/source_vcn_ip_address_condition.py b/src/oci/load_balancer/models/source_vcn_ip_address_condition.py index 6e98d370d4..e783309bd0 100644 --- a/src/oci/load_balancer/models/source_vcn_ip_address_condition.py +++ b/src/oci/load_balancer/models/source_vcn_ip_address_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .rule_condition import RuleCondition from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/ssl_configuration.py b/src/oci/load_balancer/models/ssl_configuration.py index 02336d1bb9..2f353e8843 100644 --- a/src/oci/load_balancer/models/ssl_configuration.py +++ b/src/oci/load_balancer/models/ssl_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/ssl_configuration_details.py b/src/oci/load_balancer/models/ssl_configuration_details.py index cbdce90eb0..e5eb827926 100644 --- a/src/oci/load_balancer/models/ssl_configuration_details.py +++ b/src/oci/load_balancer/models/ssl_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_backend_details.py b/src/oci/load_balancer/models/update_backend_details.py index f6d6d1794b..d8be5a9eb4 100644 --- a/src/oci/load_balancer/models/update_backend_details.py +++ b/src/oci/load_balancer/models/update_backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_backend_set_details.py b/src/oci/load_balancer/models/update_backend_set_details.py index 68074d1f66..0f70e5725f 100644 --- a/src/oci/load_balancer/models/update_backend_set_details.py +++ b/src/oci/load_balancer/models/update_backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_health_checker_details.py b/src/oci/load_balancer/models/update_health_checker_details.py index 5762d7cd33..f5ec8d8a05 100644 --- a/src/oci/load_balancer/models/update_health_checker_details.py +++ b/src/oci/load_balancer/models/update_health_checker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_hostname_details.py b/src/oci/load_balancer/models/update_hostname_details.py index b4db04b45b..15744719aa 100644 --- a/src/oci/load_balancer/models/update_hostname_details.py +++ b/src/oci/load_balancer/models/update_hostname_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_listener_details.py b/src/oci/load_balancer/models/update_listener_details.py index 49271ea43f..1d9ad708b9 100644 --- a/src/oci/load_balancer/models/update_listener_details.py +++ b/src/oci/load_balancer/models/update_listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_load_balancer_details.py b/src/oci/load_balancer/models/update_load_balancer_details.py index 71aab0d89b..f0e4181643 100644 --- a/src/oci/load_balancer/models/update_load_balancer_details.py +++ b/src/oci/load_balancer/models/update_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_network_security_groups_details.py b/src/oci/load_balancer/models/update_network_security_groups_details.py index 779fa8356b..16102c8911 100644 --- a/src/oci/load_balancer/models/update_network_security_groups_details.py +++ b/src/oci/load_balancer/models/update_network_security_groups_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_path_route_set_details.py b/src/oci/load_balancer/models/update_path_route_set_details.py index 71aec389d2..024d815882 100644 --- a/src/oci/load_balancer/models/update_path_route_set_details.py +++ b/src/oci/load_balancer/models/update_path_route_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/update_rule_set_details.py b/src/oci/load_balancer/models/update_rule_set_details.py index 7f259e080a..9ffb96da99 100644 --- a/src/oci/load_balancer/models/update_rule_set_details.py +++ b/src/oci/load_balancer/models/update_rule_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/work_request.py b/src/oci/load_balancer/models/work_request.py index 9a33abefc1..5b45d699ff 100644 --- a/src/oci/load_balancer/models/work_request.py +++ b/src/oci/load_balancer/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/load_balancer/models/work_request_error.py b/src/oci/load_balancer/models/work_request_error.py index 22aab5f439..bd59f4ae25 100644 --- a/src/oci/load_balancer/models/work_request_error.py +++ b/src/oci/load_balancer/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/__init__.py b/src/oci/marketplace/__init__.py index a71d33304d..cfaf9d6106 100644 --- a/src/oci/marketplace/__init__.py +++ b/src/oci/marketplace/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/marketplace/marketplace_client.py b/src/oci/marketplace/marketplace_client.py index acc68f4c4a..e7fefc090f 100644 --- a/src/oci/marketplace/marketplace_client.py +++ b/src/oci/marketplace/marketplace_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/marketplace/marketplace_client_composite_operations.py b/src/oci/marketplace/marketplace_client_composite_operations.py index 9d21393b02..c4cc9e3d87 100644 --- a/src/oci/marketplace/marketplace_client_composite_operations.py +++ b/src/oci/marketplace/marketplace_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/marketplace/models/__init__.py b/src/oci/marketplace/models/__init__.py index 3f72c97cf3..5afcf202b2 100644 --- a/src/oci/marketplace/models/__init__.py +++ b/src/oci/marketplace/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/marketplace/models/accepted_agreement.py b/src/oci/marketplace/models/accepted_agreement.py index 05838dab7c..5e6a00697b 100644 --- a/src/oci/marketplace/models/accepted_agreement.py +++ b/src/oci/marketplace/models/accepted_agreement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/accepted_agreement_summary.py b/src/oci/marketplace/models/accepted_agreement_summary.py index 1e309f540b..598ac97033 100644 --- a/src/oci/marketplace/models/accepted_agreement_summary.py +++ b/src/oci/marketplace/models/accepted_agreement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/agreement.py b/src/oci/marketplace/models/agreement.py index 2333932228..10d32b1212 100644 --- a/src/oci/marketplace/models/agreement.py +++ b/src/oci/marketplace/models/agreement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/agreement_summary.py b/src/oci/marketplace/models/agreement_summary.py index 9d2cd02c45..eb64315fcf 100644 --- a/src/oci/marketplace/models/agreement_summary.py +++ b/src/oci/marketplace/models/agreement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/category_summary.py b/src/oci/marketplace/models/category_summary.py index fe6520f038..d48946bf25 100644 --- a/src/oci/marketplace/models/category_summary.py +++ b/src/oci/marketplace/models/category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/create_accepted_agreement_details.py b/src/oci/marketplace/models/create_accepted_agreement_details.py index e1516e5340..4dc0af2f8a 100644 --- a/src/oci/marketplace/models/create_accepted_agreement_details.py +++ b/src/oci/marketplace/models/create_accepted_agreement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/documentation_link.py b/src/oci/marketplace/models/documentation_link.py index eca672c317..4d419c9703 100644 --- a/src/oci/marketplace/models/documentation_link.py +++ b/src/oci/marketplace/models/documentation_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/error_entity.py b/src/oci/marketplace/models/error_entity.py index 62fa153ec6..1157ba3181 100644 --- a/src/oci/marketplace/models/error_entity.py +++ b/src/oci/marketplace/models/error_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/image_listing_package.py b/src/oci/marketplace/models/image_listing_package.py index ec896af3ff..6ccd859f08 100644 --- a/src/oci/marketplace/models/image_listing_package.py +++ b/src/oci/marketplace/models/image_listing_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .listing_package import ListingPackage from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/item.py b/src/oci/marketplace/models/item.py index b8f61b187b..0729c12b00 100644 --- a/src/oci/marketplace/models/item.py +++ b/src/oci/marketplace/models/item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/link.py b/src/oci/marketplace/models/link.py index ddcd070961..a7b7add3cd 100644 --- a/src/oci/marketplace/models/link.py +++ b/src/oci/marketplace/models/link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/listing.py b/src/oci/marketplace/models/listing.py index 6fd0b79980..e74e72bd59 100644 --- a/src/oci/marketplace/models/listing.py +++ b/src/oci/marketplace/models/listing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/listing_package.py b/src/oci/marketplace/models/listing_package.py index 584916be20..26849d4d11 100644 --- a/src/oci/marketplace/models/listing_package.py +++ b/src/oci/marketplace/models/listing_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/listing_package_summary.py b/src/oci/marketplace/models/listing_package_summary.py index c688cc022e..05aaf7ca7b 100644 --- a/src/oci/marketplace/models/listing_package_summary.py +++ b/src/oci/marketplace/models/listing_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/listing_summary.py b/src/oci/marketplace/models/listing_summary.py index 60e1df4537..ee35deb7bc 100644 --- a/src/oci/marketplace/models/listing_summary.py +++ b/src/oci/marketplace/models/listing_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/named_link.py b/src/oci/marketplace/models/named_link.py index 1c81a31ee1..16bc36068f 100644 --- a/src/oci/marketplace/models/named_link.py +++ b/src/oci/marketplace/models/named_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/orchestration_listing_package.py b/src/oci/marketplace/models/orchestration_listing_package.py index 454f04da58..09006c6d54 100644 --- a/src/oci/marketplace/models/orchestration_listing_package.py +++ b/src/oci/marketplace/models/orchestration_listing_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .listing_package import ListingPackage from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/orchestration_variable.py b/src/oci/marketplace/models/orchestration_variable.py index 1141b34979..c5a5b122f7 100644 --- a/src/oci/marketplace/models/orchestration_variable.py +++ b/src/oci/marketplace/models/orchestration_variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/pricing_model.py b/src/oci/marketplace/models/pricing_model.py index 44959b970e..e944a5ca9d 100644 --- a/src/oci/marketplace/models/pricing_model.py +++ b/src/oci/marketplace/models/pricing_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/publisher.py b/src/oci/marketplace/models/publisher.py index 8d6bcba174..b18fb7abbe 100644 --- a/src/oci/marketplace/models/publisher.py +++ b/src/oci/marketplace/models/publisher.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/publisher_summary.py b/src/oci/marketplace/models/publisher_summary.py index a823ca19da..99f0a9a4b5 100644 --- a/src/oci/marketplace/models/publisher_summary.py +++ b/src/oci/marketplace/models/publisher_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/region.py b/src/oci/marketplace/models/region.py index 5d6080eecf..b99b087a96 100644 --- a/src/oci/marketplace/models/region.py +++ b/src/oci/marketplace/models/region.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/screenshot.py b/src/oci/marketplace/models/screenshot.py index 8e400bb9ba..51811479d3 100644 --- a/src/oci/marketplace/models/screenshot.py +++ b/src/oci/marketplace/models/screenshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/support_contact.py b/src/oci/marketplace/models/support_contact.py index e6ade8617e..539865bbe6 100644 --- a/src/oci/marketplace/models/support_contact.py +++ b/src/oci/marketplace/models/support_contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/update_accepted_agreement_details.py b/src/oci/marketplace/models/update_accepted_agreement_details.py index de4ff840e0..2c0e961b26 100644 --- a/src/oci/marketplace/models/update_accepted_agreement_details.py +++ b/src/oci/marketplace/models/update_accepted_agreement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/marketplace/models/upload_data.py b/src/oci/marketplace/models/upload_data.py index 88475f3c52..b81231e10e 100644 --- a/src/oci/marketplace/models/upload_data.py +++ b/src/oci/marketplace/models/upload_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/__init__.py b/src/oci/monitoring/__init__.py index ed54d9d68b..d71bbc8c41 100644 --- a/src/oci/monitoring/__init__.py +++ b/src/oci/monitoring/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/monitoring/models/__init__.py b/src/oci/monitoring/models/__init__.py index 4e16e82810..c142520497 100644 --- a/src/oci/monitoring/models/__init__.py +++ b/src/oci/monitoring/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/monitoring/models/aggregated_datapoint.py b/src/oci/monitoring/models/aggregated_datapoint.py index 122f087aa2..e5edfffaad 100644 --- a/src/oci/monitoring/models/aggregated_datapoint.py +++ b/src/oci/monitoring/models/aggregated_datapoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/alarm.py b/src/oci/monitoring/models/alarm.py index 618af9bb8c..24376df256 100644 --- a/src/oci/monitoring/models/alarm.py +++ b/src/oci/monitoring/models/alarm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/alarm_history_collection.py b/src/oci/monitoring/models/alarm_history_collection.py index 100433aaa8..d890945ffd 100644 --- a/src/oci/monitoring/models/alarm_history_collection.py +++ b/src/oci/monitoring/models/alarm_history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/alarm_history_entry.py b/src/oci/monitoring/models/alarm_history_entry.py index 7515985827..6b21cfc7d0 100644 --- a/src/oci/monitoring/models/alarm_history_entry.py +++ b/src/oci/monitoring/models/alarm_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/alarm_status_summary.py b/src/oci/monitoring/models/alarm_status_summary.py index 47ea8f3e0f..53b4a41bc0 100644 --- a/src/oci/monitoring/models/alarm_status_summary.py +++ b/src/oci/monitoring/models/alarm_status_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/alarm_summary.py b/src/oci/monitoring/models/alarm_summary.py index 0bd4c3407d..2529bec90d 100644 --- a/src/oci/monitoring/models/alarm_summary.py +++ b/src/oci/monitoring/models/alarm_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/change_alarm_compartment_details.py b/src/oci/monitoring/models/change_alarm_compartment_details.py index cabdca9032..06d73ce77c 100644 --- a/src/oci/monitoring/models/change_alarm_compartment_details.py +++ b/src/oci/monitoring/models/change_alarm_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/create_alarm_details.py b/src/oci/monitoring/models/create_alarm_details.py index 2f3151322e..5ca0e77e99 100644 --- a/src/oci/monitoring/models/create_alarm_details.py +++ b/src/oci/monitoring/models/create_alarm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/datapoint.py b/src/oci/monitoring/models/datapoint.py index 8d70ed874d..80eb109aa4 100644 --- a/src/oci/monitoring/models/datapoint.py +++ b/src/oci/monitoring/models/datapoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/failed_metric_record.py b/src/oci/monitoring/models/failed_metric_record.py index 791cbd0ae1..8c78a4993c 100644 --- a/src/oci/monitoring/models/failed_metric_record.py +++ b/src/oci/monitoring/models/failed_metric_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/list_metrics_details.py b/src/oci/monitoring/models/list_metrics_details.py index e637403cd9..67a067607b 100644 --- a/src/oci/monitoring/models/list_metrics_details.py +++ b/src/oci/monitoring/models/list_metrics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/metric.py b/src/oci/monitoring/models/metric.py index 3b366cd820..9af7acb65f 100644 --- a/src/oci/monitoring/models/metric.py +++ b/src/oci/monitoring/models/metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/metric_data.py b/src/oci/monitoring/models/metric_data.py index c77a0250d0..c8638bf98d 100644 --- a/src/oci/monitoring/models/metric_data.py +++ b/src/oci/monitoring/models/metric_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/metric_data_details.py b/src/oci/monitoring/models/metric_data_details.py index e373ce35c0..40746215e0 100644 --- a/src/oci/monitoring/models/metric_data_details.py +++ b/src/oci/monitoring/models/metric_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/post_metric_data_details.py b/src/oci/monitoring/models/post_metric_data_details.py index 23cfedceab..ca275bb881 100644 --- a/src/oci/monitoring/models/post_metric_data_details.py +++ b/src/oci/monitoring/models/post_metric_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/post_metric_data_response_details.py b/src/oci/monitoring/models/post_metric_data_response_details.py index faa8010a52..eb2c1eef91 100644 --- a/src/oci/monitoring/models/post_metric_data_response_details.py +++ b/src/oci/monitoring/models/post_metric_data_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/summarize_metrics_data_details.py b/src/oci/monitoring/models/summarize_metrics_data_details.py index 2f7164942b..03fd92cf86 100644 --- a/src/oci/monitoring/models/summarize_metrics_data_details.py +++ b/src/oci/monitoring/models/summarize_metrics_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/suppression.py b/src/oci/monitoring/models/suppression.py index 3428d0e6ac..cb852d5481 100644 --- a/src/oci/monitoring/models/suppression.py +++ b/src/oci/monitoring/models/suppression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/models/update_alarm_details.py b/src/oci/monitoring/models/update_alarm_details.py index f28316047c..9e86e6abfb 100644 --- a/src/oci/monitoring/models/update_alarm_details.py +++ b/src/oci/monitoring/models/update_alarm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/monitoring/monitoring_client.py b/src/oci/monitoring/monitoring_client.py index d6e85f78b7..4a68db0169 100644 --- a/src/oci/monitoring/monitoring_client.py +++ b/src/oci/monitoring/monitoring_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/monitoring/monitoring_client_composite_operations.py b/src/oci/monitoring/monitoring_client_composite_operations.py index 190b659162..5781e8a9a2 100644 --- a/src/oci/monitoring/monitoring_client_composite_operations.py +++ b/src/oci/monitoring/monitoring_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/object_storage/__init__.py b/src/oci/object_storage/__init__.py index f796109dca..2725b1bf4a 100644 --- a/src/oci/object_storage/__init__.py +++ b/src/oci/object_storage/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/object_storage/models/__init__.py b/src/oci/object_storage/models/__init__.py index b09f93de11..7beeca537b 100644 --- a/src/oci/object_storage/models/__init__.py +++ b/src/oci/object_storage/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/object_storage/models/bucket.py b/src/oci/object_storage/models/bucket.py index 51c221ab62..5f69da90c0 100644 --- a/src/oci/object_storage/models/bucket.py +++ b/src/oci/object_storage/models/bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/bucket_summary.py b/src/oci/object_storage/models/bucket_summary.py index 82b231c250..85c9b6f33a 100644 --- a/src/oci/object_storage/models/bucket_summary.py +++ b/src/oci/object_storage/models/bucket_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/commit_multipart_upload_details.py b/src/oci/object_storage/models/commit_multipart_upload_details.py index a0bbded6fc..28c20e2384 100644 --- a/src/oci/object_storage/models/commit_multipart_upload_details.py +++ b/src/oci/object_storage/models/commit_multipart_upload_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/commit_multipart_upload_part_details.py b/src/oci/object_storage/models/commit_multipart_upload_part_details.py index aa9cda767d..ba32706518 100644 --- a/src/oci/object_storage/models/commit_multipart_upload_part_details.py +++ b/src/oci/object_storage/models/commit_multipart_upload_part_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/copy_object_details.py b/src/oci/object_storage/models/copy_object_details.py index 2afe615ee9..fa3cdd939b 100644 --- a/src/oci/object_storage/models/copy_object_details.py +++ b/src/oci/object_storage/models/copy_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/create_bucket_details.py b/src/oci/object_storage/models/create_bucket_details.py index ef4a9e24da..f0a3688406 100644 --- a/src/oci/object_storage/models/create_bucket_details.py +++ b/src/oci/object_storage/models/create_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/create_multipart_upload_details.py b/src/oci/object_storage/models/create_multipart_upload_details.py index 6248dbef3d..93e755d719 100644 --- a/src/oci/object_storage/models/create_multipart_upload_details.py +++ b/src/oci/object_storage/models/create_multipart_upload_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/create_preauthenticated_request_details.py b/src/oci/object_storage/models/create_preauthenticated_request_details.py index 0111a2ee0a..4da11fa689 100644 --- a/src/oci/object_storage/models/create_preauthenticated_request_details.py +++ b/src/oci/object_storage/models/create_preauthenticated_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/list_objects.py b/src/oci/object_storage/models/list_objects.py index 162a5654a3..20570db4b0 100644 --- a/src/oci/object_storage/models/list_objects.py +++ b/src/oci/object_storage/models/list_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/multipart_upload.py b/src/oci/object_storage/models/multipart_upload.py index 4cf02aadc6..881af96b27 100644 --- a/src/oci/object_storage/models/multipart_upload.py +++ b/src/oci/object_storage/models/multipart_upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/multipart_upload_part_summary.py b/src/oci/object_storage/models/multipart_upload_part_summary.py index 8e8726223b..29a80a0b73 100644 --- a/src/oci/object_storage/models/multipart_upload_part_summary.py +++ b/src/oci/object_storage/models/multipart_upload_part_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/namespace_metadata.py b/src/oci/object_storage/models/namespace_metadata.py index e3f0d4930c..ff4cba99fb 100644 --- a/src/oci/object_storage/models/namespace_metadata.py +++ b/src/oci/object_storage/models/namespace_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/object_lifecycle_policy.py b/src/oci/object_storage/models/object_lifecycle_policy.py index ef0bcd85e9..e4396aef7d 100644 --- a/src/oci/object_storage/models/object_lifecycle_policy.py +++ b/src/oci/object_storage/models/object_lifecycle_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/object_lifecycle_rule.py b/src/oci/object_storage/models/object_lifecycle_rule.py index 907c1a18b4..f85bfe3d4b 100644 --- a/src/oci/object_storage/models/object_lifecycle_rule.py +++ b/src/oci/object_storage/models/object_lifecycle_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/object_name_filter.py b/src/oci/object_storage/models/object_name_filter.py index dcc8a5381a..394095c330 100644 --- a/src/oci/object_storage/models/object_name_filter.py +++ b/src/oci/object_storage/models/object_name_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/object_summary.py b/src/oci/object_storage/models/object_summary.py index a0b6d0d104..317c6754e0 100644 --- a/src/oci/object_storage/models/object_summary.py +++ b/src/oci/object_storage/models/object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/pattern_details.py b/src/oci/object_storage/models/pattern_details.py index 8563bb590b..acb72a25c0 100644 --- a/src/oci/object_storage/models/pattern_details.py +++ b/src/oci/object_storage/models/pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/preauthenticated_request.py b/src/oci/object_storage/models/preauthenticated_request.py index aacd35e5de..d63ae6219a 100644 --- a/src/oci/object_storage/models/preauthenticated_request.py +++ b/src/oci/object_storage/models/preauthenticated_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/preauthenticated_request_summary.py b/src/oci/object_storage/models/preauthenticated_request_summary.py index 1d237e40b3..7ec844f70a 100644 --- a/src/oci/object_storage/models/preauthenticated_request_summary.py +++ b/src/oci/object_storage/models/preauthenticated_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/put_object_lifecycle_policy_details.py b/src/oci/object_storage/models/put_object_lifecycle_policy_details.py index 3a2859e06e..4c2f792e19 100644 --- a/src/oci/object_storage/models/put_object_lifecycle_policy_details.py +++ b/src/oci/object_storage/models/put_object_lifecycle_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/rename_object_details.py b/src/oci/object_storage/models/rename_object_details.py index 2dd8c38b23..68786a5a14 100644 --- a/src/oci/object_storage/models/rename_object_details.py +++ b/src/oci/object_storage/models/rename_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/restore_objects_details.py b/src/oci/object_storage/models/restore_objects_details.py index 8419f4f8e5..1cc02f14c1 100644 --- a/src/oci/object_storage/models/restore_objects_details.py +++ b/src/oci/object_storage/models/restore_objects_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/update_bucket_details.py b/src/oci/object_storage/models/update_bucket_details.py index a39b9ac70e..1b73290c70 100644 --- a/src/oci/object_storage/models/update_bucket_details.py +++ b/src/oci/object_storage/models/update_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/update_namespace_metadata_details.py b/src/oci/object_storage/models/update_namespace_metadata_details.py index a62612fdbe..c3a028a5d7 100644 --- a/src/oci/object_storage/models/update_namespace_metadata_details.py +++ b/src/oci/object_storage/models/update_namespace_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/work_request.py b/src/oci/object_storage/models/work_request.py index 0acc03c322..ee8d9f1d5a 100644 --- a/src/oci/object_storage/models/work_request.py +++ b/src/oci/object_storage/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/work_request_error.py b/src/oci/object_storage/models/work_request_error.py index d455246bb6..b245d8fc1c 100644 --- a/src/oci/object_storage/models/work_request_error.py +++ b/src/oci/object_storage/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/work_request_log_entry.py b/src/oci/object_storage/models/work_request_log_entry.py index c60de1533f..a870ef78a5 100644 --- a/src/oci/object_storage/models/work_request_log_entry.py +++ b/src/oci/object_storage/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/work_request_resource.py b/src/oci/object_storage/models/work_request_resource.py index 1734dac5cc..65221bb2c7 100644 --- a/src/oci/object_storage/models/work_request_resource.py +++ b/src/oci/object_storage/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/models/work_request_summary.py b/src/oci/object_storage/models/work_request_summary.py index bbc22602c9..a999a122fd 100644 --- a/src/oci/object_storage/models/work_request_summary.py +++ b/src/oci/object_storage/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/object_storage/object_storage_client.py b/src/oci/object_storage/object_storage_client.py index beec97c098..dc3fc37d1f 100644 --- a/src/oci/object_storage/object_storage_client.py +++ b/src/oci/object_storage/object_storage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import @@ -2768,6 +2768,10 @@ def put_object(self, namespace_name, bucket_name, object_name, put_object_body, if kwargs.get('retry_strategy'): retry_strategy = kwargs.get('retry_strategy') + # Disable the retry_strategy to work around data corruption issue temporarily + if retry_strategy: + retry_strategy = None + if retry_strategy: return retry_strategy.make_retrying_call( self.base_client.call_api, diff --git a/src/oci/object_storage/object_storage_client_composite_operations.py b/src/oci/object_storage/object_storage_client_composite_operations.py index 1d9242b828..cc3294130b 100644 --- a/src/oci/object_storage/object_storage_client_composite_operations.py +++ b/src/oci/object_storage/object_storage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/object_storage/transfer/__init__.py b/src/oci/object_storage/transfer/__init__.py index e284f7d3df..6e95c11e34 100644 --- a/src/oci/object_storage/transfer/__init__.py +++ b/src/oci/object_storage/transfer/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # noqa: W391, W292 diff --git a/src/oci/object_storage/transfer/constants.py b/src/oci/object_storage/transfer/constants.py index 184de04af6..9fdf8e7b07 100644 --- a/src/oci/object_storage/transfer/constants.py +++ b/src/oci/object_storage/transfer/constants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. MEBIBYTE = 1024 * 1024 STREAMING_DEFAULT_PART_SIZE = 10 * MEBIBYTE diff --git a/src/oci/object_storage/transfer/internal/__init__.py b/src/oci/object_storage/transfer/internal/__init__.py index e284f7d3df..6e95c11e34 100644 --- a/src/oci/object_storage/transfer/internal/__init__.py +++ b/src/oci/object_storage/transfer/internal/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # noqa: W391, W292 diff --git a/src/oci/object_storage/transfer/internal/buffered_part_reader.py b/src/oci/object_storage/transfer/internal/buffered_part_reader.py index 8a3cfd7e6d..d196430a6a 100644 --- a/src/oci/object_storage/transfer/internal/buffered_part_reader.py +++ b/src/oci/object_storage/transfer/internal/buffered_part_reader.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import io diff --git a/src/oci/object_storage/transfer/internal/file_read_callback_stream.py b/src/oci/object_storage/transfer/internal/file_read_callback_stream.py index b7e02037d3..f808b19973 100644 --- a/src/oci/object_storage/transfer/internal/file_read_callback_stream.py +++ b/src/oci/object_storage/transfer/internal/file_read_callback_stream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. class FileReadCallbackStream: diff --git a/src/oci/object_storage/transfer/internal/md5.py b/src/oci/object_storage/transfer/internal/md5.py index 2894b5d527..2ff890f8d8 100644 --- a/src/oci/object_storage/transfer/internal/md5.py +++ b/src/oci/object_storage/transfer/internal/md5.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives import hashes diff --git a/src/oci/object_storage/transfer/internal/multipart_object_assembler.py b/src/oci/object_storage/transfer/internal/multipart_object_assembler.py index c1cc7d5d22..6248adfcc0 100644 --- a/src/oci/object_storage/transfer/internal/multipart_object_assembler.py +++ b/src/oci/object_storage/transfer/internal/multipart_object_assembler.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import io import hashlib @@ -386,6 +386,9 @@ def _upload_part(self, part_num, part, **kwargs): retry_strategy = kwargs['retry_strategy'] if "opc_md5" not in part: + # Disable the retry_strategy to work around data corruption issue temporarily + retry_strategy = None + if retry_strategy: response = retry_strategy.make_retrying_call( self._upload_part_call, @@ -401,7 +404,8 @@ def _upload_part(self, part_num, part, **kwargs): new_kwargs=new_kwargs ) else: - remaining_tries = self.max_retries + # Disable the retry_strategy to work around data corruption issue temporarily + remaining_tries = 1 while remaining_tries > 0: try: response = self._upload_part_call(self.object_storage_client, diff --git a/src/oci/object_storage/transfer/upload_manager.py b/src/oci/object_storage/transfer/upload_manager.py index 3f494d0d52..b77654d822 100644 --- a/src/oci/object_storage/transfer/upload_manager.py +++ b/src/oci/object_storage/transfer/upload_manager.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import print_function import os diff --git a/src/oci/oce/__init__.py b/src/oci/oce/__init__.py index 014690dcc0..858b212849 100644 --- a/src/oci/oce/__init__.py +++ b/src/oci/oce/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oce/models/__init__.py b/src/oci/oce/models/__init__.py index dd84b4d20b..2d83cc0851 100644 --- a/src/oci/oce/models/__init__.py +++ b/src/oci/oce/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oce/models/change_oce_instance_compartment_details.py b/src/oci/oce/models/change_oce_instance_compartment_details.py index 3d3ea96b20..3967c26be2 100644 --- a/src/oci/oce/models/change_oce_instance_compartment_details.py +++ b/src/oci/oce/models/change_oce_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/create_oce_instance_details.py b/src/oci/oce/models/create_oce_instance_details.py index ac33c9f8cd..32ba2d871b 100644 --- a/src/oci/oce/models/create_oce_instance_details.py +++ b/src/oci/oce/models/create_oce_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/delete_oce_instance_details.py b/src/oci/oce/models/delete_oce_instance_details.py index 15087b294e..78cb06bae4 100644 --- a/src/oci/oce/models/delete_oce_instance_details.py +++ b/src/oci/oce/models/delete_oce_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/identity_stripe_details.py b/src/oci/oce/models/identity_stripe_details.py index 34c556d918..96cc6d5b57 100644 --- a/src/oci/oce/models/identity_stripe_details.py +++ b/src/oci/oce/models/identity_stripe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/oce_instance.py b/src/oci/oce/models/oce_instance.py index 259fb8b05e..8648b53dfb 100644 --- a/src/oci/oce/models/oce_instance.py +++ b/src/oci/oce/models/oce_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/oce_instance_summary.py b/src/oci/oce/models/oce_instance_summary.py index 0d3f884822..6e38ef19ba 100644 --- a/src/oci/oce/models/oce_instance_summary.py +++ b/src/oci/oce/models/oce_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/update_oce_instance_details.py b/src/oci/oce/models/update_oce_instance_details.py index dfe8c2b883..734b12d104 100644 --- a/src/oci/oce/models/update_oce_instance_details.py +++ b/src/oci/oce/models/update_oce_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/work_request.py b/src/oci/oce/models/work_request.py index 68fb677acd..e0dd3dd47b 100644 --- a/src/oci/oce/models/work_request.py +++ b/src/oci/oce/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/work_request_error.py b/src/oci/oce/models/work_request_error.py index 25c75b1142..493ebc12a9 100644 --- a/src/oci/oce/models/work_request_error.py +++ b/src/oci/oce/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/work_request_log_entry.py b/src/oci/oce/models/work_request_log_entry.py index 80349f2a91..966040686f 100644 --- a/src/oci/oce/models/work_request_log_entry.py +++ b/src/oci/oce/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/work_request_resource.py b/src/oci/oce/models/work_request_resource.py index 492c6a625d..8847cd9ad5 100644 --- a/src/oci/oce/models/work_request_resource.py +++ b/src/oci/oce/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/workflow_monitor.py b/src/oci/oce/models/workflow_monitor.py index 3c54105b8c..d8c118a006 100644 --- a/src/oci/oce/models/workflow_monitor.py +++ b/src/oci/oce/models/workflow_monitor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/models/workflow_step.py b/src/oci/oce/models/workflow_step.py index 05396ea89a..2151e46901 100644 --- a/src/oci/oce/models/workflow_step.py +++ b/src/oci/oce/models/workflow_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oce/oce_instance_client.py b/src/oci/oce/oce_instance_client.py index 4b8a2248af..8dfd8eb15f 100644 --- a/src/oci/oce/oce_instance_client.py +++ b/src/oci/oce/oce_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oce/oce_instance_client_composite_operations.py b/src/oci/oce/oce_instance_client_composite_operations.py index ce960839a0..83646d0f12 100644 --- a/src/oci/oce/oce_instance_client_composite_operations.py +++ b/src/oci/oce/oce_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/oda/__init__.py b/src/oci/oda/__init__.py index 50dbdb1eb6..f249b0cf32 100644 --- a/src/oci/oda/__init__.py +++ b/src/oci/oda/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oda/models/__init__.py b/src/oci/oda/models/__init__.py index 6961a0633e..3982d73bf0 100644 --- a/src/oci/oda/models/__init__.py +++ b/src/oci/oda/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oda/models/change_oda_instance_compartment_details.py b/src/oci/oda/models/change_oda_instance_compartment_details.py index d7ac82dfe9..7e8b92b837 100644 --- a/src/oci/oda/models/change_oda_instance_compartment_details.py +++ b/src/oci/oda/models/change_oda_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/create_oda_instance_details.py b/src/oci/oda/models/create_oda_instance_details.py index e6663c8307..b91c2a420e 100644 --- a/src/oci/oda/models/create_oda_instance_details.py +++ b/src/oci/oda/models/create_oda_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/error_body.py b/src/oci/oda/models/error_body.py index 1dcc9b03fa..e442c1fea2 100644 --- a/src/oci/oda/models/error_body.py +++ b/src/oci/oda/models/error_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/oda_instance.py b/src/oci/oda/models/oda_instance.py index 1b9c162d46..01a9d90033 100644 --- a/src/oci/oda/models/oda_instance.py +++ b/src/oci/oda/models/oda_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/oda_instance_summary.py b/src/oci/oda/models/oda_instance_summary.py index ccd29445ef..d37ef61e4d 100644 --- a/src/oci/oda/models/oda_instance_summary.py +++ b/src/oci/oda/models/oda_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/update_oda_instance_details.py b/src/oci/oda/models/update_oda_instance_details.py index 1e89636e65..aedc5bee74 100644 --- a/src/oci/oda/models/update_oda_instance_details.py +++ b/src/oci/oda/models/update_oda_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/work_request.py b/src/oci/oda/models/work_request.py index 742a5a154b..1010ecebdc 100644 --- a/src/oci/oda/models/work_request.py +++ b/src/oci/oda/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/work_request_error.py b/src/oci/oda/models/work_request_error.py index cefcefcefa..74f90d0504 100644 --- a/src/oci/oda/models/work_request_error.py +++ b/src/oci/oda/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/work_request_log_entry.py b/src/oci/oda/models/work_request_log_entry.py index 381f70dbc5..1ff9ae4cb9 100644 --- a/src/oci/oda/models/work_request_log_entry.py +++ b/src/oci/oda/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/work_request_resource.py b/src/oci/oda/models/work_request_resource.py index 6510da62cd..90d2340cfc 100644 --- a/src/oci/oda/models/work_request_resource.py +++ b/src/oci/oda/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/models/work_request_summary.py b/src/oci/oda/models/work_request_summary.py index eefe08ebae..b9a39ea91e 100644 --- a/src/oci/oda/models/work_request_summary.py +++ b/src/oci/oda/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/oda/oda_client.py b/src/oci/oda/oda_client.py index d47f621dfc..6019cb00af 100644 --- a/src/oci/oda/oda_client.py +++ b/src/oci/oda/oda_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/oda/oda_client_composite_operations.py b/src/oci/oda/oda_client_composite_operations.py index 79948d9397..67be982357 100644 --- a/src/oci/oda/oda_client_composite_operations.py +++ b/src/oci/oda/oda_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/ons/__init__.py b/src/oci/ons/__init__.py index 6ba0f80fe5..6148a596b7 100644 --- a/src/oci/ons/__init__.py +++ b/src/oci/ons/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/ons/models/__init__.py b/src/oci/ons/models/__init__.py index 1193a07bff..9c7b5dfbb7 100644 --- a/src/oci/ons/models/__init__.py +++ b/src/oci/ons/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/ons/models/backoff_retry_policy.py b/src/oci/ons/models/backoff_retry_policy.py index ff073f422a..cb81918915 100644 --- a/src/oci/ons/models/backoff_retry_policy.py +++ b/src/oci/ons/models/backoff_retry_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/change_compartment_details.py b/src/oci/ons/models/change_compartment_details.py index f1b72cf19d..b38cd363ee 100644 --- a/src/oci/ons/models/change_compartment_details.py +++ b/src/oci/ons/models/change_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/confirmation_result.py b/src/oci/ons/models/confirmation_result.py index a8756bbd32..135645fede 100644 --- a/src/oci/ons/models/confirmation_result.py +++ b/src/oci/ons/models/confirmation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/create_subscription_details.py b/src/oci/ons/models/create_subscription_details.py index e0b9b8d007..969faff289 100644 --- a/src/oci/ons/models/create_subscription_details.py +++ b/src/oci/ons/models/create_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/create_topic_details.py b/src/oci/ons/models/create_topic_details.py index 8640c8b671..4aa24b0d47 100644 --- a/src/oci/ons/models/create_topic_details.py +++ b/src/oci/ons/models/create_topic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/delivery_policy.py b/src/oci/ons/models/delivery_policy.py index c32578d6e8..93f0377eab 100644 --- a/src/oci/ons/models/delivery_policy.py +++ b/src/oci/ons/models/delivery_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/message_details.py b/src/oci/ons/models/message_details.py index 746e691601..efb31c82ac 100644 --- a/src/oci/ons/models/message_details.py +++ b/src/oci/ons/models/message_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/notification_topic.py b/src/oci/ons/models/notification_topic.py index aca75ea00f..a0c0ec0554 100644 --- a/src/oci/ons/models/notification_topic.py +++ b/src/oci/ons/models/notification_topic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/notification_topic_summary.py b/src/oci/ons/models/notification_topic_summary.py index 43c7369afd..304d620a6c 100644 --- a/src/oci/ons/models/notification_topic_summary.py +++ b/src/oci/ons/models/notification_topic_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/publish_result.py b/src/oci/ons/models/publish_result.py index 0ea2902da1..9bab7d5797 100644 --- a/src/oci/ons/models/publish_result.py +++ b/src/oci/ons/models/publish_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/subscription.py b/src/oci/ons/models/subscription.py index 152736310c..db0108b185 100644 --- a/src/oci/ons/models/subscription.py +++ b/src/oci/ons/models/subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/subscription_summary.py b/src/oci/ons/models/subscription_summary.py index ceb782af33..63781d60b0 100644 --- a/src/oci/ons/models/subscription_summary.py +++ b/src/oci/ons/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/topic_attributes_details.py b/src/oci/ons/models/topic_attributes_details.py index 2c1bf1235c..ddd63a44fd 100644 --- a/src/oci/ons/models/topic_attributes_details.py +++ b/src/oci/ons/models/topic_attributes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/models/update_subscription_details.py b/src/oci/ons/models/update_subscription_details.py index e3a2df78fa..e6b684c700 100644 --- a/src/oci/ons/models/update_subscription_details.py +++ b/src/oci/ons/models/update_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/ons/notification_control_plane_client.py b/src/oci/ons/notification_control_plane_client.py index 5eb4b4a9fd..005fa051b6 100644 --- a/src/oci/ons/notification_control_plane_client.py +++ b/src/oci/ons/notification_control_plane_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/ons/notification_control_plane_client_composite_operations.py b/src/oci/ons/notification_control_plane_client_composite_operations.py index 5d19ba323d..064171ee88 100644 --- a/src/oci/ons/notification_control_plane_client_composite_operations.py +++ b/src/oci/ons/notification_control_plane_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/ons/notification_data_plane_client.py b/src/oci/ons/notification_data_plane_client.py index 76cb0e3f9d..e078cc3c7e 100644 --- a/src/oci/ons/notification_data_plane_client.py +++ b/src/oci/ons/notification_data_plane_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/ons/notification_data_plane_client_composite_operations.py b/src/oci/ons/notification_data_plane_client_composite_operations.py index 7925deed19..07bbdf27de 100644 --- a/src/oci/ons/notification_data_plane_client_composite_operations.py +++ b/src/oci/ons/notification_data_plane_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/os_management/__init__.py b/src/oci/os_management/__init__.py index 5fa2254f52..2e1a280280 100644 --- a/src/oci/os_management/__init__.py +++ b/src/oci/os_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/os_management/models/__init__.py b/src/oci/os_management/models/__init__.py index 660c2a1082..2be1bc39fd 100644 --- a/src/oci/os_management/models/__init__.py +++ b/src/oci/os_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/os_management/models/add_packages_to_software_source_details.py b/src/oci/os_management/models/add_packages_to_software_source_details.py index 8b522e03b3..9535d9b983 100644 --- a/src/oci/os_management/models/add_packages_to_software_source_details.py +++ b/src/oci/os_management/models/add_packages_to_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/api_error.py b/src/oci/os_management/models/api_error.py index c8a37cff1c..9d1b8590ac 100644 --- a/src/oci/os_management/models/api_error.py +++ b/src/oci/os_management/models/api_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/attach_child_software_source_to_managed_instance_details.py b/src/oci/os_management/models/attach_child_software_source_to_managed_instance_details.py index 097e04a540..ea5b004785 100644 --- a/src/oci/os_management/models/attach_child_software_source_to_managed_instance_details.py +++ b/src/oci/os_management/models/attach_child_software_source_to_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/attach_parent_software_source_to_managed_instance_details.py b/src/oci/os_management/models/attach_parent_software_source_to_managed_instance_details.py index ab2707a1ff..b23c47e59e 100644 --- a/src/oci/os_management/models/attach_parent_software_source_to_managed_instance_details.py +++ b/src/oci/os_management/models/attach_parent_software_source_to_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/available_software_source_summary.py b/src/oci/os_management/models/available_software_source_summary.py index d195d7ccee..fa44cbc749 100644 --- a/src/oci/os_management/models/available_software_source_summary.py +++ b/src/oci/os_management/models/available_software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/available_update_summary.py b/src/oci/os_management/models/available_update_summary.py index 210f6d5f1c..821f799417 100644 --- a/src/oci/os_management/models/available_update_summary.py +++ b/src/oci/os_management/models/available_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/change_managed_instance_group_compartment_details.py b/src/oci/os_management/models/change_managed_instance_group_compartment_details.py index 3b2f3d846a..9b22eb55d3 100644 --- a/src/oci/os_management/models/change_managed_instance_group_compartment_details.py +++ b/src/oci/os_management/models/change_managed_instance_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/change_scheduled_job_compartment_details.py b/src/oci/os_management/models/change_scheduled_job_compartment_details.py index 976852a5a7..1946ee65ce 100644 --- a/src/oci/os_management/models/change_scheduled_job_compartment_details.py +++ b/src/oci/os_management/models/change_scheduled_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/change_software_source_compartment_details.py b/src/oci/os_management/models/change_software_source_compartment_details.py index 5541928e71..376f107a05 100644 --- a/src/oci/os_management/models/change_software_source_compartment_details.py +++ b/src/oci/os_management/models/change_software_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/create_managed_instance_group_details.py b/src/oci/os_management/models/create_managed_instance_group_details.py index b97e49ba24..d47e5c4179 100644 --- a/src/oci/os_management/models/create_managed_instance_group_details.py +++ b/src/oci/os_management/models/create_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/create_scheduled_job_details.py b/src/oci/os_management/models/create_scheduled_job_details.py index ab13dc993f..4b564b7b40 100644 --- a/src/oci/os_management/models/create_scheduled_job_details.py +++ b/src/oci/os_management/models/create_scheduled_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/create_software_source_details.py b/src/oci/os_management/models/create_software_source_details.py index d48007521e..9e85ea8f2c 100644 --- a/src/oci/os_management/models/create_software_source_details.py +++ b/src/oci/os_management/models/create_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/detach_child_software_source_from_managed_instance_details.py b/src/oci/os_management/models/detach_child_software_source_from_managed_instance_details.py index aa0494f5f2..690227855f 100644 --- a/src/oci/os_management/models/detach_child_software_source_from_managed_instance_details.py +++ b/src/oci/os_management/models/detach_child_software_source_from_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/detach_parent_software_source_from_managed_instance_details.py b/src/oci/os_management/models/detach_parent_software_source_from_managed_instance_details.py index e518c833c3..70fb6cea7a 100644 --- a/src/oci/os_management/models/detach_parent_software_source_from_managed_instance_details.py +++ b/src/oci/os_management/models/detach_parent_software_source_from_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/errata_id.py b/src/oci/os_management/models/errata_id.py index 149102dd18..1819bfc283 100644 --- a/src/oci/os_management/models/errata_id.py +++ b/src/oci/os_management/models/errata_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/erratum.py b/src/oci/os_management/models/erratum.py index 32f03c9938..ea058ad8b4 100644 --- a/src/oci/os_management/models/erratum.py +++ b/src/oci/os_management/models/erratum.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/erratum_summary.py b/src/oci/os_management/models/erratum_summary.py index 47c6b062dd..2c4ed1f58e 100644 --- a/src/oci/os_management/models/erratum_summary.py +++ b/src/oci/os_management/models/erratum_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/id.py b/src/oci/os_management/models/id.py index 7c0fb675cc..cb63b049dd 100644 --- a/src/oci/os_management/models/id.py +++ b/src/oci/os_management/models/id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/installable_package_summary.py b/src/oci/os_management/models/installable_package_summary.py index f122357cf6..c7df982afa 100644 --- a/src/oci/os_management/models/installable_package_summary.py +++ b/src/oci/os_management/models/installable_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/installed_package_summary.py b/src/oci/os_management/models/installed_package_summary.py index 57c1d6c4ac..f0f7d4a389 100644 --- a/src/oci/os_management/models/installed_package_summary.py +++ b/src/oci/os_management/models/installed_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/managed_instance.py b/src/oci/os_management/models/managed_instance.py index 92d1b4e124..3c3489c40a 100644 --- a/src/oci/os_management/models/managed_instance.py +++ b/src/oci/os_management/models/managed_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/managed_instance_group.py b/src/oci/os_management/models/managed_instance_group.py index 61f99b2fbc..8b56e88e87 100644 --- a/src/oci/os_management/models/managed_instance_group.py +++ b/src/oci/os_management/models/managed_instance_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/managed_instance_group_summary.py b/src/oci/os_management/models/managed_instance_group_summary.py index 22811eec7e..ea9faeed78 100644 --- a/src/oci/os_management/models/managed_instance_group_summary.py +++ b/src/oci/os_management/models/managed_instance_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/managed_instance_summary.py b/src/oci/os_management/models/managed_instance_summary.py index 18a857b223..bbb4450645 100644 --- a/src/oci/os_management/models/managed_instance_summary.py +++ b/src/oci/os_management/models/managed_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/managed_instance_update_details.py b/src/oci/os_management/models/managed_instance_update_details.py index b6d546602d..4ffd192ab9 100644 --- a/src/oci/os_management/models/managed_instance_update_details.py +++ b/src/oci/os_management/models/managed_instance_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/package_name.py b/src/oci/os_management/models/package_name.py index f668b1ec9c..e5ccef2422 100644 --- a/src/oci/os_management/models/package_name.py +++ b/src/oci/os_management/models/package_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/recurrence.py b/src/oci/os_management/models/recurrence.py index c4d42c1bf7..2ab72b4e56 100644 --- a/src/oci/os_management/models/recurrence.py +++ b/src/oci/os_management/models/recurrence.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/remove_packages_from_software_source_details.py b/src/oci/os_management/models/remove_packages_from_software_source_details.py index 70b9ca984c..5c66e0ff93 100644 --- a/src/oci/os_management/models/remove_packages_from_software_source_details.py +++ b/src/oci/os_management/models/remove_packages_from_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/scheduled_job.py b/src/oci/os_management/models/scheduled_job.py index fb68fb37e7..b75e769d95 100644 --- a/src/oci/os_management/models/scheduled_job.py +++ b/src/oci/os_management/models/scheduled_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/scheduled_job_summary.py b/src/oci/os_management/models/scheduled_job_summary.py index 1d9cfe5204..e77e636d60 100644 --- a/src/oci/os_management/models/scheduled_job_summary.py +++ b/src/oci/os_management/models/scheduled_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_package.py b/src/oci/os_management/models/software_package.py index e44196fa92..984a472b5c 100644 --- a/src/oci/os_management/models/software_package.py +++ b/src/oci/os_management/models/software_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_package_dependency.py b/src/oci/os_management/models/software_package_dependency.py index b4e04e193a..a6c9eea58f 100644 --- a/src/oci/os_management/models/software_package_dependency.py +++ b/src/oci/os_management/models/software_package_dependency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_package_file.py b/src/oci/os_management/models/software_package_file.py index 1ef1f11eb6..fb2270dc21 100644 --- a/src/oci/os_management/models/software_package_file.py +++ b/src/oci/os_management/models/software_package_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_package_search_summary.py b/src/oci/os_management/models/software_package_search_summary.py index 0e3f6d51e9..8a38453114 100644 --- a/src/oci/os_management/models/software_package_search_summary.py +++ b/src/oci/os_management/models/software_package_search_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_package_summary.py b/src/oci/os_management/models/software_package_summary.py index 6e3fcece0d..4da5fbb907 100644 --- a/src/oci/os_management/models/software_package_summary.py +++ b/src/oci/os_management/models/software_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_source.py b/src/oci/os_management/models/software_source.py index 072b42d2f8..44d3c631bc 100644 --- a/src/oci/os_management/models/software_source.py +++ b/src/oci/os_management/models/software_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_source_id.py b/src/oci/os_management/models/software_source_id.py index a95580f2c1..d9dce2e8e4 100644 --- a/src/oci/os_management/models/software_source_id.py +++ b/src/oci/os_management/models/software_source_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/software_source_summary.py b/src/oci/os_management/models/software_source_summary.py index 3e627ea857..84d436185f 100644 --- a/src/oci/os_management/models/software_source_summary.py +++ b/src/oci/os_management/models/software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/updatable_package_summary.py b/src/oci/os_management/models/updatable_package_summary.py index 83b77eb5c7..2ebe0d80de 100644 --- a/src/oci/os_management/models/updatable_package_summary.py +++ b/src/oci/os_management/models/updatable_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/update_managed_instance_group_details.py b/src/oci/os_management/models/update_managed_instance_group_details.py index 3d171d69d1..1c1ca735f4 100644 --- a/src/oci/os_management/models/update_managed_instance_group_details.py +++ b/src/oci/os_management/models/update_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/update_scheduled_job_details.py b/src/oci/os_management/models/update_scheduled_job_details.py index 222f2d653f..538da67a2e 100644 --- a/src/oci/os_management/models/update_scheduled_job_details.py +++ b/src/oci/os_management/models/update_scheduled_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/update_software_source_details.py b/src/oci/os_management/models/update_software_source_details.py index 8c25d6eddf..c9b816f889 100644 --- a/src/oci/os_management/models/update_software_source_details.py +++ b/src/oci/os_management/models/update_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/work_request.py b/src/oci/os_management/models/work_request.py index e286f4f1c2..c196e49dec 100644 --- a/src/oci/os_management/models/work_request.py +++ b/src/oci/os_management/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/work_request_error.py b/src/oci/os_management/models/work_request_error.py index 374804fcaa..9dc7e80af5 100644 --- a/src/oci/os_management/models/work_request_error.py +++ b/src/oci/os_management/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/work_request_log_entry.py b/src/oci/os_management/models/work_request_log_entry.py index 906fc120d4..5406d0325b 100644 --- a/src/oci/os_management/models/work_request_log_entry.py +++ b/src/oci/os_management/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/work_request_resource.py b/src/oci/os_management/models/work_request_resource.py index 94655d80a2..1ea552f8a3 100644 --- a/src/oci/os_management/models/work_request_resource.py +++ b/src/oci/os_management/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/models/work_request_summary.py b/src/oci/os_management/models/work_request_summary.py index 2d25a47ccf..22c8998dae 100644 --- a/src/oci/os_management/models/work_request_summary.py +++ b/src/oci/os_management/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/os_management/os_management_client.py b/src/oci/os_management/os_management_client.py index 2d492607d7..fe1d397928 100644 --- a/src/oci/os_management/os_management_client.py +++ b/src/oci/os_management/os_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/os_management/os_management_client_composite_operations.py b/src/oci/os_management/os_management_client_composite_operations.py index f9dc4a7eaf..68ea308009 100644 --- a/src/oci/os_management/os_management_client_composite_operations.py +++ b/src/oci/os_management/os_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/pagination/__init__.py b/src/oci/pagination/__init__.py index 60f7a9c40d..d3a8c76fed 100644 --- a/src/oci/pagination/__init__.py +++ b/src/oci/pagination/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .pagination_utils import list_call_get_all_results, list_call_get_up_to_limit, list_call_get_all_results_generator, list_call_get_up_to_limit_generator diff --git a/src/oci/pagination/pagination_utils.py b/src/oci/pagination/pagination_utils.py index 9a5c4767d6..f4bbaaf892 100644 --- a/src/oci/pagination/pagination_utils.py +++ b/src/oci/pagination/pagination_utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .. import dns, object_storage from .. import retry diff --git a/src/oci/regions.py b/src/oci/regions.py index 95f17a08c5..75b26c5128 100644 --- a/src/oci/regions.py +++ b/src/oci/regions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from . import service_endpoints diff --git a/src/oci/request.py b/src/oci/request.py index 4fbfba13af..3125266d70 100644 --- a/src/oci/request.py +++ b/src/oci/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. class Request(object): diff --git a/src/oci/resource_manager/__init__.py b/src/oci/resource_manager/__init__.py index 1c6ddcd82b..7d009b506c 100644 --- a/src/oci/resource_manager/__init__.py +++ b/src/oci/resource_manager/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_manager/models/__init__.py b/src/oci/resource_manager/models/__init__.py index d39aafdf9a..7f214ee33e 100644 --- a/src/oci/resource_manager/models/__init__.py +++ b/src/oci/resource_manager/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_manager/models/apply_job_operation_details.py b/src/oci/resource_manager/models/apply_job_operation_details.py index 15cb3545d9..32632e5049 100644 --- a/src/oci/resource_manager/models/apply_job_operation_details.py +++ b/src/oci/resource_manager/models/apply_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details import JobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/apply_job_operation_details_summary.py b/src/oci/resource_manager/models/apply_job_operation_details_summary.py index 62948ea389..a0e2c2a041 100644 --- a/src/oci/resource_manager/models/apply_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/apply_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details_summary import JobOperationDetailsSummary from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/apply_job_plan_resolution.py b/src/oci/resource_manager/models/apply_job_plan_resolution.py index 44accfce40..5a490dd79d 100644 --- a/src/oci/resource_manager/models/apply_job_plan_resolution.py +++ b/src/oci/resource_manager/models/apply_job_plan_resolution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/change_stack_compartment_details.py b/src/oci/resource_manager/models/change_stack_compartment_details.py index 4ba7220212..29f6bf4f89 100644 --- a/src/oci/resource_manager/models/change_stack_compartment_details.py +++ b/src/oci/resource_manager/models/change_stack_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/config_source.py b/src/oci/resource_manager/models/config_source.py index d7574d1aea..d27e360922 100644 --- a/src/oci/resource_manager/models/config_source.py +++ b/src/oci/resource_manager/models/config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_apply_job_operation_details.py b/src/oci/resource_manager/models/create_apply_job_operation_details.py index b805e185f0..a017f78725 100644 --- a/src/oci/resource_manager/models/create_apply_job_operation_details.py +++ b/src/oci/resource_manager/models/create_apply_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_job_operation_details import CreateJobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_config_source_details.py b/src/oci/resource_manager/models/create_config_source_details.py index 2b50e9c531..3264362116 100644 --- a/src/oci/resource_manager/models/create_config_source_details.py +++ b/src/oci/resource_manager/models/create_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_destroy_job_operation_details.py b/src/oci/resource_manager/models/create_destroy_job_operation_details.py index 2cec5f39d0..bb36b322d5 100644 --- a/src/oci/resource_manager/models/create_destroy_job_operation_details.py +++ b/src/oci/resource_manager/models/create_destroy_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_job_operation_details import CreateJobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_import_tf_state_job_operation_details.py b/src/oci/resource_manager/models/create_import_tf_state_job_operation_details.py index b05222385d..7671028f78 100644 --- a/src/oci/resource_manager/models/create_import_tf_state_job_operation_details.py +++ b/src/oci/resource_manager/models/create_import_tf_state_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_job_operation_details import CreateJobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_job_details.py b/src/oci/resource_manager/models/create_job_details.py index b6f210873f..3f24096824 100644 --- a/src/oci/resource_manager/models/create_job_details.py +++ b/src/oci/resource_manager/models/create_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_job_operation_details.py b/src/oci/resource_manager/models/create_job_operation_details.py index b2d421de21..00e52533ba 100644 --- a/src/oci/resource_manager/models/create_job_operation_details.py +++ b/src/oci/resource_manager/models/create_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_plan_job_operation_details.py b/src/oci/resource_manager/models/create_plan_job_operation_details.py index c9d068f913..be34d7e7a9 100644 --- a/src/oci/resource_manager/models/create_plan_job_operation_details.py +++ b/src/oci/resource_manager/models/create_plan_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_job_operation_details import CreateJobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_stack_details.py b/src/oci/resource_manager/models/create_stack_details.py index e63bf40479..24bf97a470 100644 --- a/src/oci/resource_manager/models/create_stack_details.py +++ b/src/oci/resource_manager/models/create_stack_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/create_zip_upload_config_source_details.py b/src/oci/resource_manager/models/create_zip_upload_config_source_details.py index c307dc0541..a46d8ae994 100644 --- a/src/oci/resource_manager/models/create_zip_upload_config_source_details.py +++ b/src/oci/resource_manager/models/create_zip_upload_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .create_config_source_details import CreateConfigSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/destroy_job_operation_details.py b/src/oci/resource_manager/models/destroy_job_operation_details.py index 85faaa9330..2763b4b932 100644 --- a/src/oci/resource_manager/models/destroy_job_operation_details.py +++ b/src/oci/resource_manager/models/destroy_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details import JobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/destroy_job_operation_details_summary.py b/src/oci/resource_manager/models/destroy_job_operation_details_summary.py index abf407e2cc..76901f8264 100644 --- a/src/oci/resource_manager/models/destroy_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/destroy_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details_summary import JobOperationDetailsSummary from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/failure_details.py b/src/oci/resource_manager/models/failure_details.py index f2ddfa60b6..19d122aeec 100644 --- a/src/oci/resource_manager/models/failure_details.py +++ b/src/oci/resource_manager/models/failure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/import_tf_state_job_operation_details.py b/src/oci/resource_manager/models/import_tf_state_job_operation_details.py index 4b71cd1ba0..14154d7545 100644 --- a/src/oci/resource_manager/models/import_tf_state_job_operation_details.py +++ b/src/oci/resource_manager/models/import_tf_state_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details import JobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/import_tf_state_job_operation_details_summary.py b/src/oci/resource_manager/models/import_tf_state_job_operation_details_summary.py index 17ac49b6d5..cfdd58d785 100644 --- a/src/oci/resource_manager/models/import_tf_state_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/import_tf_state_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details_summary import JobOperationDetailsSummary from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/job.py b/src/oci/resource_manager/models/job.py index 92c1b1d199..3a22be28e0 100644 --- a/src/oci/resource_manager/models/job.py +++ b/src/oci/resource_manager/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/job_operation_details.py b/src/oci/resource_manager/models/job_operation_details.py index 4a3c9c34c9..87662c4680 100644 --- a/src/oci/resource_manager/models/job_operation_details.py +++ b/src/oci/resource_manager/models/job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/job_operation_details_summary.py b/src/oci/resource_manager/models/job_operation_details_summary.py index 0d80e1d215..c64fa025e2 100644 --- a/src/oci/resource_manager/models/job_operation_details_summary.py +++ b/src/oci/resource_manager/models/job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/job_summary.py b/src/oci/resource_manager/models/job_summary.py index dccf10e27e..1a567a7b6e 100644 --- a/src/oci/resource_manager/models/job_summary.py +++ b/src/oci/resource_manager/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/log_entry.py b/src/oci/resource_manager/models/log_entry.py index 3110a0e16d..919f5df805 100644 --- a/src/oci/resource_manager/models/log_entry.py +++ b/src/oci/resource_manager/models/log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/plan_job_operation_details.py b/src/oci/resource_manager/models/plan_job_operation_details.py index 2028ba0aa4..5ffbca8f6e 100644 --- a/src/oci/resource_manager/models/plan_job_operation_details.py +++ b/src/oci/resource_manager/models/plan_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details import JobOperationDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/plan_job_operation_details_summary.py b/src/oci/resource_manager/models/plan_job_operation_details_summary.py index efbcfdea14..57790d712e 100644 --- a/src/oci/resource_manager/models/plan_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/plan_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .job_operation_details_summary import JobOperationDetailsSummary from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/stack.py b/src/oci/resource_manager/models/stack.py index f5afbc327d..40ddd97f2b 100644 --- a/src/oci/resource_manager/models/stack.py +++ b/src/oci/resource_manager/models/stack.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/stack_summary.py b/src/oci/resource_manager/models/stack_summary.py index 22b058d339..d8d122fd26 100644 --- a/src/oci/resource_manager/models/stack_summary.py +++ b/src/oci/resource_manager/models/stack_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/terraform_version_collection.py b/src/oci/resource_manager/models/terraform_version_collection.py index 44cc0dc875..c24542e1c2 100644 --- a/src/oci/resource_manager/models/terraform_version_collection.py +++ b/src/oci/resource_manager/models/terraform_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/terraform_version_summary.py b/src/oci/resource_manager/models/terraform_version_summary.py index f15463d2f4..33c3d5d1f5 100644 --- a/src/oci/resource_manager/models/terraform_version_summary.py +++ b/src/oci/resource_manager/models/terraform_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/update_config_source_details.py b/src/oci/resource_manager/models/update_config_source_details.py index a8b5f8024e..d40885ec0b 100644 --- a/src/oci/resource_manager/models/update_config_source_details.py +++ b/src/oci/resource_manager/models/update_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/update_job_details.py b/src/oci/resource_manager/models/update_job_details.py index 9fb917aa5b..dc990c1c5c 100644 --- a/src/oci/resource_manager/models/update_job_details.py +++ b/src/oci/resource_manager/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/update_stack_details.py b/src/oci/resource_manager/models/update_stack_details.py index 5bd937fa91..c2312e927b 100644 --- a/src/oci/resource_manager/models/update_stack_details.py +++ b/src/oci/resource_manager/models/update_stack_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/update_zip_upload_config_source_details.py b/src/oci/resource_manager/models/update_zip_upload_config_source_details.py index ca934a0416..bcafd25cc2 100644 --- a/src/oci/resource_manager/models/update_zip_upload_config_source_details.py +++ b/src/oci/resource_manager/models/update_zip_upload_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .update_config_source_details import UpdateConfigSourceDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/work_request.py b/src/oci/resource_manager/models/work_request.py index eb2c795104..9f2ad9e16c 100644 --- a/src/oci/resource_manager/models/work_request.py +++ b/src/oci/resource_manager/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/work_request_error.py b/src/oci/resource_manager/models/work_request_error.py index 6745227d07..4ee2eb7be0 100644 --- a/src/oci/resource_manager/models/work_request_error.py +++ b/src/oci/resource_manager/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/work_request_log_entry.py b/src/oci/resource_manager/models/work_request_log_entry.py index 8673fbb79a..f9423ee228 100644 --- a/src/oci/resource_manager/models/work_request_log_entry.py +++ b/src/oci/resource_manager/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/work_request_resource.py b/src/oci/resource_manager/models/work_request_resource.py index eca8688b7e..b6ca429d7f 100644 --- a/src/oci/resource_manager/models/work_request_resource.py +++ b/src/oci/resource_manager/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/work_request_summary.py b/src/oci/resource_manager/models/work_request_summary.py index d95989a226..1e928c37de 100644 --- a/src/oci/resource_manager/models/work_request_summary.py +++ b/src/oci/resource_manager/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/models/zip_upload_config_source.py b/src/oci/resource_manager/models/zip_upload_config_source.py index 0c2056b279..e31b9c9064 100644 --- a/src/oci/resource_manager/models/zip_upload_config_source.py +++ b/src/oci/resource_manager/models/zip_upload_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .config_source import ConfigSource from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_manager/resource_manager_client.py b/src/oci/resource_manager/resource_manager_client.py index 1030d005b3..274b25e26b 100644 --- a/src/oci/resource_manager/resource_manager_client.py +++ b/src/oci/resource_manager/resource_manager_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_manager/resource_manager_client_composite_operations.py b/src/oci/resource_manager/resource_manager_client_composite_operations.py index 5c86f71b48..1e1873a67d 100644 --- a/src/oci/resource_manager/resource_manager_client_composite_operations.py +++ b/src/oci/resource_manager/resource_manager_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/resource_search/__init__.py b/src/oci/resource_search/__init__.py index 8ac0be1f35..e519a6ddf5 100644 --- a/src/oci/resource_search/__init__.py +++ b/src/oci/resource_search/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_search/models/__init__.py b/src/oci/resource_search/models/__init__.py index 0dc5416750..984924733a 100644 --- a/src/oci/resource_search/models/__init__.py +++ b/src/oci/resource_search/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_search/models/free_text_search_details.py b/src/oci/resource_search/models/free_text_search_details.py index 54f1916e75..9e8123a954 100644 --- a/src/oci/resource_search/models/free_text_search_details.py +++ b/src/oci/resource_search/models/free_text_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .search_details import SearchDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/queryable_field_description.py b/src/oci/resource_search/models/queryable_field_description.py index 5cdb6c8b30..ef0f7775e1 100644 --- a/src/oci/resource_search/models/queryable_field_description.py +++ b/src/oci/resource_search/models/queryable_field_description.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/resource_summary.py b/src/oci/resource_search/models/resource_summary.py index 91b6b2124c..c51ea0924f 100644 --- a/src/oci/resource_search/models/resource_summary.py +++ b/src/oci/resource_search/models/resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/resource_summary_collection.py b/src/oci/resource_search/models/resource_summary_collection.py index c7e77f7104..8ac7e94130 100644 --- a/src/oci/resource_search/models/resource_summary_collection.py +++ b/src/oci/resource_search/models/resource_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/resource_type.py b/src/oci/resource_search/models/resource_type.py index fdac3f7334..c6de9bbfdc 100644 --- a/src/oci/resource_search/models/resource_type.py +++ b/src/oci/resource_search/models/resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/search_context.py b/src/oci/resource_search/models/search_context.py index 77e62633e1..5c3acc7241 100644 --- a/src/oci/resource_search/models/search_context.py +++ b/src/oci/resource_search/models/search_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/search_details.py b/src/oci/resource_search/models/search_details.py index 07f8e25bfc..aa7ea1b32f 100644 --- a/src/oci/resource_search/models/search_details.py +++ b/src/oci/resource_search/models/search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/models/structured_search_details.py b/src/oci/resource_search/models/structured_search_details.py index cd1e3f4762..c254a53500 100644 --- a/src/oci/resource_search/models/structured_search_details.py +++ b/src/oci/resource_search/models/structured_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .search_details import SearchDetails from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/resource_search/resource_search_client.py b/src/oci/resource_search/resource_search_client.py index 03681b4eaf..ed4c62e128 100644 --- a/src/oci/resource_search/resource_search_client.py +++ b/src/oci/resource_search/resource_search_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/resource_search/resource_search_client_composite_operations.py b/src/oci/resource_search/resource_search_client_composite_operations.py index ba0cb1b094..5aa233245b 100644 --- a/src/oci/resource_search/resource_search_client_composite_operations.py +++ b/src/oci/resource_search/resource_search_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/response.py b/src/oci/response.py index b83d899743..13e6e70e8a 100644 --- a/src/oci/response.py +++ b/src/oci/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .constants import HEADER_NEXT_PAGE, HEADER_REQUEST_ID diff --git a/src/oci/retry/__init__.py b/src/oci/retry/__init__.py index 29ddc68548..6e0a81bd43 100644 --- a/src/oci/retry/__init__.py +++ b/src/oci/retry/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .retry import BACKOFF_FULL_JITTER_VALUE, BACKOFF_EQUAL_JITTER_VALUE, BACKOFF_FULL_JITTER_EQUAL_ON_THROTTLE_VALUE from .retry import RetryStrategyBuilder, NoneRetryStrategy, ExponentialBackoffRetryStrategyBase, ExponentialBackoffWithFullJitterRetryStrategy, ExponentialBackoffWithEqualJitterRetryStrategy, ExponentialBackoffWithFullJitterEqualForThrottlesRetryStrategy diff --git a/src/oci/retry/retry.py b/src/oci/retry/retry.py index 108e915e94..bc26fb7aba 100644 --- a/src/oci/retry/retry.py +++ b/src/oci/retry/retry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # Contains classes for defining and building retry strategies. diff --git a/src/oci/retry/retry_checkers.py b/src/oci/retry/retry_checkers.py index 0ca4516bea..e3e5aa1d08 100644 --- a/src/oci/retry/retry_checkers.py +++ b/src/oci/retry/retry_checkers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # Contains helper classes that can say whether a retry should occur based on various criteria, such as a maximum number of retries being # hit or the exception received from a service call (or the response from the service call if it didn't exception out). diff --git a/src/oci/retry/retry_sleep_utils.py b/src/oci/retry/retry_sleep_utils.py index c9b96e1009..6f479adcbc 100644 --- a/src/oci/retry/retry_sleep_utils.py +++ b/src/oci/retry/retry_sleep_utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import random diff --git a/src/oci/service_endpoints.py b/src/oci/service_endpoints.py index dd84bb19ef..02dad48f59 100644 --- a/src/oci/service_endpoints.py +++ b/src/oci/service_endpoints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. SERVICE_ENDPOINTS = { "announcement": "https://announcements.{domain}", diff --git a/src/oci/signer.py b/src/oci/signer.py index 1375f512ce..ecd4696c4c 100644 --- a/src/oci/signer.py +++ b/src/oci/signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/streaming/__init__.py b/src/oci/streaming/__init__.py index 251220bd71..9d7788a189 100644 --- a/src/oci/streaming/__init__.py +++ b/src/oci/streaming/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/streaming/models/__init__.py b/src/oci/streaming/models/__init__.py index 6fd6b0a2b1..7a9492f384 100644 --- a/src/oci/streaming/models/__init__.py +++ b/src/oci/streaming/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/streaming/models/archiver.py b/src/oci/streaming/models/archiver.py index 1b8847f6e7..7d0dbadefb 100644 --- a/src/oci/streaming/models/archiver.py +++ b/src/oci/streaming/models/archiver.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/archiver_error.py b/src/oci/streaming/models/archiver_error.py index 3c16224c44..9704e7ba77 100644 --- a/src/oci/streaming/models/archiver_error.py +++ b/src/oci/streaming/models/archiver_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/change_connect_harness_compartment_details.py b/src/oci/streaming/models/change_connect_harness_compartment_details.py index df429cb881..67b3386394 100644 --- a/src/oci/streaming/models/change_connect_harness_compartment_details.py +++ b/src/oci/streaming/models/change_connect_harness_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/change_stream_compartment_details.py b/src/oci/streaming/models/change_stream_compartment_details.py index b2bc9f4b45..1f6393e1b8 100644 --- a/src/oci/streaming/models/change_stream_compartment_details.py +++ b/src/oci/streaming/models/change_stream_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/change_stream_pool_compartment_details.py b/src/oci/streaming/models/change_stream_pool_compartment_details.py index 075486c1f5..7e0991f544 100644 --- a/src/oci/streaming/models/change_stream_pool_compartment_details.py +++ b/src/oci/streaming/models/change_stream_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/connect_harness.py b/src/oci/streaming/models/connect_harness.py index 117dea4e1b..139998e347 100644 --- a/src/oci/streaming/models/connect_harness.py +++ b/src/oci/streaming/models/connect_harness.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/connect_harness_summary.py b/src/oci/streaming/models/connect_harness_summary.py index 53b7a7abee..2394ef2291 100644 --- a/src/oci/streaming/models/connect_harness_summary.py +++ b/src/oci/streaming/models/connect_harness_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_archiver_details.py b/src/oci/streaming/models/create_archiver_details.py index b2d4aad1fe..73767f715a 100644 --- a/src/oci/streaming/models/create_archiver_details.py +++ b/src/oci/streaming/models/create_archiver_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_connect_harness_details.py b/src/oci/streaming/models/create_connect_harness_details.py index 0b95812275..33ea8cd5a9 100644 --- a/src/oci/streaming/models/create_connect_harness_details.py +++ b/src/oci/streaming/models/create_connect_harness_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_cursor_details.py b/src/oci/streaming/models/create_cursor_details.py index f050fbf1d3..39f7a3a376 100644 --- a/src/oci/streaming/models/create_cursor_details.py +++ b/src/oci/streaming/models/create_cursor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_group_cursor_details.py b/src/oci/streaming/models/create_group_cursor_details.py index 409265f87f..0b955ad09f 100644 --- a/src/oci/streaming/models/create_group_cursor_details.py +++ b/src/oci/streaming/models/create_group_cursor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_stream_details.py b/src/oci/streaming/models/create_stream_details.py index 61bc8ecea2..1359cdc9bf 100644 --- a/src/oci/streaming/models/create_stream_details.py +++ b/src/oci/streaming/models/create_stream_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/create_stream_pool_details.py b/src/oci/streaming/models/create_stream_pool_details.py index f5de0217b4..31f46f30fd 100644 --- a/src/oci/streaming/models/create_stream_pool_details.py +++ b/src/oci/streaming/models/create_stream_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/cursor.py b/src/oci/streaming/models/cursor.py index 5a29874599..056513d88b 100644 --- a/src/oci/streaming/models/cursor.py +++ b/src/oci/streaming/models/cursor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/group.py b/src/oci/streaming/models/group.py index 46ab48b3f2..fbc03f9827 100644 --- a/src/oci/streaming/models/group.py +++ b/src/oci/streaming/models/group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/kafka_settings.py b/src/oci/streaming/models/kafka_settings.py index ba15c5430d..9edcef6064 100644 --- a/src/oci/streaming/models/kafka_settings.py +++ b/src/oci/streaming/models/kafka_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/message.py b/src/oci/streaming/models/message.py index 6d16d5968e..006925d7d5 100644 --- a/src/oci/streaming/models/message.py +++ b/src/oci/streaming/models/message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/partition_reservation.py b/src/oci/streaming/models/partition_reservation.py index 9f6220a187..eb0364c9bf 100644 --- a/src/oci/streaming/models/partition_reservation.py +++ b/src/oci/streaming/models/partition_reservation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/put_messages_details.py b/src/oci/streaming/models/put_messages_details.py index 1b0535391c..84039df45f 100644 --- a/src/oci/streaming/models/put_messages_details.py +++ b/src/oci/streaming/models/put_messages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/put_messages_details_entry.py b/src/oci/streaming/models/put_messages_details_entry.py index 58c47756e0..b924a86fda 100644 --- a/src/oci/streaming/models/put_messages_details_entry.py +++ b/src/oci/streaming/models/put_messages_details_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/put_messages_result.py b/src/oci/streaming/models/put_messages_result.py index 80498a6d66..f279e6eb8e 100644 --- a/src/oci/streaming/models/put_messages_result.py +++ b/src/oci/streaming/models/put_messages_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/put_messages_result_entry.py b/src/oci/streaming/models/put_messages_result_entry.py index 39b839f590..8bd3bb7c06 100644 --- a/src/oci/streaming/models/put_messages_result_entry.py +++ b/src/oci/streaming/models/put_messages_result_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/stream.py b/src/oci/streaming/models/stream.py index ba34c84ff4..2bb5774c1b 100644 --- a/src/oci/streaming/models/stream.py +++ b/src/oci/streaming/models/stream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/stream_pool.py b/src/oci/streaming/models/stream_pool.py index 279c1585c8..bc06b9feef 100644 --- a/src/oci/streaming/models/stream_pool.py +++ b/src/oci/streaming/models/stream_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/stream_pool_summary.py b/src/oci/streaming/models/stream_pool_summary.py index 73a9ad9333..21fced3a78 100644 --- a/src/oci/streaming/models/stream_pool_summary.py +++ b/src/oci/streaming/models/stream_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/stream_summary.py b/src/oci/streaming/models/stream_summary.py index 0350939ac0..93dc80fac7 100644 --- a/src/oci/streaming/models/stream_summary.py +++ b/src/oci/streaming/models/stream_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/update_archiver_details.py b/src/oci/streaming/models/update_archiver_details.py index dcffd213d7..412aac74b2 100644 --- a/src/oci/streaming/models/update_archiver_details.py +++ b/src/oci/streaming/models/update_archiver_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/update_connect_harness_details.py b/src/oci/streaming/models/update_connect_harness_details.py index 75fac0ae07..8d8cad433a 100644 --- a/src/oci/streaming/models/update_connect_harness_details.py +++ b/src/oci/streaming/models/update_connect_harness_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/update_group_details.py b/src/oci/streaming/models/update_group_details.py index 8ec69b833c..f077d8149f 100644 --- a/src/oci/streaming/models/update_group_details.py +++ b/src/oci/streaming/models/update_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/update_stream_details.py b/src/oci/streaming/models/update_stream_details.py index 358ee6abe8..55c84663cc 100644 --- a/src/oci/streaming/models/update_stream_details.py +++ b/src/oci/streaming/models/update_stream_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/models/update_stream_pool_details.py b/src/oci/streaming/models/update_stream_pool_details.py index b24ec4af07..23d2147a7c 100644 --- a/src/oci/streaming/models/update_stream_pool_details.py +++ b/src/oci/streaming/models/update_stream_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/streaming/stream_admin_client.py b/src/oci/streaming/stream_admin_client.py index 924ee85310..62088e6485 100644 --- a/src/oci/streaming/stream_admin_client.py +++ b/src/oci/streaming/stream_admin_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/streaming/stream_admin_client_composite_operations.py b/src/oci/streaming/stream_admin_client_composite_operations.py index ddb3b57058..598f435cce 100644 --- a/src/oci/streaming/stream_admin_client_composite_operations.py +++ b/src/oci/streaming/stream_admin_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/streaming/stream_client.py b/src/oci/streaming/stream_client.py index 2d232fe649..6874739cea 100644 --- a/src/oci/streaming/stream_client.py +++ b/src/oci/streaming/stream_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/streaming/stream_client_composite_operations.py b/src/oci/streaming/stream_client_composite_operations.py index 03637bb05b..a56247accb 100644 --- a/src/oci/streaming/stream_client_composite_operations.py +++ b/src/oci/streaming/stream_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/util.py b/src/oci/util.py index c12c09c3c9..f126fc7894 100644 --- a/src/oci/util.py +++ b/src/oci/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import base64 import datetime diff --git a/src/oci/version.py b/src/oci/version.py index 23861e0ae9..de436b7a0a 100644 --- a/src/oci/version.py +++ b/src/oci/version.py @@ -1,4 +1,4 @@ # coding: utf-8 # Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. -__version__ = "2.8.0" +__version__ = "2.9.0" diff --git a/src/oci/waas/__init__.py b/src/oci/waas/__init__.py index b85e963252..6a72241d0b 100644 --- a/src/oci/waas/__init__.py +++ b/src/oci/waas/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/waas/models/__init__.py b/src/oci/waas/models/__init__.py index d56ead749d..06e2765a62 100644 --- a/src/oci/waas/models/__init__.py +++ b/src/oci/waas/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/waas/models/access_rule.py b/src/oci/waas/models/access_rule.py index b5a8c77595..5f8118f104 100644 --- a/src/oci/waas/models/access_rule.py +++ b/src/oci/waas/models/access_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/access_rule_criteria.py b/src/oci/waas/models/access_rule_criteria.py index 3aefbf8eae..77cc32440f 100644 --- a/src/oci/waas/models/access_rule_criteria.py +++ b/src/oci/waas/models/access_rule_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/address_list.py b/src/oci/waas/models/address_list.py index 0c58367024..096c864faf 100644 --- a/src/oci/waas/models/address_list.py +++ b/src/oci/waas/models/address_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/address_list_summary.py b/src/oci/waas/models/address_list_summary.py index fef06c90a1..dc35e9582d 100644 --- a/src/oci/waas/models/address_list_summary.py +++ b/src/oci/waas/models/address_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/address_rate_limiting.py b/src/oci/waas/models/address_rate_limiting.py index c0afc60d58..7df56a0248 100644 --- a/src/oci/waas/models/address_rate_limiting.py +++ b/src/oci/waas/models/address_rate_limiting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/block_challenge_settings.py b/src/oci/waas/models/block_challenge_settings.py index 83223a026f..b99e71cded 100644 --- a/src/oci/waas/models/block_challenge_settings.py +++ b/src/oci/waas/models/block_challenge_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/caching_rule.py b/src/oci/waas/models/caching_rule.py index 52e4ae10e8..e79f83d43f 100644 --- a/src/oci/waas/models/caching_rule.py +++ b/src/oci/waas/models/caching_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/caching_rule_criteria.py b/src/oci/waas/models/caching_rule_criteria.py index 261edd71ca..937f31edbc 100644 --- a/src/oci/waas/models/caching_rule_criteria.py +++ b/src/oci/waas/models/caching_rule_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/caching_rule_summary.py b/src/oci/waas/models/caching_rule_summary.py index 72a0054202..36c01d2290 100644 --- a/src/oci/waas/models/caching_rule_summary.py +++ b/src/oci/waas/models/caching_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/captcha.py b/src/oci/waas/models/captcha.py index e8cf44782b..6f12b980a1 100644 --- a/src/oci/waas/models/captcha.py +++ b/src/oci/waas/models/captcha.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate.py b/src/oci/waas/models/certificate.py index 52fb17e55b..500a283823 100644 --- a/src/oci/waas/models/certificate.py +++ b/src/oci/waas/models/certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate_extensions.py b/src/oci/waas/models/certificate_extensions.py index b57313082b..2b706f559a 100644 --- a/src/oci/waas/models/certificate_extensions.py +++ b/src/oci/waas/models/certificate_extensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate_issuer_name.py b/src/oci/waas/models/certificate_issuer_name.py index 0fc078ac67..f0fb0af5fe 100644 --- a/src/oci/waas/models/certificate_issuer_name.py +++ b/src/oci/waas/models/certificate_issuer_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate_public_key_info.py b/src/oci/waas/models/certificate_public_key_info.py index 759948f62f..03f8a74fde 100644 --- a/src/oci/waas/models/certificate_public_key_info.py +++ b/src/oci/waas/models/certificate_public_key_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate_subject_name.py b/src/oci/waas/models/certificate_subject_name.py index 10d4461c76..b80f767d4f 100644 --- a/src/oci/waas/models/certificate_subject_name.py +++ b/src/oci/waas/models/certificate_subject_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/certificate_summary.py b/src/oci/waas/models/certificate_summary.py index 3c330faba7..39de410a65 100644 --- a/src/oci/waas/models/certificate_summary.py +++ b/src/oci/waas/models/certificate_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/change_address_list_compartment_details.py b/src/oci/waas/models/change_address_list_compartment_details.py index 9b0ecc9855..3235bc2d9d 100644 --- a/src/oci/waas/models/change_address_list_compartment_details.py +++ b/src/oci/waas/models/change_address_list_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/change_certificate_compartment_details.py b/src/oci/waas/models/change_certificate_compartment_details.py index 1f19ae0035..189da7bef0 100644 --- a/src/oci/waas/models/change_certificate_compartment_details.py +++ b/src/oci/waas/models/change_certificate_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/change_custom_protection_rule_compartment_details.py b/src/oci/waas/models/change_custom_protection_rule_compartment_details.py index b298c497f8..e3203857a9 100644 --- a/src/oci/waas/models/change_custom_protection_rule_compartment_details.py +++ b/src/oci/waas/models/change_custom_protection_rule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/change_http_redirect_compartment_details.py b/src/oci/waas/models/change_http_redirect_compartment_details.py index 9792c86f95..c8b5c60843 100644 --- a/src/oci/waas/models/change_http_redirect_compartment_details.py +++ b/src/oci/waas/models/change_http_redirect_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/change_waas_policy_compartment_details.py b/src/oci/waas/models/change_waas_policy_compartment_details.py index 37b9fd4e1b..470fb0f54a 100644 --- a/src/oci/waas/models/change_waas_policy_compartment_details.py +++ b/src/oci/waas/models/change_waas_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/create_address_list_details.py b/src/oci/waas/models/create_address_list_details.py index 442d13d762..976a6e1e86 100644 --- a/src/oci/waas/models/create_address_list_details.py +++ b/src/oci/waas/models/create_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/create_certificate_details.py b/src/oci/waas/models/create_certificate_details.py index 34349817a0..a015d11576 100644 --- a/src/oci/waas/models/create_certificate_details.py +++ b/src/oci/waas/models/create_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/create_custom_protection_rule_details.py b/src/oci/waas/models/create_custom_protection_rule_details.py index 435418392d..632f7f1bc9 100644 --- a/src/oci/waas/models/create_custom_protection_rule_details.py +++ b/src/oci/waas/models/create_custom_protection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/create_http_redirect_details.py b/src/oci/waas/models/create_http_redirect_details.py index 6864117971..fae09aa530 100644 --- a/src/oci/waas/models/create_http_redirect_details.py +++ b/src/oci/waas/models/create_http_redirect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/create_waas_policy_details.py b/src/oci/waas/models/create_waas_policy_details.py index 40453f08b9..9463662798 100644 --- a/src/oci/waas/models/create_waas_policy_details.py +++ b/src/oci/waas/models/create_waas_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/custom_protection_rule.py b/src/oci/waas/models/custom_protection_rule.py index 8c3a718fd1..d882c54a97 100644 --- a/src/oci/waas/models/custom_protection_rule.py +++ b/src/oci/waas/models/custom_protection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/custom_protection_rule_setting.py b/src/oci/waas/models/custom_protection_rule_setting.py index 5023083b2e..888a4e9f02 100644 --- a/src/oci/waas/models/custom_protection_rule_setting.py +++ b/src/oci/waas/models/custom_protection_rule_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/custom_protection_rule_summary.py b/src/oci/waas/models/custom_protection_rule_summary.py index 4fe6ff9c6f..cec372377c 100644 --- a/src/oci/waas/models/custom_protection_rule_summary.py +++ b/src/oci/waas/models/custom_protection_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/device_fingerprint_challenge.py b/src/oci/waas/models/device_fingerprint_challenge.py index ba3bf3867f..316065aa36 100644 --- a/src/oci/waas/models/device_fingerprint_challenge.py +++ b/src/oci/waas/models/device_fingerprint_challenge.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/edge_subnet.py b/src/oci/waas/models/edge_subnet.py index 9d7bb239da..96eb303457 100644 --- a/src/oci/waas/models/edge_subnet.py +++ b/src/oci/waas/models/edge_subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/good_bot.py b/src/oci/waas/models/good_bot.py index 277741198f..c2005e26d6 100644 --- a/src/oci/waas/models/good_bot.py +++ b/src/oci/waas/models/good_bot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/header.py b/src/oci/waas/models/header.py index 71fe7c0a64..f7119bcc58 100644 --- a/src/oci/waas/models/header.py +++ b/src/oci/waas/models/header.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/http_redirect.py b/src/oci/waas/models/http_redirect.py index bf075afc3e..52a8befa95 100644 --- a/src/oci/waas/models/http_redirect.py +++ b/src/oci/waas/models/http_redirect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/http_redirect_summary.py b/src/oci/waas/models/http_redirect_summary.py index b29b3ad175..3621a36174 100644 --- a/src/oci/waas/models/http_redirect_summary.py +++ b/src/oci/waas/models/http_redirect_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/http_redirect_target.py b/src/oci/waas/models/http_redirect_target.py index 1b45207909..9f4a356f79 100644 --- a/src/oci/waas/models/http_redirect_target.py +++ b/src/oci/waas/models/http_redirect_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/human_interaction_challenge.py b/src/oci/waas/models/human_interaction_challenge.py index 1125ca69e3..37b29e0111 100644 --- a/src/oci/waas/models/human_interaction_challenge.py +++ b/src/oci/waas/models/human_interaction_challenge.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/js_challenge.py b/src/oci/waas/models/js_challenge.py index b897df4acb..64a8bbcc19 100644 --- a/src/oci/waas/models/js_challenge.py +++ b/src/oci/waas/models/js_challenge.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/origin.py b/src/oci/waas/models/origin.py index 86955d2852..422fe014a1 100644 --- a/src/oci/waas/models/origin.py +++ b/src/oci/waas/models/origin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/origin_group.py b/src/oci/waas/models/origin_group.py index 3d9c15a018..ee826390d2 100644 --- a/src/oci/waas/models/origin_group.py +++ b/src/oci/waas/models/origin_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/origin_group_origins.py b/src/oci/waas/models/origin_group_origins.py index 6c695886a0..527a5a1997 100644 --- a/src/oci/waas/models/origin_group_origins.py +++ b/src/oci/waas/models/origin_group_origins.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/policy_config.py b/src/oci/waas/models/policy_config.py index 621a603e43..501c68b379 100644 --- a/src/oci/waas/models/policy_config.py +++ b/src/oci/waas/models/policy_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/protection_rule.py b/src/oci/waas/models/protection_rule.py index 138df4534a..7240d61f85 100644 --- a/src/oci/waas/models/protection_rule.py +++ b/src/oci/waas/models/protection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/protection_rule_action.py b/src/oci/waas/models/protection_rule_action.py index 88cd8ef1ba..bd9ec4dc0f 100644 --- a/src/oci/waas/models/protection_rule_action.py +++ b/src/oci/waas/models/protection_rule_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/protection_rule_exclusion.py b/src/oci/waas/models/protection_rule_exclusion.py index eeb9e5cb02..4ad5aabe44 100644 --- a/src/oci/waas/models/protection_rule_exclusion.py +++ b/src/oci/waas/models/protection_rule_exclusion.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/protection_settings.py b/src/oci/waas/models/protection_settings.py index 7ab4e426f5..df8fe4e3fc 100644 --- a/src/oci/waas/models/protection_settings.py +++ b/src/oci/waas/models/protection_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/purge_cache.py b/src/oci/waas/models/purge_cache.py index c8cc7a5931..029e168a2b 100644 --- a/src/oci/waas/models/purge_cache.py +++ b/src/oci/waas/models/purge_cache.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/recommendation.py b/src/oci/waas/models/recommendation.py index 32a40ab5d6..eb5daa08e3 100644 --- a/src/oci/waas/models/recommendation.py +++ b/src/oci/waas/models/recommendation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/threat_feed.py b/src/oci/waas/models/threat_feed.py index 63d6490df5..bfc7b1efdc 100644 --- a/src/oci/waas/models/threat_feed.py +++ b/src/oci/waas/models/threat_feed.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/threat_feed_action.py b/src/oci/waas/models/threat_feed_action.py index d1af47a552..b0c3896e75 100644 --- a/src/oci/waas/models/threat_feed_action.py +++ b/src/oci/waas/models/threat_feed_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/update_address_list_details.py b/src/oci/waas/models/update_address_list_details.py index 195e81f076..e1c45dbd60 100644 --- a/src/oci/waas/models/update_address_list_details.py +++ b/src/oci/waas/models/update_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/update_certificate_details.py b/src/oci/waas/models/update_certificate_details.py index 69061820a8..c0268ae555 100644 --- a/src/oci/waas/models/update_certificate_details.py +++ b/src/oci/waas/models/update_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/update_custom_protection_rule_details.py b/src/oci/waas/models/update_custom_protection_rule_details.py index 4eae29d728..bc34fd69c2 100644 --- a/src/oci/waas/models/update_custom_protection_rule_details.py +++ b/src/oci/waas/models/update_custom_protection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/update_http_redirect_details.py b/src/oci/waas/models/update_http_redirect_details.py index 384a609fe5..638b724bba 100644 --- a/src/oci/waas/models/update_http_redirect_details.py +++ b/src/oci/waas/models/update_http_redirect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/update_waas_policy_details.py b/src/oci/waas/models/update_waas_policy_details.py index 5d0b488334..4573bfb17f 100644 --- a/src/oci/waas/models/update_waas_policy_details.py +++ b/src/oci/waas/models/update_waas_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waas_policy.py b/src/oci/waas/models/waas_policy.py index 37729b8399..c866c3c841 100644 --- a/src/oci/waas/models/waas_policy.py +++ b/src/oci/waas/models/waas_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waas_policy_custom_protection_rule_summary.py b/src/oci/waas/models/waas_policy_custom_protection_rule_summary.py index 5cd3b5cbd2..2c8c8960d5 100644 --- a/src/oci/waas/models/waas_policy_custom_protection_rule_summary.py +++ b/src/oci/waas/models/waas_policy_custom_protection_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waas_policy_summary.py b/src/oci/waas/models/waas_policy_summary.py index d92ead2b54..ba72e34e91 100644 --- a/src/oci/waas/models/waas_policy_summary.py +++ b/src/oci/waas/models/waas_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_blocked_request.py b/src/oci/waas/models/waf_blocked_request.py index b82ac70a1c..d725b5acf9 100644 --- a/src/oci/waas/models/waf_blocked_request.py +++ b/src/oci/waas/models/waf_blocked_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_config.py b/src/oci/waas/models/waf_config.py index 867ca5e48c..c6a5892829 100644 --- a/src/oci/waas/models/waf_config.py +++ b/src/oci/waas/models/waf_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_config_details.py b/src/oci/waas/models/waf_config_details.py index a5a1b2feb4..a7f0aa9418 100644 --- a/src/oci/waas/models/waf_config_details.py +++ b/src/oci/waas/models/waf_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_log.py b/src/oci/waas/models/waf_log.py index 1f8b09f559..e6539c35e1 100644 --- a/src/oci/waas/models/waf_log.py +++ b/src/oci/waas/models/waf_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_meter_datum.py b/src/oci/waas/models/waf_meter_datum.py index 4c1c17ee5d..270cad99fd 100644 --- a/src/oci/waas/models/waf_meter_datum.py +++ b/src/oci/waas/models/waf_meter_datum.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_request.py b/src/oci/waas/models/waf_request.py index cad9fcc669..2d0f76d4d9 100644 --- a/src/oci/waas/models/waf_request.py +++ b/src/oci/waas/models/waf_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/waf_traffic_datum.py b/src/oci/waas/models/waf_traffic_datum.py index b499d26e26..3e120a3e01 100644 --- a/src/oci/waas/models/waf_traffic_datum.py +++ b/src/oci/waas/models/waf_traffic_datum.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/whitelist.py b/src/oci/waas/models/whitelist.py index 64841373c4..e4d4b2d1b0 100644 --- a/src/oci/waas/models/whitelist.py +++ b/src/oci/waas/models/whitelist.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/work_request.py b/src/oci/waas/models/work_request.py index 1e2fba663e..6850faa7a8 100644 --- a/src/oci/waas/models/work_request.py +++ b/src/oci/waas/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/work_request_error.py b/src/oci/waas/models/work_request_error.py index b962f86dde..4637ff3a70 100644 --- a/src/oci/waas/models/work_request_error.py +++ b/src/oci/waas/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/work_request_log_entry.py b/src/oci/waas/models/work_request_log_entry.py index 52770f186f..f07b5c3f0a 100644 --- a/src/oci/waas/models/work_request_log_entry.py +++ b/src/oci/waas/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/work_request_resource.py b/src/oci/waas/models/work_request_resource.py index 90707137c2..f58428627d 100644 --- a/src/oci/waas/models/work_request_resource.py +++ b/src/oci/waas/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/models/work_request_summary.py b/src/oci/waas/models/work_request_summary.py index f2cd9f3d51..79719e04a1 100644 --- a/src/oci/waas/models/work_request_summary.py +++ b/src/oci/waas/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/waas/redirect_client.py b/src/oci/waas/redirect_client.py index 5306a9c1de..b16e526178 100644 --- a/src/oci/waas/redirect_client.py +++ b/src/oci/waas/redirect_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/waas/redirect_client_composite_operations.py b/src/oci/waas/redirect_client_composite_operations.py index 392d6a5bcb..c5f48d9efb 100644 --- a/src/oci/waas/redirect_client_composite_operations.py +++ b/src/oci/waas/redirect_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/waas/waas_client.py b/src/oci/waas/waas_client.py index 08b86445c0..33ee950794 100644 --- a/src/oci/waas/waas_client.py +++ b/src/oci/waas/waas_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/waas/waas_client_composite_operations.py b/src/oci/waas/waas_client_composite_operations.py index 4eb3b4c64b..66e6916b57 100644 --- a/src/oci/waas/waas_client_composite_operations.py +++ b/src/oci/waas/waas_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/src/oci/waiter.py b/src/oci/waiter.py index 5967483d1b..07993701cb 100644 --- a/src/oci/waiter.py +++ b/src/oci/waiter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import time diff --git a/src/oci/work_requests/__init__.py b/src/oci/work_requests/__init__.py index be8dffab0f..0a6d1d434b 100644 --- a/src/oci/work_requests/__init__.py +++ b/src/oci/work_requests/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/work_requests/models/__init__.py b/src/oci/work_requests/models/__init__.py index b93cf614b6..257b7c1646 100644 --- a/src/oci/work_requests/models/__init__.py +++ b/src/oci/work_requests/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/work_requests/models/work_request.py b/src/oci/work_requests/models/work_request.py index a1069b2506..5facde4ed3 100644 --- a/src/oci/work_requests/models/work_request.py +++ b/src/oci/work_requests/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/work_requests/models/work_request_error.py b/src/oci/work_requests/models/work_request_error.py index 185c7e5414..1ca3b24b38 100644 --- a/src/oci/work_requests/models/work_request_error.py +++ b/src/oci/work_requests/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/work_requests/models/work_request_log_entry.py b/src/oci/work_requests/models/work_request_log_entry.py index ec17014059..898d651c34 100644 --- a/src/oci/work_requests/models/work_request_log_entry.py +++ b/src/oci/work_requests/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/work_requests/models/work_request_resource.py b/src/oci/work_requests/models/work_request_resource.py index b1865e0865..10188b768a 100644 --- a/src/oci/work_requests/models/work_request_resource.py +++ b/src/oci/work_requests/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/work_requests/models/work_request_summary.py b/src/oci/work_requests/models/work_request_summary.py index 60c65e3de3..8e054a737d 100644 --- a/src/oci/work_requests/models/work_request_summary.py +++ b/src/oci/work_requests/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 diff --git a/src/oci/work_requests/work_request_client.py b/src/oci/work_requests/work_request_client.py index 5d07088de2..8f7a5df0cc 100644 --- a/src/oci/work_requests/work_request_client.py +++ b/src/oci/work_requests/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import absolute_import diff --git a/src/oci/work_requests/work_request_client_composite_operations.py b/src/oci/work_requests/work_request_client_composite_operations.py index da4e889c4d..309c8781cc 100644 --- a/src/oci/work_requests/work_request_client_composite_operations.py +++ b/src/oci/work_requests/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci # noqa: F401 from oci.util import WAIT_RESOURCE_NOT_FOUND # noqa: F401 diff --git a/tests/__init__.py b/tests/__init__.py index 4cb2d9f603..bf3ee4ffaa 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # noqa: W391, W292 \ No newline at end of file diff --git a/tests/conftest.py b/tests/conftest.py index 17ede4297b..21ecf126cd 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import os.path import pytest diff --git a/tests/integ/__init__.py b/tests/integ/__init__.py index 4cb2d9f603..bf3ee4ffaa 100644 --- a/tests/integ/__init__.py +++ b/tests/integ/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # noqa: W391, W292 \ No newline at end of file diff --git a/tests/integ/test_launch_instance_tutorial.py b/tests/integ/test_launch_instance_tutorial.py index b17df693f9..6c38a324b4 100644 --- a/tests/integ/test_launch_instance_tutorial.py +++ b/tests/integ/test_launch_instance_tutorial.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import tests.util import oci diff --git a/tests/integ/util.py b/tests/integ/util.py index f03e3824d2..b183dfd26e 100644 --- a/tests/integ/util.py +++ b/tests/integ/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from __future__ import print_function import functools diff --git a/tests/test_config_container.py b/tests/test_config_container.py index a048561b98..77c6876027 100644 --- a/tests/test_config_container.py +++ b/tests/test_config_container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # A module which holds test configuration information. This is intended to be a shared space where tests # can figure out what kind of recording (via VCR) is being done and also so that they can take actions (e.g. waiting) diff --git a/tests/testing_service_client.py b/tests/testing_service_client.py index 62a64adfdd..6867d58bb4 100644 --- a/tests/testing_service_client.py +++ b/tests/testing_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import base64 import json diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index 4cb2d9f603..bf3ee4ffaa 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. # noqa: W391, W292 \ No newline at end of file diff --git a/tests/unit/test_basic_api_calls.py b/tests/unit/test_basic_api_calls.py index e67c9cd235..90dc8dae41 100644 --- a/tests/unit/test_basic_api_calls.py +++ b/tests/unit/test_basic_api_calls.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import pytest diff --git a/tests/unit/test_model.py b/tests/unit/test_model.py index 648fb0d25e..395dcc8625 100644 --- a/tests/unit/test_model.py +++ b/tests/unit/test_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci import oci.util diff --git a/tests/unit/test_response.py b/tests/unit/test_response.py index 6241449dee..b970fa4947 100644 --- a/tests/unit/test_response.py +++ b/tests/unit/test_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import oci diff --git a/tests/unit/test_waiters.py b/tests/unit/test_waiters.py index cf8f773618..2b6309aff1 100644 --- a/tests/unit/test_waiters.py +++ b/tests/unit/test_waiters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import tests.util import oci diff --git a/tests/util.py b/tests/util.py index bcccbe4c1c..4594675ea1 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. import functools import random